Skip to main content

A modern Python rate limiting package

Project description

Install

$ pip install rlim

Basic Usage

Create and use a RateLimiter instance:

@RateLimiter(Rate(2), Limit(50, 40))
def f():
    ...

@RateLimiter(Rate(2), Limit(50, 40))
async def f():
    ...

Apply a RateLimiter instance to a function decorated with placeholder:

@placeholder
def f():
    ...
rl_set(f, RateLimiter(Rate(2), Limit(50, 40)))

@placeholder
async def f():
    ...
rl_set(f, RateLimiter(Rate(2), Limit(50, 40)))

Use an instance as a context manager:

rl = RateLimiter(Rate(2), Limit(50, 40))
def f():
    with rl:
        ...

async def f():
    async with rl:
        ...

Notice that in the above, Rate and Limit are two distinct types. Rate is used to define a constant calling speed - for example, Rate(2) would equate to 1 call every 0.5 seconds. Limit is used to define a maximum number of calls (at any speed) within a certain period of time (sliding window) - for example, Limit(50, 40) would mean the user could make calls at any speed, so long as they don't surpass 50 calls within the last 40 seconds. Together, this means the user can many calls at a max speed of 0.5s/call, and must stay below (or equal to) 50 calls in the past 40 seconds.

Bundles

Bundles allow you to bundle together numerous rate limiters, with methods for applying them to the methods of a given class or class instance. When a bundle is applied to a class instance, the RateLimiter instances (or copies of them, if desired) within the bundle will be applied to each of the class's methods upon class instantiation.

Creating a Bundle:

bdl = Bundle(
    fn1=RateLimiter(...),
    fn2=RateLimiter(...),
    ...
)

Applying a Bundle instance to a class:

@bdl
class Example:
    def fn1(self) -> None:
        return
    def fn2(self) -> None:
        return

Now, when you create an instance of Example, fn1 and fn2 will have their corresponding RateLimiter instances applied to them.

Additional Functions/Methods

RateLimiter.copy(**overrides) -> RateLimiter

Create a copy of the RateLimiter instance with optional overrides (that will be passed into RateLimiter.__init__).

RateLimiter.apply(func: Callable[_P, _R_co]) -> Callable[_P, _R_co]
RateLimiter.apply(func: Callable[_P, Awaitable[_R_co]]) -> Callable[_P, Awaitable[_R_co]]

Manually wrap the given function to use the RateLimiter instance for rate limiting. RateLimiter.__call__ (the function that makes it possible to decorate another function with a RateLimiter instance) is simply an alias of RateLimiter.apply.

Bundle.apply(
    inst: object,
    ignore: bool = MISSING,
    copy: bool = MISSING,
    **overrides
) -> None

Apply the RateLimiter instances in this Bundle to the given class instance.

  • ignore (default False) will make it so RateLimiterError will not be raised if a function in the decorated class does not have a corresponding RateLimiter.
  • copy (default True) will make it so copies of the RateLimiter instances are applied, instead of the same instances.
  • **overrides are keyword overrides that will be passed into RateLimiter.copy (only if copy is True).
Bundle.decorate(
    ignore: bool = MISSING,
    copy: bool = MISSING,
    **overrides
) -> Callable[[Type[T]], Callable[_P, T]]

This function allows the user to have more control over how the RateLimiter instances are applied to the decorated class's methods. It returns a decorator. ignore, copy, and **overrides will be passed into Bundle.apply.

Bundle.bake(
    ignore: bool = MISSING,
    copy: bool = MISSING,
    **overrides
) -> None

Bake arguments for calls to Bundle.apply and Bundle.decorate into the Bundle instance. Any arguments provided to Bundle.apply or Bundle.decorate have precedence over baked arguments.

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

rlim-1.0.0.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

rlim-1.0.0-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: rlim-1.0.0.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.1

File hashes

Hashes for rlim-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d0a6cd3ac11c5f1174847eec127e06d554b14533f84bc8d884ad41bff519a5e4
MD5 6d097a71d3c066b1b018b16b8108823a
BLAKE2b-256 6bda96f9543e60b9da150d1a4efc746f63fbedddef2b6412f58e51a6b3bac1fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rlim-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.1

File hashes

Hashes for rlim-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7244512fc408a043b8413cd25ba81a5b215b7d21db23613c4d5781da908e27ed
MD5 6bbfe7a1ccc62bf3cb3f41d952ec1c8c
BLAKE2b-256 e70a6bf3f52ed6ee2f9f7ba58f2e5c33042ea3230bda418fbb292b91aad3d980

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