Skip to main content

No project description provided

Project description

Async Rate Limiter (Sliding Window + Lua + Redis)

A Python async rate limiter using Redis and Lua with sliding window algorithm.
Supports retries, exponential backoff, and optional exception handling.


Installation

pip install redis asyncio

Usage

Basic usage with inline function

import asyncio
import redis.asyncio as aioredis
from rate_limit_module import RateLimit  # replace with your module
from rate_limiter.exceptions import RetryLimitReached

redis_client = aioredis.Redis(host='localhost', port=6379, db=0)

rate_limit = RateLimit(
    redis=redis_client,
    limit=5,
    window=10,
    retries=3,
    backoff_ms=200,
    backoff_factor=2.0,
    retry_on_exceptions=(ValueError,),
)

async def my_task():
    print('Task executed.')
    return 42

wrapped = rate_limit(fn=my_task, key='task_key')

try:
    result = await wrapped()
    print(result)
except RetryLimitReached:
    print('All retry attempts exhausted.')

Using as a decorator

rate_limit = RateLimit(
    redis=redis_client,
    limit=3,
    window=5,
    retries=4,
    backoff_ms=100,
    backoff_factor=1.5,
)

@rate_limit(key='decorated_task')
async def my_decorated_task():
    print('Decorated task executed.')
    return 'done'

try:
    await my_decorated_task()
except RetryLimitReached:
    print('Rate limit retry attempts exhausted.')

Exception behavior

After all retries are used without success, the limiter raises RetryLimitReached exception
instead—making it easier to handle failure explicitly in your code.


Features

  • Sliding window rate limiting using Redis + Lua
  • Async-friendly
  • Retries with exponential backoff configurable
  • Optional exception-based retry logic
  • Raises RetryLimitReached when retry attempts are exhausted
  • Supports both inline wrapper and decorator syntax

License

MIT License

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

rate_limiter_decorator-0.0.3.tar.gz (2.7 kB view details)

Uploaded Source

Built Distribution

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

rate_limiter_decorator-0.0.3-py3-none-any.whl (3.7 kB view details)

Uploaded Python 3

File details

Details for the file rate_limiter_decorator-0.0.3.tar.gz.

File metadata

  • Download URL: rate_limiter_decorator-0.0.3.tar.gz
  • Upload date:
  • Size: 2.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.12.9 Linux/6.8.0-55-generic

File hashes

Hashes for rate_limiter_decorator-0.0.3.tar.gz
Algorithm Hash digest
SHA256 344d2d31e17a2567b1f53e76526d34d936262b77a9aa419d8cc643e21087fdee
MD5 f47e6a803c15bf454e42f436c3acc407
BLAKE2b-256 c54c1940c47cb7a4ac3d21f7c2d1ed67929ae6b67eeb9043e24d342b5c9ebd4f

See more details on using hashes here.

File details

Details for the file rate_limiter_decorator-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for rate_limiter_decorator-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7daa01afd35baec5196fc84d45347af372969de4c90f4a62935132657c4714eb
MD5 5596c102bbac13ba2d1012768d600269
BLAKE2b-256 483efce3201725248cf5cb01de2561d3e566327a3dba2e6e4d3539275665f651

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