Skip to main content

Rate limiter for async functions using Redis as a backend

Project description

asyncio-redis-rate-limit

wemake.services Build Status codecov Python Version wemake-python-styleguide

Rate limiter for async functions using Redis as a backend.

Features

  • Small and simple
  • Can be used as a decorator or as a context manager
  • Can be used for both clients and servers
  • Works with asyncio
  • Works with any amount of processes
  • Works with both redis.asyncio.client.Redis and aioredis
  • Free of race-conditions (hopefully!)
  • Supports redis since 7.0
  • Fully typed with annotations and checked with mypy, PEP561 compatible

Installation

pip install asyncio-redis-rate-limit

Extras available:

  • pip install asyncio-redis-rate-limit[redis]
  • pip install asyncio-redis-rate-limit[aioredis] (for python versions <3.11)

Example

As a decorator:

>>> from asyncio_redis_rate_limit import rate_limit, RateSpec
>>> from redis.asyncio import Redis as AsyncRedis  # pip install redis

>>> redis = AsyncRedis.from_url('redis://localhost:6379')

>>> @rate_limit(
...    rate_spec=RateSpec(requests=1200, seconds=60),
...    backend=redis,
... )
... async def request() -> ...:
...     ...   # Do something useful! Call this function as usual.

Or as a context manager:

>>> from asyncio_redis_rate_limit import RateLimiter, RateSpec
>>> from redis.asyncio import Redis as AsyncRedis  # pip install redis

>>> redis = AsyncRedis.from_url('redis://localhost:6379')

>>> async def request() -> ...:
...     async with RateLimiter(
...         unique_key='api-name.com',
...         backend=redis,
...         rate_spec=RateSpec(requests=5, seconds=1),
...     ):
...         ...  # Do the request itself.

License

MIT

Credits

This project was generated with wemake-python-package. Current template version is: 1d63652fbb33ebe2f6d932f511b7f529a4ce2d2a. See what is updated since then.

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

asyncio_redis_rate_limit-1.0.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

asyncio_redis_rate_limit-1.0.0-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file asyncio_redis_rate_limit-1.0.0.tar.gz.

File metadata

  • Download URL: asyncio_redis_rate_limit-1.0.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.10.0 Darwin/18.7.0

File hashes

Hashes for asyncio_redis_rate_limit-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7c79e4e334e7e47b0a4511f5965c9e8d56c823069ca622e7db18f863de920742
MD5 41eda4d14d1ed9cf47f0966dd51d8db8
BLAKE2b-256 7b837041da22675fde46beec16cd0f278dfca3566fae13ad844867fd0e298eb8

See more details on using hashes here.

File details

Details for the file asyncio_redis_rate_limit-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for asyncio_redis_rate_limit-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 489a0f2efe739818f8f124b7ccc8b2efb681179a0ce8ead1aac508aedf6b03f2
MD5 2a5c86c16f9e4ba31db16f1208a0b4e2
BLAKE2b-256 2b464616e373618931876a32e38c2bca8ad154e57d99d3ce6f446fd45aa11267

See more details on using hashes here.

Supported by

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