Skip to main content

Simple rate limit decorator

Project description

https://img.shields.io/badge/Made%20with-Python-1f425f.svg https://img.shields.io/pypi/v/ratelimitpy.svg https://img.shields.io/pypi/l/ratelimitpy.svg https://img.shields.io/pypi/pyversions/ratelimitpy.svg

Installation

To install ratelimitpy, simply use pip:

$ pip install ratelimitpy

or install directly from source to include latest changes:

$ pip install git+https://github.com/saporitigianni/ratelimitpy.git

or clone and then install:

$ git clone https://github.com/saporitigianni/ratelimitpy.git
$ cd ratelimitpy
$ python3 setup.py install

Usage

Simply decorate anything that requires a rate limit and specify calls and period

from ratelimitpy import ratelimitpy

# Function to be rate limited
# Will print no more than 10 calls for every 3 second period
@ratelimitpy(calls=10, period=3)
def print_limited(data):
    print(data)

for x in range(30):
    print_limited(x)

Contributing

Please read the CONTRIBUTING document before making changes that you would like adopted in the code.

Code of Conduct

Everyone interacting in the ratelimitpy project’s codebase, issue trackers, chat rooms, and mailing lists is expected to follow the PyPA Code of Conduct.



ETH 0xaD1F09626b9B8e701D5f0F4a237193Df73d3C445
BTC 199zsVqCusefv8yjdYQhUQZmLCyh75dqNV
LTC LUBqs7VxC43ttPsQuM1jaZFmshKTAU1Rs9

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

ratelimitpy-1.0.0.tar.gz (3.6 kB view hashes)

Uploaded Source

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