├── .dockerignore ├── .flake8 ├── .github ├── dependabot.yml ├── label-actions.yml ├── semantic.yml └── workflows │ ├── CI.yml │ ├── ci-docker.yml │ ├── codeql.yml │ ├── issues.yml │ ├── localize.yml │ ├── python-flake8.yml │ ├── release-notifier.yml │ ├── update-changelog.yml │ ├── update-docs.yml │ └── yaml-lint.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── .rstcheck.cfg ├── Contents ├── Code │ ├── __init__.py │ ├── constants.py │ ├── default_prefs.py │ ├── general_helper.py │ ├── lizardbyte_db_helper.py │ ├── migration_helper.py │ ├── plex_api_helper.py │ ├── scheduled_tasks.py │ ├── themerr_db_helper.py │ ├── tmdb_helper.py │ ├── webapp.py │ └── youtube_dl_helper.py ├── DefaultPrefs.json ├── Resources │ ├── attribution.png │ ├── icon-default.png │ └── web │ │ ├── css │ │ └── custom.css │ │ ├── images │ │ ├── favicon.ico │ │ └── icon.png │ │ ├── js │ │ └── translations.js │ │ └── templates │ │ ├── base.html │ │ ├── home.html │ │ ├── home_db_not_cached.html │ │ ├── navbar.html │ │ └── translations.html └── Strings │ ├── aa │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── de.json │ ├── de │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── en-gb.json │ ├── en-us.json │ ├── en.json │ ├── en │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── en_GB │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── en_US │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── es.json │ ├── es │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── fr.json │ ├── fr │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── it.json │ ├── it │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── ja.json │ ├── ja │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── pt.json │ ├── pt │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── ru.json │ ├── ru │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── sv.json │ ├── sv │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── themerr-plex.po │ ├── tr.json │ ├── tr │ └── LC_MESSAGES │ │ └── themerr-plex.po │ ├── zh.json │ └── zh │ └── LC_MESSAGES │ └── themerr-plex.po ├── DOCKER_README.md ├── Dockerfile ├── LICENSE ├── README.rst ├── codecov.yml ├── crowdin.yml ├── docs ├── Makefile ├── make.bat └── source │ ├── about │ ├── changelog.rst │ ├── docker.rst │ ├── installation.rst │ ├── overview.rst │ ├── troubleshooting.rst │ └── usage.rst │ ├── code_docs │ ├── general_helper.rst │ ├── lizardbyte_db_helper.rst │ ├── main.rst │ ├── migration_helper.rst │ ├── plex_api_helper.rst │ ├── scheduled_tasks.rst │ ├── themerr_db_helper.rst │ ├── tmdb_helper.rst │ ├── webapp.rst │ └── youtube_dl_helper.rst │ ├── conf.py │ ├── contributing │ ├── build.rst │ ├── contributing.rst │ ├── database.rst │ └── testing.rst │ ├── global.rst │ ├── index.rst │ └── toc.rst ├── package.json ├── requirements-build.txt ├── requirements-dev.txt ├── requirements.txt ├── scripts ├── _locale.py ├── babel.cfg └── build_plist.py └── tests ├── __init__.py ├── ci ├── __init__.py └── test_docs.py ├── conftest.py ├── data └── video_stub.mp4 ├── functional ├── __init__.py ├── test_plex_plugin.py └── test_webapp.py └── unit ├── __init__.py ├── test_code.py ├── test_general_helper.py ├── test_lizardbyte_db_helper.py ├── test_migration_helper.py ├── test_plex_api_helper.py ├── test_scheduled_tasks.py ├── test_themerr_db_helper.py ├── test_tmdb_helper.py ├── test_webapp.py └── test_youtube_dl_helper.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/label-actions.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/ci-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/ci-docker.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.github/workflows/localize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/localize.yml -------------------------------------------------------------------------------- /.github/workflows/python-flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/python-flake8.yml -------------------------------------------------------------------------------- /.github/workflows/release-notifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/release-notifier.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/update-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/update-docs.yml -------------------------------------------------------------------------------- /.github/workflows/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.github/workflows/yaml-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.rstcheck.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/.rstcheck.cfg -------------------------------------------------------------------------------- /Contents/Code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/__init__.py -------------------------------------------------------------------------------- /Contents/Code/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/constants.py -------------------------------------------------------------------------------- /Contents/Code/default_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/default_prefs.py -------------------------------------------------------------------------------- /Contents/Code/general_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/general_helper.py -------------------------------------------------------------------------------- /Contents/Code/lizardbyte_db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/lizardbyte_db_helper.py -------------------------------------------------------------------------------- /Contents/Code/migration_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/migration_helper.py -------------------------------------------------------------------------------- /Contents/Code/plex_api_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/plex_api_helper.py -------------------------------------------------------------------------------- /Contents/Code/scheduled_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/scheduled_tasks.py -------------------------------------------------------------------------------- /Contents/Code/themerr_db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/themerr_db_helper.py -------------------------------------------------------------------------------- /Contents/Code/tmdb_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/tmdb_helper.py -------------------------------------------------------------------------------- /Contents/Code/webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/webapp.py -------------------------------------------------------------------------------- /Contents/Code/youtube_dl_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Code/youtube_dl_helper.py -------------------------------------------------------------------------------- /Contents/DefaultPrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/DefaultPrefs.json -------------------------------------------------------------------------------- /Contents/Resources/attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/attribution.png -------------------------------------------------------------------------------- /Contents/Resources/icon-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/icon-default.png -------------------------------------------------------------------------------- /Contents/Resources/web/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/css/custom.css -------------------------------------------------------------------------------- /Contents/Resources/web/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/images/favicon.ico -------------------------------------------------------------------------------- /Contents/Resources/web/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/images/icon.png -------------------------------------------------------------------------------- /Contents/Resources/web/js/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/js/translations.js -------------------------------------------------------------------------------- /Contents/Resources/web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/templates/base.html -------------------------------------------------------------------------------- /Contents/Resources/web/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/templates/home.html -------------------------------------------------------------------------------- /Contents/Resources/web/templates/home_db_not_cached.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/templates/home_db_not_cached.html -------------------------------------------------------------------------------- /Contents/Resources/web/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/templates/navbar.html -------------------------------------------------------------------------------- /Contents/Resources/web/templates/translations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Resources/web/templates/translations.html -------------------------------------------------------------------------------- /Contents/Strings/aa/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/aa/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/de.json -------------------------------------------------------------------------------- /Contents/Strings/de/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/de/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/en-gb.json -------------------------------------------------------------------------------- /Contents/Strings/en-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/en-us.json -------------------------------------------------------------------------------- /Contents/Strings/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/en.json -------------------------------------------------------------------------------- /Contents/Strings/en/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/en/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/en_GB/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/en_GB/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/en_US/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/en_US/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/es.json -------------------------------------------------------------------------------- /Contents/Strings/es/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/es/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/fr.json -------------------------------------------------------------------------------- /Contents/Strings/fr/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/fr/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/it.json -------------------------------------------------------------------------------- /Contents/Strings/it/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/it/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/ja.json -------------------------------------------------------------------------------- /Contents/Strings/ja/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/ja/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/pt.json -------------------------------------------------------------------------------- /Contents/Strings/pt/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/pt/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/ru.json -------------------------------------------------------------------------------- /Contents/Strings/ru/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/ru/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/sv.json -------------------------------------------------------------------------------- /Contents/Strings/sv/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/sv/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/tr.json -------------------------------------------------------------------------------- /Contents/Strings/tr/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/tr/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /Contents/Strings/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/zh.json -------------------------------------------------------------------------------- /Contents/Strings/zh/LC_MESSAGES/themerr-plex.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Contents/Strings/zh/LC_MESSAGES/themerr-plex.po -------------------------------------------------------------------------------- /DOCKER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/DOCKER_README.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/codecov.yml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/about/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/about/changelog.rst -------------------------------------------------------------------------------- /docs/source/about/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/about/docker.rst -------------------------------------------------------------------------------- /docs/source/about/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/about/installation.rst -------------------------------------------------------------------------------- /docs/source/about/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/about/overview.rst -------------------------------------------------------------------------------- /docs/source/about/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/about/troubleshooting.rst -------------------------------------------------------------------------------- /docs/source/about/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/about/usage.rst -------------------------------------------------------------------------------- /docs/source/code_docs/general_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/general_helper.rst -------------------------------------------------------------------------------- /docs/source/code_docs/lizardbyte_db_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/lizardbyte_db_helper.rst -------------------------------------------------------------------------------- /docs/source/code_docs/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/main.rst -------------------------------------------------------------------------------- /docs/source/code_docs/migration_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/migration_helper.rst -------------------------------------------------------------------------------- /docs/source/code_docs/plex_api_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/plex_api_helper.rst -------------------------------------------------------------------------------- /docs/source/code_docs/scheduled_tasks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/scheduled_tasks.rst -------------------------------------------------------------------------------- /docs/source/code_docs/themerr_db_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/themerr_db_helper.rst -------------------------------------------------------------------------------- /docs/source/code_docs/tmdb_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/tmdb_helper.rst -------------------------------------------------------------------------------- /docs/source/code_docs/webapp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/webapp.rst -------------------------------------------------------------------------------- /docs/source/code_docs/youtube_dl_helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/code_docs/youtube_dl_helper.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/contributing/build.rst -------------------------------------------------------------------------------- /docs/source/contributing/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/contributing/contributing.rst -------------------------------------------------------------------------------- /docs/source/contributing/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/contributing/database.rst -------------------------------------------------------------------------------- /docs/source/contributing/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/contributing/testing.rst -------------------------------------------------------------------------------- /docs/source/global.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/global.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/docs/source/toc.rst -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/package.json -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- 1 | Babel==2.9.1 2 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/scripts/_locale.py -------------------------------------------------------------------------------- /scripts/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/scripts/babel.cfg -------------------------------------------------------------------------------- /scripts/build_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/scripts/build_plist.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/ci/test_docs.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/video_stub.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/data/video_stub.mp4 -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/test_plex_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/functional/test_plex_plugin.py -------------------------------------------------------------------------------- /tests/functional/test_webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/functional/test_webapp.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_code.py -------------------------------------------------------------------------------- /tests/unit/test_general_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_general_helper.py -------------------------------------------------------------------------------- /tests/unit/test_lizardbyte_db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_lizardbyte_db_helper.py -------------------------------------------------------------------------------- /tests/unit/test_migration_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_migration_helper.py -------------------------------------------------------------------------------- /tests/unit/test_plex_api_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_plex_api_helper.py -------------------------------------------------------------------------------- /tests/unit/test_scheduled_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_scheduled_tasks.py -------------------------------------------------------------------------------- /tests/unit/test_themerr_db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_themerr_db_helper.py -------------------------------------------------------------------------------- /tests/unit/test_tmdb_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_tmdb_helper.py -------------------------------------------------------------------------------- /tests/unit/test_webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_webapp.py -------------------------------------------------------------------------------- /tests/unit/test_youtube_dl_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/Themerr-plex/HEAD/tests/unit/test_youtube_dl_helper.py --------------------------------------------------------------------------------