skillfed

throttled-py

đź”§ High-performance Python rate limiting library with multiple algorithms (Fixed Window, Sliding Window, Token Bucket, Leaky Bucket & GCRA) and storage backends (Redis, In-Memory).

throttled-py v3.4.1 188.7K downloads/30d#9,940 on PyPI643
Permissive license MIT Active released

What it is and what it does

throttled-py is a rate-limiting library that enforces quotas on request or operation rates using pluggable algorithms and storage backends. It provides five rate-limiting strategies—Fixed Window, Sliding Window, Token Bucket, Leaky Bucket, and GCRA—allowing you to choose the right algorithm for your use case. The library supports both synchronous and asynchronous code, and can store state in Redis (for distributed systems) or in-memory (for single-process applications).

You can apply rate limits via direct function calls, decorators, or context managers. The library returns detailed state information (remaining quota, reset time, retry-after) and can operate in immediate-response mode (reject when over quota) or wait-retry mode (pause until quota is available). Optional integrations include FastAPI middleware with IETF-compliant RateLimit headers, OpenTelemetry hooks, and MCP SDK support for AI model interactions.

Use it for:

  • Protect API endpoints from abuse by enforcing per-user or per-IP request quotas with automatic 429 responses.
  • Implement fair-share resource allocation in multi-tenant systems using Redis as a distributed quota store.
  • Rate-limit background job workers or batch processes to prevent resource exhaustion.
  • Add request throttling to async web scraping or API client code to respect rate limits.
  • Enforce token budgets in AI model interactions via MCP SDK integration.
  • Decorate database query functions to prevent query storms during traffic spikes.

Worth the install?

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

Implements rate limiting with multiple algorithms (Fixed Window, Sliding Window, Token Bucket, Leaky Bucket, GCRA) and storage backends (Redis, In-Memory), supporting both sync and async code.

Yes. The library is actively maintained, has no security vulnerabilities, installs with zero runtime dependencies by default, and supports modern Python versions (3.10+). It offers a mature feature set with multiple algorithms and backends, making it suitable for both simple single-process rate limiting and complex distributed systems. The MIT license imposes no restrictions. Install it if you need flexible, performant rate limiting; skip it only if your use case is trivial or you require Python 3.8/3.9 support.

Install

throttled-py on PyPI

pip

pip install throttled-py

uv

uv add throttled-py

poetry

poetry add throttled-py

Installing throttled-py

Before you install

Low friction: pure Python wheel with no runtime dependencies by default. Active maintenance with recent release (13 days ago) and 643 repository stars. Requires Python 3.10 or later.

License in practice

MIT license (permissive) allows unrestricted use, modification, and distribution with minimal obligations—suitable for commercial and proprietary projects.

Quickstart

pip install throttled-py

from throttled import Throttled

throttle = Throttled(quota="1000/s burst 1000")
result = throttle.limit("key", cost=1)
print(result.limited)

Requires Python 3.10 or later; v3.x does not support Python 3.8 or 3.9.

Verify before relying

  • Whether Redis backend requires additional system setup or network configuration beyond the optional dependency.
  • Performance characteristics of the Leaky Bucket and GCRA algorithms relative to Token Bucket in real-world workloads.
  • Thread-safety guarantees for the In-Memory backend under high concurrency.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 13 days since the last release
Last repo commit
First released
Downloads 188,692/month — #9,940 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: throttled_py-3.4.1-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: MacOSOperating System :: OS IndependentOperating System :: POSIX :: LinuxProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: Implementation :: PyPyTopic :: Software Development :: Libraries :: Python Modules

Tags

rate limiting librarytoken bucket algorithmredis rate limiterasync rate limitingrequest throttlingquota managementsliding window rate limitleaky bucket algorithm
rate-limitingquota-managementasync-support

More Python Modules packages