├── .gitignore ├── README.md ├── deta.json ├── index.php ├── main.py ├── modules ├── __init__.py ├── code_redeem.py ├── stats.py └── utils.py ├── requirements.txt └── template.mako /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .env 3 | mako_modules 4 | .deta 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/README.md -------------------------------------------------------------------------------- /deta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/deta.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/index.php -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/code_redeem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/modules/code_redeem.py -------------------------------------------------------------------------------- /modules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/modules/stats.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/modules/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | genshin 2 | beautifulsoup4 3 | requests 4 | Mako 5 | deta 6 | fastapi 7 | -------------------------------------------------------------------------------- /template.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HANDZCZ/genshin-stats/HEAD/template.mako --------------------------------------------------------------------------------