├── .gitignore ├── LICENSE ├── README.md ├── data └── .placeholder └── rank.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | .vscode/ 4 | 5 | data/*.json 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_rank/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_rank/HEAD/README.md -------------------------------------------------------------------------------- /data/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyujs/clanbattle_rank/HEAD/rank.py --------------------------------------------------------------------------------