Python Wrapper for the Sonarr and Radarr API.
See the full documentation for supported functions.
- requests
# Import SonarrAPI Class
from pyarr import SonarrAPI
# Set Host URL and API-Key
host_url = 'http://your-domain.com'
# You can find your API key in Settings > General.
api_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
# Instantiate SonarrAPI Object
sonarr = SonarrAPI(host_url, api_key)
# Get and print TV Shows
print(sonarr.get_series(123))
# Import RadarrAPI Class
from pyarr import RadarrAPI
# Set Host URL and API-Key
host_url = 'http://your-domain.com'
# You can find your API key in Settings > General.
api_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
# Instantiate RadarrAPI Object
radarr = RadarrAPI(host_url, api_key)
# Get and print TV Shows
print(radarr.get_root_folder())