aioridwell
A Python3, asyncio-based API for interacting with Ridwell waste recycling
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 aioridwelluv
uv add aioridwellpoetry
poetry add aioridwellInstalling 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
Tags
More WWW/HTTP packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
h11h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
httpxHTTPX is a fully featured HTTP client library…
permissive · top 100 on PyPI
httpcoreA minimal low-level HTTP client library that…
permissive · top 100 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
aiorecollectAsyncio-based Python library for querying waste…
permissive · top 15,000 on PyPI
simplisafe-pythonAn async Python interface to the SimpliSafe API…
permissive · top 15,000 on PyPI
aioambientAn async Python library for querying Ambient…
permissive · top 15,000 on PyPI
aiofloProvides an async Python library for…
permissive · top 15,000 on PyPI
pyairnowA thin async Python client for the EPA AirNow…
permissive · top 15,000 on PyPI
aioairqAsynchronous Python library for retrieving…
permissive · top 15,000 on PyPI
aioguardianAn asyncio-focused Python library for…
permissive · top 15,000 on PyPI
aionotionaionotion is an asyncio-friendly Python library…
permissive · top 15,000 on PyPI
aiomcacheAsyncio-based memcached client providing…
permissive · top 15,000 on PyPI
pyairvisualA thin async Python wrapper for the AirVisual…
permissive · top 15,000 on PyPI