├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1.bug_report.yml │ ├── 2.feature_request.yml │ ├── 3.docs_request.yml │ └── config.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── copyright.yml │ ├── release.yml │ ├── tag.yml │ └── version.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.rst ├── VERSION ├── arrapi ├── __init__.py ├── apis │ ├── __init__.py │ ├── base.py │ ├── lidarr.py │ ├── radarr.py │ ├── readarr.py │ └── sonarr.py ├── exceptions.py ├── objs │ ├── __init__.py │ ├── base.py │ ├── reload.py │ └── simple.py └── raws │ ├── __init__.py │ ├── base.py │ ├── lidarr.py │ ├── radarr.py │ ├── readarr.py │ └── sonarr.py ├── docs ├── Makefile ├── conf.py ├── exceptions.rst ├── index.rst ├── intro.rst ├── make.bat ├── objs.rst ├── radarr.rst ├── requirements.txt ├── sonarr.rst └── toc.rst ├── requirements.txt ├── setup.py └── tests ├── test_radarr.py └── test_sonarr.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: meisnate12 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/ISSUE_TEMPLATE/1.bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/ISSUE_TEMPLATE/2.feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3.docs_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/ISSUE_TEMPLATE/3.docs_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/copyright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/workflows/copyright.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.github/workflows/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.github/workflows/version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4.14 2 | -------------------------------------------------------------------------------- /arrapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/__init__.py -------------------------------------------------------------------------------- /arrapi/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arrapi/apis/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/apis/base.py -------------------------------------------------------------------------------- /arrapi/apis/lidarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/apis/lidarr.py -------------------------------------------------------------------------------- /arrapi/apis/radarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/apis/radarr.py -------------------------------------------------------------------------------- /arrapi/apis/readarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/apis/readarr.py -------------------------------------------------------------------------------- /arrapi/apis/sonarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/apis/sonarr.py -------------------------------------------------------------------------------- /arrapi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/exceptions.py -------------------------------------------------------------------------------- /arrapi/objs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arrapi/objs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/objs/base.py -------------------------------------------------------------------------------- /arrapi/objs/reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/objs/reload.py -------------------------------------------------------------------------------- /arrapi/objs/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/objs/simple.py -------------------------------------------------------------------------------- /arrapi/raws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arrapi/raws/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/raws/base.py -------------------------------------------------------------------------------- /arrapi/raws/lidarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/raws/lidarr.py -------------------------------------------------------------------------------- /arrapi/raws/radarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/raws/radarr.py -------------------------------------------------------------------------------- /arrapi/raws/readarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/raws/readarr.py -------------------------------------------------------------------------------- /arrapi/raws/sonarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/arrapi/raws/sonarr.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/exceptions.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/objs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/objs.rst -------------------------------------------------------------------------------- /docs/radarr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/radarr.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme -------------------------------------------------------------------------------- /docs/sonarr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/sonarr.rst -------------------------------------------------------------------------------- /docs/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/docs/toc.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_radarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/tests/test_radarr.py -------------------------------------------------------------------------------- /tests/test_sonarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kometa-Team/ArrAPI/HEAD/tests/test_sonarr.py --------------------------------------------------------------------------------