├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── SKD ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── core.cpython-311.pyc │ ├── get_official_data.cpython-311.pyc │ ├── getapkdata.cpython-311.pyc │ └── getdata.cpython-311.pyc ├── core.py └── get_official_data.py ├── example.py ├── get_data.py ├── pyproject.toml └── requirements.txt /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/README.md -------------------------------------------------------------------------------- /SKD/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/__init__.py -------------------------------------------------------------------------------- /SKD/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /SKD/__pycache__/core.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/__pycache__/core.cpython-311.pyc -------------------------------------------------------------------------------- /SKD/__pycache__/get_official_data.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/__pycache__/get_official_data.cpython-311.pyc -------------------------------------------------------------------------------- /SKD/__pycache__/getapkdata.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/__pycache__/getapkdata.cpython-311.pyc -------------------------------------------------------------------------------- /SKD/__pycache__/getdata.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/__pycache__/getdata.cpython-311.pyc -------------------------------------------------------------------------------- /SKD/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/core.py -------------------------------------------------------------------------------- /SKD/get_official_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/SKD/get_official_data.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/example.py -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/get_data.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suto-Commune/soul_knight/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome 2 | requests 3 | wget --------------------------------------------------------------------------------