🚀 Quick Start

This quick start guide will take you through the easiest way to get up and running.

Installation

This package is distributed on PyPI and can be installed with pip:

To use the package in your Python project, you will need to import the required modules from below:

 1from asyncpow import Overseerr
 2
 3async with OverseerrAPI(
 4    host="OVERSEERR_HOST",
 5    port="5055",
 6    ssl=True,
 7    base_url="overseerr/",
 8    api_key="OVERSEER_KEY",
 9 ) as api:
10    # Inside the context, you can use the API wrapper as needed
11    status = await api.status.get_status()
12    print("Status:", status)