├── .gitignore ├── LICENSE ├── README.md ├── SimHei.ttf ├── data └── .placeholder ├── report.jpg ├── report.py ├── requirements.txt └── resign.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | .vscode/ 4 | 5 | data/*.json 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_report/HEAD/README.md -------------------------------------------------------------------------------- /SimHei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_report/HEAD/SimHei.ttf -------------------------------------------------------------------------------- /data/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_report/HEAD/report.jpg -------------------------------------------------------------------------------- /report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_report/HEAD/report.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow>=6.2.1 2 | matplotlib>=3.2.0 3 | -------------------------------------------------------------------------------- /resign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_report/HEAD/resign.jpg --------------------------------------------------------------------------------