├── .env.example ├── .gitignore ├── README.md ├── app.py ├── config.ini.example ├── device └── ssup nigga ├── generate_apikey.py ├── modules ├── __init__.py ├── banners.py ├── config.py ├── logging.py └── playready.py ├── requirements.txt └── routes ├── __init__.py └── playready.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | APIKEY.json 3 | logs/ 4 | config.ini 5 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/app.py -------------------------------------------------------------------------------- /config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/config.ini.example -------------------------------------------------------------------------------- /device/ssup nigga: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generate_apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/generate_apikey.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/banners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/modules/banners.py -------------------------------------------------------------------------------- /modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/modules/config.py -------------------------------------------------------------------------------- /modules/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/modules/logging.py -------------------------------------------------------------------------------- /modules/playready.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/modules/playready.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/playready.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/PlayReadyProxy-API/HEAD/routes/playready.py --------------------------------------------------------------------------------