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/*, exact matches)
  • 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

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/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
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

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.2.tar.gz (11.8 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.2-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fastapi_easylimiter-0.4.2.tar.gz
  • Upload date:
  • Size: 11.8 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.2.tar.gz
Algorithm Hash digest
SHA256 57b2083787fbf80d5fbd028997c8a00ed34ff82e972b33434d474c270d752c23
MD5 ba5566e5a150ffbb827c712594dd1b1a
BLAKE2b-256 84b28903547be2f2e621c206d5da84c529670a5979876b43450a987bbd2b5620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastapi_easylimiter-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1c22df785a7f7ceceb18993946fc39a5c92b70e66b5f8ee8605f34400e9b7624
MD5 773f82a7ae033ba29e5ceea5a8966986
BLAKE2b-256 c8d3074bbdf3321fdb81d2bd9bc0db4162b4a01cbd5bb322d1b6ea7b26d8d03a

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