Closed kawa-kokosowa closed 6 years ago
You can counteract bursting as in maxing out a limit all in one second, for example, simply by having multiple limiters:
@app.route("....") @limiter.limit("100/day") @limiter.limit("10/hour") @limiter.limit("1/minute") def my_route(): ...
http://flask-limiter.readthedocs.io/en/stable/
i think you can do a list? that would be nice...
You can counteract bursting as in maxing out a limit all in one second, for example, simply by having multiple limiters:
http://flask-limiter.readthedocs.io/en/stable/