Skip to main content

A fixed window rate limiter based on Redis

Project description

redis-ratelimit

Travis Coveralls PyPI PyPI - Python Version

A fixed window rate limiter based on Redis


Installation

$ pip install redis-ratelimit

Example Usage

The library itself is framework agnostic, but let's assume you want to use it with Flask:

from flask import Flask, jsonify
from redis_ratelimit import ratelimit

app = Flask(__name__)

@app.route('/')
@ratelimit(rate='10/m', key='ccc')
@ratelimit(rate='2/s', key='ccc')
def index():
    return jsonify({'status': 'OK'})

This will allow a total of 10 requests in any given minute, but no faster than 2 requests a second.

Notes

License

MIT

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

redis-ratelimit-1.0.3.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

redis_ratelimit-1.0.3-py2.py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 2 Python 3

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