├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | *.db 3 | .idea 4 | .vscode 5 | dist/ 6 | build/ 7 | bgmi.egg-info 8 | .python-version 9 | .DS_Store 10 | *debug.sh 11 | env 12 | tmp/ 13 | 14 | # coverage 15 | .coverage 16 | htmlcov 17 | .xml 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | BGmi 2 | ==== 3 | 4 | Take a look at [https://github.com/BGmi/BGmi](https://github.com/BGmi/BGmi) 5 | --------------------------------------------------------------------------------