No project description provided
Project description
Rate Limiting Decorator
This Python module provides a rate_limit_decorator
that allows you to limit the rate at which a function can be called. It supports both synchronous and asynchronous functions, making it versatile for various applications.
Installation
Install the rate-limit-guard package via pip:
pip install rate-limit-guard
Once installed, import rate_limit_decorator into your project and apply it to your functions to enable rate limiting.
Features
- Rate Limiting: Control the maximum number of function calls within a given time interval.
- Support for Asynchronous and Synchronous Functions: The decorator works seamlessly with both types of functions.
- Easy Integration: Simply apply the decorator to your function, and it will handle rate limiting for you.
Usage
Here’s a basic example of how to use the rate_limit_decorator
:
Synchronous
from rate_limit_guard import rate_limit_decorator
@rate_limit_decorator(interval=1, max_calls=5)
def my_function():
print("Function is called")
def main():
try:
for _ in range(10):
my_function()
except RuntimeError:
# this will be raised after the rate limit is reached
pass
Asynchronous
from rate_limit_guard import rate_limit_decorator
import asyncio
@rate_limit_decorator(interval=1, max_calls=5)
async def my_async_function():
print("Async function is called")
await asyncio.sleep(0.5)
async def main():
try:
for _ in range(10):
await my_async_function()
except RuntimeError:
# this will be raised after the rate limit is reached
pass
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_limit_guard-0.1.3.tar.gz
(2.8 kB
view hashes)
Built Distribution
Close
Hashes for rate_limit_guard-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 956365ea14b3307e2ae98c2510242f6df5de61a5eb3a1db4a5b0648d87eb438b |
|
MD5 | a9770a490b1d71bdae3a08007e6e09d7 |
|
BLAKE2b-256 | f90fc960b5b33d20ea7bb0eea26a3cb0dc5877e246e9e6e9fe71ba4373fc9c0c |