
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
.. image:: https://img.shields.io/github/v/release/Kometa-Team/ArrAPI?style=plastic :target: https://github.com/Kometa-Team/ArrAPI/releases :alt: GitHub release (latest by date)
.. image:: https://img.shields.io/travis/com/Kometa-Team/ArrAPI?style=plastic :target: https://app.travis-ci.com/Kometa-Team/ArrAPI :alt: Build Testing
.. image:: https://img.shields.io/github/commits-since/Kometa-Team/ArrAPI/latest?style=plastic :target: https://github.com/Kometa-Team/ArrAPI/commits/master :alt: GitHub commits since latest release (by date) for a branch
.. image:: https://img.shields.io/pypi/v/ArrAPI?style=plastic :target: https://pypi.org/project/arrapi/ :alt: PyPI
.. image:: https://img.shields.io/pypi/dm/arrapi.svg?style=plastic :target: https://pypi.org/project/arrapi/ :alt: Downloads
|
.. image:: https://img.shields.io/readthedocs/arrapi?style=plastic :target: https://arrapi.kometa.wiki :alt: Wiki
.. image:: https://img.shields.io/discord/822460010649878528?color=%2300bc8c&label=Discord&style=plastic :target: https://kometa.wiki/en/latest/discord/ :alt: Discord
.. image:: https://img.shields.io/reddit/subreddit-subscribers/Kometa?color=%2300bc8c&label=r%2FKometa&style=plastic :target: https://www.reddit.com/r/Kometa/ :alt: Reddit
.. image:: https://img.shields.io/github/sponsors/meisnate12?color=%238a2be2&style=plastic :target: https://github.com/sponsors/meisnate12 :alt: GitHub Sponsors
.. image:: https://img.shields.io/badge/-Sponsor_or_Donate-blueviolet?style=plastic :target: https://github.com/sponsors/Kometa-Team :alt: Sponsor or Donate
Unofficial Python bindings for the Sonarr and Radarr APIs. The goal is to make interaction with the API as easy as possible while emulating the Web Client as much as possible
.. code-block:: python
pip install arrapi
Documentation_ can be found at Read the Docs.
.. _Documentation: https://arrapi.kometa.wiki
To connect to a Sonarr application you have to use the |SonarrAPI|_ object and provide it with the baseurl
and apikey
parameters.
The apikey
can be found by going to Settings > General > Security > API Key
.. code-block:: python
from arrapi import SonarrAPI
baseurl = "http://192.168.1.12:8989"
apikey = "0010843563404748808d3fc9c562c05e"
sonarr = SonarrAPI(baseurl, apikey)
Once you have a |SonarrAPI|_ instance you can use it to interact with the application.
To add, edit, or delete a singular Series you must first find the |Series|_ object.
There are three ways to find a |Series|_ object.
You can get a |Series|_ object using |get_series|_ and giving it a Sonarr Series ID
or TVDb ID
.
.. code-block:: python
series = sonarr.get_series(tvdb_id=121361)
You can get a List
of |Series|_ objects using |search_series|_ and giving it a search term.
.. code-block:: python
search = sonarr.search_series("Game of Thrones")
You can get a List
of all |Series|_ objects in Sonarr using |all_series|_.
.. code-block:: python
all_series = sonarr.all_series()
To add a series to Sonarr use |sonarr_add|_.
.. code-block:: python
series.add("/shows/", "HD-1080p", "English")
To edit a series in Sonarr use |sonarr_edit|_.
.. code-block:: python
series.edit(tags=["hd"])
To delete a series in Sonarr use |sonarr_delete|_.
.. code-block:: python
series.delete()
To add multiple Series to Sonarr use |add_multiple_series|_ with the Series' TVDb IDs.
.. code-block:: python
series_ids = [83268, 283468, 385376]
added, exists, invalid = sonarr.add_multiple_series(series_ids, "/shows/", "HD-1080p", "English")
To edit multiple Series in Sonarr use |edit_multiple_series|_ with the Series' TVDb IDs.
.. code-block:: python
series_ids = [83268, 283468, 385376]
edited, not_exist = sonarr.edit_multiple_series(series_ids, monitor=False)
To delete multiple Series in Sonarr use |delete_multiple_series|_ with the Series' TVDb IDs.
.. code-block:: python
series_ids = [83268, 283468, 385376]
not_exist = sonarr.delete_multiple_series(series_ids)
To respect Sonarr's List Exclusions, before running |sonarr_add|_ or |add_multiple_series|_ you can use |sonarr_exclusions|_ like so.
.. code-block:: python
series_ids = [83268, 283468, 385376]
sonarr.respect_list_exclusions_when_adding()
added, exists, invalid = sonarr.add_multiple_series(series_ids, "/shows/", "HD-1080p", "English")
To connect to a Radarr application you have to use the |RadarrAPI|_ object and provide it with the baseurl
and apikey
parameters.
The apikey
can be found by going to Settings > General > Security > API Key
.. code-block:: python
from arrapi import RadarrAPI
baseurl = "http://192.168.1.12:8989"
apikey = "0010843563404748808d3fc9c562c05e"
radarr = RadarrAPI(baseurl, apikey)
Once you have a |RadarrAPI|_ instance you can use it to interact with the application.
To add, edit, or delete a singular Movie you must first find the |Movie|_ object.
There are three ways to find a |Movie|_ object.
You can get a |Movie|_ object using |get_movie|_ and giving it a Radarr Movie ID
or TVDb ID
.
.. code-block:: python
movie = radarr.get_movie(tmdb_id=121361)
You can get a List
of |Movie|_ objects using |search_movies|_ and giving it a search term.
.. code-block:: python
search = radarr.search_movies("The Lord of the Rings: The Return of the King")
You can get a List
of all |Movie|_ objects in Radarr using |all_movies|_.
.. code-block:: python
all_movies = radarr.all_movies()
To add a movie to Radarr use |radarr_add|_.
.. code-block:: python
movie.add("/movies/", "HD-1080p")
To edit a movie in Radarr use |radarr_edit|_.
.. code-block:: python
movie.edit(tags=["hd"])
To delete a movie in Radarr use |radarr_delete|_.
.. code-block:: python
movie.delete()
To add multiple Movies to Radarr use |add_multiple_movies|_ with the Movie's TMDb IDs.
.. code-block:: python
movie_ids = [11, 1891, 1892, 1893, 1894, 1895]
added, exists, invalid = radarr.add_multiple_movies(movie_ids, "/movies/", "HD-1080p")
To edit multiple Movies in Radarr use |edit_multiple_movies|_ with the Movie's TMDb IDs.
.. code-block:: python
movie_ids = [11, 1891, 1892, 1893, 1894, 1895]
edited, not_exist = radarr.edit_multiple_movies(movie_ids, monitor=False)
To delete multiple Movies in Radarr use |delete_multiple_movies|_ with the Movie's TMDb IDs.
.. code-block:: python
movie_ids = [11, 1891, 1892, 1893, 1894, 1895]
not_exist = radarr.delete_multiple_movies(movie_ids)
To respect Radarr's List Exclusions, before running |radarr_add|_ or |add_multiple_movies|_ you can use |radarr_exclusions|_ like so.
.. code-block:: python
movie_ids = [11, 1891, 1892, 1893, 1894, 1895]
radarr.respect_list_exclusions_when_adding()
added, exists, invalid = radarr.add_multiple_movies(movie_ids, "/movies/", "HD-1080p")
Example 1: List all series in Sonarr.
.. code-block:: python
series = sonarr.all_series()
for show in series:
print(show.title)
Example 2: Search for a movie and add it to Radarr by name.
.. code-block:: python
search = radarr.search_movies("The Lord of the Rings: The Return of the King")
if search:
search[0].add("/movies/", "HD-1080p")
Example 3: Make every series in Sonarr Unmonitored.
.. code-block:: python
edited, not_exist = sonarr.edit_multiple_series(sonarr.all_series(), monitor=False)
Example 4: Get all Quality Profiles Available.
.. code-block:: python
for qp in sonarr.quality_profile():
print(qp.name)
Radarr v3 API Docs <https://radarr.video/docs/api>
_Sonarr v3 API Docs <https://sonarr.tv/docs/api/>
_.. |SonarrAPI| replace:: SonarrAPI
.. _SonarrAPI: https://arrapi.kometa.wiki/en/latest/sonarr.html#module-arrapi.sonarr
.. |Series| replace:: Series
.. _Series: https://arrapi.kometa.wiki/en/latest/objs.html#series
.. |get_series| replace:: get_series
.. _get_series: https://arrapi.kometa.wiki/en/latest/sonarr.html#arrapi.sonarr.SonarrAPI.get_series
.. |search_series| replace:: search_series
.. _search_series: https://arrapi.kometa.wiki/en/latest/sonarr.html#arrapi.sonarr.SonarrAPI.search_series
.. |all_series| replace:: all_series
.. _all_series: https://arrapi.kometa.wiki/en/latest/sonarr.html#arrapi.sonarr.SonarrAPI.all_series
.. |sonarr_add| replace:: add
.. _sonarr_add: https://arrapi.kometa.wiki/en/latest/objs.html#arrapi.objs.Series.add
.. |sonarr_edit| replace:: edit
.. _sonarr_edit: https://arrapi.kometa.wiki/en/latest/objs.html#arrapi.objs.Series.edit
.. |sonarr_delete| replace:: delete
.. _sonarr_delete: https://arrapi.kometa.wiki/en/latest/objs.html#arrapi.objs.Series.delete
.. |add_multiple_series| replace:: add_multiple_series
.. _add_multiple_series: https://arrapi.kometa.wiki/en/latest/sonarr.html#arrapi.sonarr.SonarrAPI.add_multiple_series
.. |edit_multiple_series| replace:: edit_multiple_series
.. _edit_multiple_series: https://arrapi.kometa.wiki/en/latest/sonarr.html#arrapi.sonarr.SonarrAPI.edit_multiple_series
.. |delete_multiple_series| replace:: delete_multiple_series
.. _delete_multiple_series: https://arrapi.kometa.wiki/en/latest/sonarr.html#arrapi.sonarr.SonarrAPI.delete_multiple_series
.. |sonarr_exclusions| replace:: sonarr_exclusions
.. _sonarr_exclusions: https://arrapi.kometa.wiki/en/latest/sonarr.html#arrapi.sonarr.SonarrAPI.respect_list_exclusions_when_adding
.. |RadarrAPI| replace:: RadarrAPI
.. _RadarrAPI: https://arrapi.kometa.wiki/en/latest/radarr.html#module-arrapi.radarr
.. |Movie| replace:: Movie
.. _Movie: https://arrapi.kometa.wiki/en/latest/objs.html#movie
.. |get_movie| replace:: get_movie
.. _get_movie: https://arrapi.kometa.wiki/en/latest/radarr.html#arrapi.radarr.RadarrAPI.get_movie
.. |search_movies| replace:: search_movies
.. _search_movies: https://arrapi.kometa.wiki/en/latest/radarr.html#arrapi.radarr.RadarrAPI.search_movies
.. |all_movies| replace:: all_movies
.. _all_movies: https://arrapi.kometa.wiki/en/latest/radarr.html#arrapi.radarr.RadarrAPI.all_movies
.. |radarr_add| replace:: add
.. _radarr_add: https://arrapi.kometa.wiki/en/latest/objs.html#arrapi.objs.Movie.add
.. |radarr_edit| replace:: edit
.. _radarr_edit: https://arrapi.kometa.wiki/en/latest/objs.html#arrapi.objs.Movie.edit
.. |radarr_delete| replace:: delete
.. _radarr_delete: https://arrapi.kometa.wiki/en/latest/objs.html#arrapi.objs.Movie.delete
.. |add_multiple_movies| replace:: add_multiple_movies
.. _add_multiple_movies: https://arrapi.kometa.wiki/en/latest/radarr.html#arrapi.radarr.RadarrAPI.add_multiple_movies
.. |edit_multiple_movies| replace:: edit_multiple_movies
.. _edit_multiple_movies: https://arrapi.kometa.wiki/en/latest/radarr.html#arrapi.radarr.RadarrAPI.edit_multiple_movies
.. |delete_multiple_movies| replace:: delete_multiple_movies
.. _delete_multiple_movies: https://arrapi.kometa.wiki/en/latest/radarr.html#arrapi.radarr.RadarrAPI.delete_multiple_movies
.. |radarr_exclusions| replace:: radarr_exclusions
.. _radarr_exclusions: https://arrapi.kometa.wiki/en/latest/radarr.html#arrapi.radarr.RadarrAPI.respect_list_exclusions_when_adding
FAQs
Python wrapper for Radarr and Sonarr APIs:
We found that arrapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.