{"id":29029332,"url":"https://github.com/upstash/ratelimit-py","last_synced_at":"2025-06-26T08:06:49.622Z","repository":{"id":182556181,"uuid":"637065657","full_name":"upstash/ratelimit-py","owner":"upstash","description":"Rate limiting library for serverless runtimes in Python","archived":false,"fork":false,"pushed_at":"2024-06-24T09:13:31.000Z","size":110,"stargazers_count":29,"open_issues_count":1,"forks_count":1,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-06-22T02:50:03.512Z","etag":null,"topics":["rate-limiting","serverless","upstash","upstash-ratelimit","upstash-sdk"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/upstash.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-06T11:58:03.000Z","updated_at":"2025-05-04T18:14:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"9d7a14d1-4492-4e24-b5dd-e4e422feac0f","html_url":"https://github.com/upstash/ratelimit-py","commit_stats":null,"previous_names":["upstash/ratelimit-python","upstash/ratelimit-py"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/upstash/ratelimit-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upstash%2Fratelimit-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upstash%2Fratelimit-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upstash%2Fratelimit-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upstash%2Fratelimit-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/upstash","download_url":"https://codeload.github.com/upstash/ratelimit-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upstash%2Fratelimit-py/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262026969,"owners_count":23246955,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rate-limiting","serverless","upstash","upstash-ratelimit","upstash-sdk"],"created_at":"2025-06-26T08:06:48.755Z","updated_at":"2025-06-26T08:06:49.599Z","avatar_url":"https://github.com/upstash.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Upstash Ratelimit Python SDK\n\n\u003e [!NOTE]\n\u003e **This project is in GA Stage.**\n\u003e The Upstash Professional Support fully covers this project. It receives regular updates, and bug fixes. The Upstash team is committed to maintaining and improving its functionality.\n\n`upstash-ratelimit` is a connectionless rate limiting library for Python, designed to be used in serverless environments such as:\n\n- AWS Lambda\n- Vercel Serverless\n- Google Cloud Functions\n- and other environments where HTTP is preferred over TCP.\n\nThe SDK is currently compatible with Python 3.8 and above.\n\n\u003c!-- toc --\u003e\n- [Upstash Ratelimit Python SDK](#upstash-ratelimit-python-sdk)\n- [Quick Start](#quick-start)\n  - [Install](#install)\n  - [Create database](#create-database)\n  - [Usage](#usage)\n  - [Block until ready](#block-until-ready)\n  - [Using multiple limits](#using-multiple-limits)\n- [Ratelimiting algorithms](#ratelimiting-algorithms)\n  - [Fixed Window](#fixed-window)\n    - [Pros](#pros)\n    - [Cons](#cons)\n    - [Usage](#usage-1)\n  - [Sliding Window](#sliding-window)\n    - [Pros](#pros-1)\n    - [Cons](#cons-1)\n    - [Usage](#usage-2)\n  - [Token Bucket](#token-bucket)\n    - [Pros](#pros-2)\n    - [Cons](#cons-2)\n    - [Usage](#usage-3)\n- [Contributing](#contributing)\n  - [Preparing the environment](#preparing-the-environment)\n  - [Running tests](#running-tests)\n\u003c!-- tocstop --\u003e\n\n# Quick Start\n\n## Install\n\n```bash\npip install upstash-ratelimit\n```\n\n## Create database\nTo be able to use upstash-ratelimit, you need to create a database on [Upstash](https://console.upstash.com/).\n\n## Usage\n\nFor possible Redis client configurations, have a look at the [Redis SDK repository](https://github.com/upstash/redis-python).\n\n\u003e This library supports asyncio as well. To use it, import the asyncio-based\n  variant from the `upstash_ratelimit.asyncio` module.\n\n```python\nfrom upstash_ratelimit import Ratelimit, FixedWindow\nfrom upstash_redis import Redis\n\n# Create a new ratelimiter, that allows 10 requests per 10 seconds\nratelimit = Ratelimit(\n    redis=Redis.from_env(),\n    limiter=FixedWindow(max_requests=10, window=10),\n    # Optional prefix for the keys used in Redis. This is useful\n    # if you want to share a Redis instance with other applications\n    # and want to avoid key collisions. The default prefix is\n    # \"@upstash/ratelimit\"\n    prefix=\"@upstash/ratelimit\",\n)\n\n# Use a constant string to limit all requests with a single ratelimit\n# Or use a user ID, API key or IP address for individual limits.\nidentifier = \"api\"\nresponse = ratelimit.limit(identifier)\n\nif not response.allowed:\n    print(\"Unable to process at this time\")\nelse:\n    do_expensive_calculation()\n    print(\"Here you go!\")\n\n```\n\nThe `limit` method also returns the following metadata:\n\n\n```python\n@dataclasses.dataclass\nclass Response:\n    allowed: bool\n    \"\"\"\n    Whether the request may pass(`True`) or exceeded the limit(`False`)\n    \"\"\"\n\n    limit: int\n    \"\"\"\n    Maximum number of requests allowed within a window.\n    \"\"\"\n\n    remaining: int\n    \"\"\"\n    How many requests the user has left within the current window.\n    \"\"\"\n\n    reset: float\n    \"\"\"\n    Unix timestamp in seconds when the limits are reset\n    \"\"\"\n```\n\n## Block until ready\n\nYou also have the option to try and wait for a request to pass in the given timeout.\n\nIt is very similar to the `limit` method and takes an identifier and returns the same \nresponse. However if the current limit has already been exceeded, it will automatically \nwait until the next window starts and will try again. Setting the timeout parameter (in seconds) will cause the method to block a finite amount of time.\n\n```python\nfrom upstash_ratelimit import Ratelimit, SlidingWindow\nfrom upstash_redis import Redis\n\n# Create a new ratelimiter, that allows 10 requests per 10 seconds\nratelimit = Ratelimit(\n    redis=Redis.from_env(),\n    limiter=SlidingWindow(max_requests=10, window=10),\n)\n\nresponse = ratelimit.block_until_ready(\"id\", timeout=30)\n\nif not response.allowed:\n    print(\"Unable to process, even after 30 seconds\")\nelse:\n    do_expensive_calculation()\n    print(\"Here you go!\")\n```\n\n\n## Using multiple limits\nSometimes you might want to apply different limits to different users. For example you might want to allow 10 requests per 10 seconds for free users, but 60 requests per 10 seconds for paid users.\n\nHere's how you could do that:\n\n```python\nfrom upstash_ratelimit import Ratelimit, SlidingWindow\nfrom upstash_redis import Redis\n\nclass MultiRL:\n    def __init__(self) -\u003e None:\n        redis = Redis.from_env()\n        self.free = Ratelimit(\n            redis=redis,\n            limiter=SlidingWindow(max_requests=10, window=10),\n            prefix=\"ratelimit:free\",\n        )\n\n        self.paid = Ratelimit(\n            redis=redis,\n            limiter=SlidingWindow(max_requests=60, window=10),\n            prefix=\"ratelimit:paid\",\n        )\n\n# Create a new ratelimiter, that allows 10 requests per 10 seconds\nratelimit = MultiRL()\n\nratelimit.free.limit(\"userIP\")\nratelimit.paid.limit(\"userIP\")\n```\n\n# Ratelimiting algorithms\n\n## Fixed Window\n\nThis algorithm divides time into fixed durations/windows. For example each window is 10 seconds long. When a new request comes in, the current time is used to determine the window and a counter is increased. If the counter is larger than the set limit, the request is rejected.\n\n### Pros\n- Very cheap in terms of data size and computation\n- Newer requests are not starved due to a high burst in the past\n\n### Cons\n- Can cause high bursts at the window boundaries to leak through\n- Causes request stampedes if many users are trying to access your server, whenever a new window begins\n\n### Usage\n\n```python\nfrom upstash_ratelimit import Ratelimit, FixedWindow\nfrom upstash_redis import Redis\n\nratelimit = Ratelimit(\n    redis=Redis.from_env(),\n    limiter=FixedWindow(max_requests=10, window=10),\n)\n```\n\n## Sliding Window\n\nBuilds on top of fixed window but instead of a fixed window, we use a rolling window. Take this example: We have a rate limit of 10 requests per 1 minute. We divide time into 1 minute slices, just like in the fixed window algorithm. Window 1 will be from 00:00:00 to 00:01:00 (HH:MM:SS). Let's assume it is currently 00:01:15 and we have received 4 requests in the first window and 5 requests so far in the current window. The approximation to determine if the request should pass works like this:\n\n```python\nlimit = 10\n\n# 4 request from the old window, weighted + requests in current window\nrate = 4 * ((60 - 15) / 60) + 5 = 8\n\nreturn rate \u003c limit # True means we should allow the request\n```\n\n### Pros\n- Solves the issue near boundary from fixed window.\n\n### Cons\n- More expensive in terms of storage and computation\n- It's only an approximation because it assumes a uniform request flow in the previous window\n\n### Usage\n\n```python\nfrom upstash_ratelimit import Ratelimit, SlidingWindow\nfrom upstash_redis import Redis\n\nratelimit = Ratelimit(\n    redis=Redis.from_env(),\n    limiter=SlidingWindow(max_requests=10, window=10),\n)\n```\n\n## Token Bucket\n\nConsider a bucket filled with maximum number of tokens that refills constantly at a rate per interval. Every request will remove one token from the bucket and if there is no token to take, the request is rejected.\n\n### Pros\n- Bursts of requests are smoothed out and you can process them at a constant rate.\n- Allows setting a higher initial burst limit by setting maximum number of tokens higher than the refill rate\n\n### Cons\n- Expensive in terms of computation\n\n### Usage\n\n```python\nfrom upstash_ratelimit import Ratelimit, TokenBucket\nfrom upstash_redis import Redis\n\nratelimit = Ratelimit(\n    redis=Redis.from_env(),\n    limiter=TokenBucket(max_tokens=10, refill_rate=5, interval=10),\n)\n```\n\n# Custom Rates\n\nWhen rate limiting, you may want different requests to consume different amounts of tokens.\nThis could be useful when processing batches of requests where you want to rate limit based\non items in the batch or when you want to rate limit based on the number of tokens.\n\nTo achieve this, you can simply pass `rate` parameter when calling the limit method:\n\n```python\n\nfrom upstash_ratelimit import Ratelimit, FixedWindow\nfrom upstash_redis import Redis\n\nratelimit = Ratelimit(\n    redis=Redis.from_env(),\n    limiter=FixedWindow(max_requests=10, window=10),\n)\n\n# pass rate as 5 to subtract 5 from the number of\n# allowed requests in the window:\nidentifier = \"api\"\nresponse = ratelimit.limit(identifier, rate=5)\n```\n\n# Contributing\n\n## Preparing the environment\nThis project uses [Poetry](https://python-poetry.org) for packaging and dependency management. Make sure you are able to create the poetry shell with relevant dependencies.\n\nYou will also need a database on [Upstash](https://console.upstash.com/).\n\n## Running tests\nTo run all the tests, make sure the poetry virtual environment activated with all \nthe necessary dependencies. Set the `UPSTASH_REDIS_REST_URL` and `UPSTASH_REDIS_REST_TOKEN` environment variables and run:\n\n```bash\npoetry run pytest\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupstash%2Fratelimit-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fupstash%2Fratelimit-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupstash%2Fratelimit-py/lists"}