Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laurents/slowapi
A rate limiter for Starlette and FastAPI
https://github.com/laurents/slowapi
asgi fastapi python rate-limiter starlette uvicorn
Last synced: 28 days ago
JSON representation
A rate limiter for Starlette and FastAPI
- Host: GitHub
- URL: https://github.com/laurents/slowapi
- Owner: laurentS
- License: mit
- Created: 2020-02-21T12:56:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T07:16:14.000Z (7 months ago)
- Last Synced: 2024-05-01T16:15:09.892Z (6 months ago)
- Topics: asgi, fastapi, python, rate-limiter, starlette, uvicorn
- Language: Python
- Homepage: https://pypi.org/project/slowapi/
- Size: 348 KB
- Stars: 990
- Watchers: 16
- Forks: 67
- Open Issues: 60
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fastapi - SlowApi - Rate limiter (based on [Flask-Limiter](https://flask-limiter.readthedocs.io)). (Third-Party Extensions / Utils)
- awesome-fastapi - SlowApi - Rate limiter (based on [Flask-Limiter](https://flask-limiter.readthedocs.io)). (Third-Party Extensions / Utils)
README
# SlowApi
A rate limiting library for Starlette and FastAPI adapted from [flask-limiter](http://github.com/alisaifee/flask-limiter).
This package is used in various production setups, handling millions of requests per month, and seems to behave as expected.
There might be some API changes when changing the code to be fully `async`, but we will notify users via appropriate `semver` version changes.The documentation is on [read the docs](https://slowapi.readthedocs.io/en/latest/).
# Quick start
## Installation
`slowapi` is available from [pypi](https://pypi.org/project/slowapi/) so you can install it as usual:
```
$ pip install slowapi
```# Features
Most feature are coming from FlaskLimiter and the underlying [limits](https://limits.readthedocs.io/).
Supported now:
- Single and multiple `limit` decorator on endpoint functions to apply limits
- redis, memcached and memory backends to track your limits (memory as a fallback)
- support for sync and async HTTP endpoints
- Support for shared limits across a set of routes# Limitations and known issues
* The `request` argument must be explicitly passed to your endpoint, or `slowapi` won't be able to hook into it. In other words, write:
```python
@limiter.limit("5/minute")
async def myendpoint(request: Request)
pass
```and not:
```python
@limiter.limit("5/minute")
async def myendpoint()
pass
```* `websocket` endpoints are not supported yet.
# Developing and contributing
PRs are more than welcome! Please include tests for your changes :)
The package uses [poetry](https://python-poetry.org) to manage dependencies. To setup your dev env:
```bash
$ poetry install
```To run the tests:
```bash
$ pytest
```# Credits
Credits go to [flask-limiter](https://github.com/alisaifee/flask-limiter) of which SlowApi is a (still partial) adaptation to Starlette and FastAPI.
It's also important to mention that the actual rate limiting work is done by [limits](https://github.com/alisaifee/limits/), `slowapi` is just a wrapper around it.