├── .travis.yml ├── LICENSE ├── README.md ├── api_payload.txt ├── justwatch ├── __init__.py └── justwatchapi.py ├── requirements.txt ├── setup.py └── tests.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/README.md -------------------------------------------------------------------------------- /api_payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/api_payload.txt -------------------------------------------------------------------------------- /justwatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/justwatch/__init__.py -------------------------------------------------------------------------------- /justwatch/justwatchapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/justwatch/justwatchapi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.31.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawoudt/JustWatchAPI/HEAD/tests.py --------------------------------------------------------------------------------