Async ASGI rate limiter for FastAPI with Redis.
Project description
fastapi‑easylimiter
An ASGI async rate-limiting middleware for FastAPI with Redis, designed to handle auto-generated routes (e.g., FastAPI-Users) without decorators, for simplicity and ease of use.
Features
- Path based rules (
/api/*,/auth/*,/api/users/me, etc) - Fixed, Sliding & Moving window algorithms (Lua)
RateLimit,RateLimit-Policy,Retry-Afterheaders- Bans with back-off per IP with configurable window
- ASGI async middleware for FastAPI/Starlette
- Asyncio Redis support
- Easy to configure
- No decorators needed
- HTML/JSON error responses
- XFF Header Support when enabled
TODO
- In-memory option
Rule Matching
Single Rule
Use these when you want a rule to apply to one specific endpoint only.
"/api/users/me": (20, 60, "sliding")
This applies only to requests where the normalized path is exactly:
/api/users/me
Nothing else matches.
Not /api/users/me/profile, not /api/users/me/123, not /api/users.
Prefix Wildcards
A rule ending with /* applies to all sub-paths under a given prefix, as one shared rate-limit bucket.
"/api/*": (100, 60, "sliding")
This matches:
/api
/api/
/api/users
/api/users/123
/api/anything/here/nested
How Rule applies
Rules are normalized and sorted so that:
- Exact matches come before wildcard matches.
- Longer prefixes take priority over shorter prefixes (so
/api/users/*overrides/api/*) - A request may match multiple rules, if so, ALL matching rules run, and the strictest one determines whether the request is allowed.
Installation
pip install fastapi-easylimiter
Usage
from fastapi import FastAPI
import redis.asyncio as redis
from middleware.rate import RateLimitMiddleware
app = FastAPI()
redis_client = redis.from_url("redis://localhost:6379/0")
app.add_middleware(
RateLimitMiddleware,
redis=redis,
rules={
"/*": (200, 60, "moving"),
"/api/*": (10, 1, "sliding"),
"/api/auth/*": (3, 1, "sliding"),
"/api/users/me": (3, 30, "fixed"),
},
exempt=[],
enable_bans=True,
ban_offenses=8,
ban_window="10m",
ban_length="5m",
ban_max_length="1d",
enable_xff=False,
)
Example:
/api/auth/loginmatches/api/authand/api. If any rule is exceeded →429returned. If banned →403returned.
Redis Key Patterns
| Key Pattern | Example | Type | Used For |
|---|---|---|---|
rl:Fixe:{hash}:{limit}:{window} |
rl:Fixe:a1b2c3d4e5f6a7b8:100:60 |
String | Fixed-window counter |
rl:Slid:{hash}:{limit}:{window} |
rl:Slid:a1b2c3d4e5f6a7b8:60:60 |
ZSET | Sliding window request log |
offense:{hash} |
offense:{a1b2c3d4e5f6a7b8} |
ZSET | Offense tracking for ban escalation |
ban:{hash} |
ban:{a1b2c3d4e5f6a7b8} |
String+TTL | Active ban flag |
Middleware Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
redis |
redis.asyncio.Redis |
Yes | Redis async client |
rules |
Dict[str, Tuple[int, int, str]] |
Yes | Path → (limit, period, strategy) |
exempt |
Optional[List[str]] |
No | Paths that bypass rate limits |
enable_bans |
bool |
No | Enable/disable ban system |
ban_offenses |
int |
No | Offenses before ban triggers |
ban_window |
str |
No | Time window for offense accumulation |
ban_length |
str |
No | Initial ban length |
ban_max_length |
str |
No | Maximum exponential ban ceiling |
enable_xff |
bool |
No | Enable X-Forwarded-For support |
Screenshot
Contributing
Contributions and forks are always welcome! Adapt, improve, or extend for your own needs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastapi_easylimiter-0.4.4.tar.gz.
File metadata
- Download URL: fastapi_easylimiter-0.4.4.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8c27c5e4df96709b45707f44202a61f0f5273f177a02c6f4e33ca36bf5ea733
|
|
| MD5 |
1c1808e58292567e497420537f906eb7
|
|
| BLAKE2b-256 |
12de64adbe44089022889f778b6475bb743982c8b09838e52dd2d1f32a400940
|
File details
Details for the file fastapi_easylimiter-0.4.4-py3-none-any.whl.
File metadata
- Download URL: fastapi_easylimiter-0.4.4-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6419af79a0c8c647204efcea0304da0072a33ffc4f19c91f9dad5007dc062001
|
|
| MD5 |
422d2a8a8ba249eb668d3dbfecc8782e
|
|
| BLAKE2b-256 |
b6ed70cbd438022bb45f8a27a9a2c15cf903430925c497de6172e3006d21c7fc
|