├── .gitattributes ├── .gitignore ├── LICENSE ├── c99api ├── __init__.py ├── api_handler.py └── methods.py ├── example_usage.py ├── install.bat ├── readme.md ├── requirements.txt └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/LICENSE -------------------------------------------------------------------------------- /c99api/__init__.py: -------------------------------------------------------------------------------- 1 | from c99api.api_handler import EndpointClient 2 | -------------------------------------------------------------------------------- /c99api/api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/c99api/api_handler.py -------------------------------------------------------------------------------- /c99api/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/c99api/methods.py -------------------------------------------------------------------------------- /example_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/example_usage.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | pip install -r requirements.txt 4 | 5 | pause 6 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jthom2/c99-api/HEAD/setup.py --------------------------------------------------------------------------------