├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ ├── CI.yml │ ├── create_comment.yml │ └── issue_close_question.yml ├── LICENSE ├── README.md ├── assets ├── logo.ico └── my.txt ├── images ├── 0.png ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── requirements.txt └── src ├── ObjectListParser.py ├── QQtoExcel.py ├── init.py ├── main.py └── releases.py /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/create_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/.github/workflows/create_comment.yml -------------------------------------------------------------------------------- /.github/workflows/issue_close_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/.github/workflows/issue_close_question.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/assets/logo.ico -------------------------------------------------------------------------------- /assets/my.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/assets/my.txt -------------------------------------------------------------------------------- /images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/images/0.png -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/images/4.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | regex>=2023.8.8 2 | tqdm>=4.66.1 3 | pandas>=2.0.3 4 | -------------------------------------------------------------------------------- /src/ObjectListParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/src/ObjectListParser.py -------------------------------------------------------------------------------- /src/QQtoExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/src/QQtoExcel.py -------------------------------------------------------------------------------- /src/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/src/init.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/src/main.py -------------------------------------------------------------------------------- /src/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoguai/QQtoExcel/HEAD/src/releases.py --------------------------------------------------------------------------------