├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── __init__.py ├── setup.py ├── tests └── test_tvdb_v4_offical.py └── tvdb_v4_official.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetvdb/tvdb-v4-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetvdb/tvdb-v4-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetvdb/tvdb-v4-python/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetvdb/tvdb-v4-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_tvdb_v4_offical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetvdb/tvdb-v4-python/HEAD/tests/test_tvdb_v4_offical.py -------------------------------------------------------------------------------- /tvdb_v4_official.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetvdb/tvdb-v4-python/HEAD/tvdb_v4_official.py --------------------------------------------------------------------------------