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.4.tar.gz (2.9 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.4-py3-none-any.whl (3.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: rate_limiter_decorator-0.0.4.tar.gz
  • Upload date:
  • Size: 2.9 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.4.tar.gz
Algorithm Hash digest
SHA256 d7aeff0c34d22dc5b94151bab35cb785cbe61bd4bbea74485e5fc2991c69ee46
MD5 cc40f0ea2b1862ef2df226cce7cea7bb
BLAKE2b-256 1ea9682a5ccfe25343918e8b68e6b1def30006b1cdd5e7eea5cdd1142d4a515b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rate_limiter_decorator-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9a361761094b573f1c361f0ad86bcabb218b838c8a7449b52cff0c0db2061461
MD5 75bf1c1994cc3a68d2f32a7755223364
BLAKE2b-256 62c018fb687b3709f7e609bdafc7e0184b3a6459239dca6878bfd830a53e98a9

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