Skip to main content

Async ASGI rate limiter for FastAPI with Redis.

Project description

fastapi‑easylimiter

GitHub stars GitHub forks GitHub issues GitHub license PyPI


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-After headers
  • 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=[],
    ban_offenses=15,
    ban_length="3m",
    ban_max_length="30m",
    enable_xff=False,
    site_ban=True
    )

Example: /api/auth/login matches /api/auth and /api. If any rule is exceeded → 429 returned. If banned → 403 returned.


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
ban_offenses int No Offenses before ban triggers
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
site_ban bool No Enable site-wide bans or per-endpoint

Tests

Used Ratelimit Tester for testing rate-limit atomicity.

Screenshot

image image image ---

Contributing

Contributions and forks are always welcome! Adapt, improve, or extend for your own needs.

Buy Me a Coffee

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_easylimiter-0.4.5.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastapi_easylimiter-0.4.5-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_easylimiter-0.4.5.tar.gz.

File metadata

  • Download URL: fastapi_easylimiter-0.4.5.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for fastapi_easylimiter-0.4.5.tar.gz
Algorithm Hash digest
SHA256 6f09abb3a7d6b6528266838d5fc7fbc69c901fa256a11bed7d44453980597e0b
MD5 93e7cb6f399c8a8b23b2b5e028ef3139
BLAKE2b-256 fcd9cca2595c2ccda592b8c013b2b1b38c808ea6c5071c7d41167573cf24f68e

See more details on using hashes here.

File details

Details for the file fastapi_easylimiter-0.4.5-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_easylimiter-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 12d4be998411e36095bd5881dfab5a0c41cd27be570e7b2e9228bd605547e2a9
MD5 9f78bab4d8bc8e66adb733b15036c270
BLAKE2b-256 f34367e0a9ae4ad78f851798450317177cf86ff6a6b7f4b5e04ab6e51629c018

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page