Skip to main content

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.

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.1.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

rate_limit_guard-0.1.1-py3-none-any.whl (3.4 kB view hashes)

Uploaded 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