├── .dockerignore ├── .github └── workflows │ └── docker.yml ├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── app_backup.py ├── app_restore_backup.py ├── config.cfg ├── images ├── ACdb_Official_Collections.png ├── ACdb_collection_settings.png ├── ACdb_missing_items.png ├── ACdb_plugin_install.png ├── ACdb_seasonal_collections.png └── banner.jpeg ├── requirements.txt └── src ├── date_parser.py ├── db.py ├── emby.py ├── item_sorting.py ├── mdblist.py ├── refresher.py └── utils.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/app.py -------------------------------------------------------------------------------- /app_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/app_backup.py -------------------------------------------------------------------------------- /app_restore_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/app_restore_backup.py -------------------------------------------------------------------------------- /config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/config.cfg -------------------------------------------------------------------------------- /images/ACdb_Official_Collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/images/ACdb_Official_Collections.png -------------------------------------------------------------------------------- /images/ACdb_collection_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/images/ACdb_collection_settings.png -------------------------------------------------------------------------------- /images/ACdb_missing_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/images/ACdb_missing_items.png -------------------------------------------------------------------------------- /images/ACdb_plugin_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/images/ACdb_plugin_install.png -------------------------------------------------------------------------------- /images/ACdb_seasonal_collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/images/ACdb_seasonal_collections.png -------------------------------------------------------------------------------- /images/banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/images/banner.jpeg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /src/date_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/src/date_parser.py -------------------------------------------------------------------------------- /src/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/src/db.py -------------------------------------------------------------------------------- /src/emby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/src/emby.py -------------------------------------------------------------------------------- /src/item_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/src/item_sorting.py -------------------------------------------------------------------------------- /src/mdblist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/src/mdblist.py -------------------------------------------------------------------------------- /src/refresher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/src/refresher.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonjonsson/Emby-MDBList-Collection-Creator/HEAD/src/utils.py --------------------------------------------------------------------------------