skillfed

aioridwell

A Python3, asyncio-based API for interacting with Ridwell waste recycling

aioridwell v2025.9.0 73.6K downloads/30d#14,972 on PyPI1
Permissive license MIT Active released

What it is and what it does

aioridwell is an asyncio-based client library for the Ridwell waste-recycling service API. It lets you authenticate with your Ridwell account, fetch associated accounts and their upcoming pickup events, and manage opt-in/opt-out preferences for individual pickups. The library wraps Ridwell's HTTP API using aiohttp for non-blocking I/O, making it suitable for integration into async applications like home-automation systems or monitoring dashboards.

The package exposes a simple async interface: create a client with credentials, retrieve accounts, then query pickup events from each account. Each pickup event contains structured data (pickup date, items, categories, priorities) and supports operations like opting in or out and estimating add-on costs. It depends on PyJWT, aiohttp, certifi, titlecase, and yarl—all standard async HTTP and utility libraries.

Use it for:

  • Integrate Ridwell pickup schedules into a home-automation system to send reminders or trigger actions on pickup days.
  • Build a monitoring dashboard that displays upcoming recycling pickups across multiple Ridwell accounts.
  • Automate opt-in/opt-out decisions for pickup events based on custom logic or user preferences.
  • Fetch and display estimated add-on costs for upcoming pickups in a personal finance or waste-tracking app.
  • Query account details and subscription status programmatically for billing or account-management workflows.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

An asyncio-based Python library for querying the Ridwell waste-recycling API to retrieve account information, upcoming pickup events, and manage pickup preferences.

Yes. The package is actively maintained, has low install friction, carries a permissive MIT license, and fills a clear niche for developers who need programmatic access to Ridwell's API in async Python applications. No known vulnerabilities. Install it if you need to integrate Ridwell scheduling into an async workflow.

Install

aioridwell on PyPI

pip

pip install aioridwell

uv

uv add aioridwell

poetry

poetry add aioridwell

Installing aioridwell

Before you install

Low install friction with a pure-Python wheel. Actively maintained as of 2026-08-09 with 333 days since the latest release; supported on Python 3.10 through 3.14.

License in practice

MIT license permits free use, modification, and distribution with minimal restrictions, making it suitable for both personal and commercial projects.

Quickstart

pip install aioridwell

import asyncio
from aioridwell import async_get_client

async def main():
    client = await async_get_client("email", "password")
    accounts = await client.async_get_accounts()
    for account in accounts.values():
        events = await account.async_get_pickup_events()

asyncio.run(main())

Requires Python 3.10 or later; credentials for a Ridwell account are needed to authenticate with the API.

Verify before relying

  • Whether the library handles token refresh or session expiration automatically.
  • Rate limiting behavior and any throttling imposed by the Ridwell API.
  • Error handling and retry logic for network failures or API outages.

Package facts

License MIT (permissive)
Python support supports the current Python release (<4.0,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 5 — PyJWT, aiohttp, certifi, titlecase, yarl
Maintenance actively maintained — 333 days since the last release
Last repo commit
First released
Downloads 73,583/month — #14,972 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: aioridwell-2025.9.0-py3-none-any.whl

License :: OSI Approved :: MIT LicenseProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPy

Tags

ridwell api clientasyncio recycling pickupridwell account integrationwaste pickup schedulingasync ridwell eventsridwell python libraryrecycling service api
async-http-clientwaste-recycling

More WWW/HTTP packages