csingley / python-sonarr

Asynchronous Python client for the Sonarr API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python: Sonarr Client

Asynchronous Python client for Sonarr API.

About

This package allows you to monitor a Sonarr instance.

Installation

pip install sonarr

Usage

import asyncio

from sonarr import Sonarr


async def main():
    """Show example of connecting to your Sonarr instance."""
    async with Sonarr("192.168.1.100", "API_TOKEN") as sonarr:
        info = sonarr.update()
        print(info)


if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())

About

Asynchronous Python client for the Sonarr API

License:MIT License


Languages

Language:Python 100.0%