├── .github └── workflows │ └── python-black-check.yaml ├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── setup.py └── src └── accapi ├── __init__.py ├── client.py ├── enums.py └── structs.py /.github/workflows/python-black-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/.github/workflows/python-black-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/setup.py -------------------------------------------------------------------------------- /src/accapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/src/accapi/__init__.py -------------------------------------------------------------------------------- /src/accapi/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/src/accapi/client.py -------------------------------------------------------------------------------- /src/accapi/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/src/accapi/enums.py -------------------------------------------------------------------------------- /src/accapi/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmperorCookie/accapi/HEAD/src/accapi/structs.py --------------------------------------------------------------------------------