A tool to monitor the number of HTTP requests through an _apiKey_ in the HTTP Header.
Project description
requests-counter
A tool to monitor the number of HTTP requests.
It uses a key as extra parameter in the HTTP header, and optionally can filter the HTTP request per source (like origin).
Use cases
Scenario: A Company that sell a Service that is limited by a max amount of requests and/or filtered by source HTTP request parameter.
- As a Company, I want to set a request limit for an _apiKey_and/or by source.
- As a Company, I want to update/destroy/inspect the status of subscription via api.
Installation
Requirement
Install redis or run a docker container as below
$> docker run --name test-redis -p6379:6379 -ti redis redis-server --appendonly yes
Package Installation
$> pip install requests-counter
Usage
As request counter for fastapi
from fastapi import Depends, FastAPI, HTTPException, Header
# 1. Import the library
from requests_counter.reqcounter import ReqCounter
import asyncio
app = FastAPI()
# 2. Create an ReqCounter object with the url to redis instance as parameter
cl = ReqCounter("redis://localhost")
# 3. populate the Object with a list of tuple (key, max_value)
asyncio.create_task(cl.setup_api_key([("my-api-key-test", 100)]))
asyncio.create_task(cl.setup_source(["source1", "source2"]))
# 4. Declare a function to be injected into Depends module.
# It will decrease the max_value for each request. It will raise a 429 HTTPException when max_value is 0.
# It will raise a 403 HTTPException when source is not in the list.
async def check_key(apiKey: str = Header(None), source: str = Header(None)):
res = await cl.decrease(apiKey)
if res is False:
raise HTTPException(400, "User Requests Limit Exceeded")
if await cl.check_source(source) is False:
raise HTTPException(403, "Forbidden")
return apiKey
# 5. Inject the check_key function to endpoint
@app.get("/consume")
async def consume_key(apiKey=Depends(check_key)):
return {"job": "done", "apiKey": apiKey}
To run this example
$> uvicorn requests_counter.example:app --reload --port 8080
As endpoint
Command below run the server to interact with your redis instance for
- Destroy a key
- Update the value (i.e. renewal)
- Get the status of all keys
$> uvicorn requests_counter.api:app --reload --port 8080
Run http://locahost:8080/docs for documentation.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file requests-counter-2.0.1.tar.gz.
File metadata
- Download URL: requests-counter-2.0.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.3 Linux/4.15.0-130-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6dddb88660c774bb42dc115a52bc8adea38e4aaede32b6abc6630d19eab1a26
|
|
| MD5 |
390759d74903085c95b12106d4b43f88
|
|
| BLAKE2b-256 |
6fc76d26a850bb273162da334438936fba65394dc813a78ff3cc4b2cb1060837
|
File details
Details for the file requests_counter-2.0.1-py3-none-any.whl.
File metadata
- Download URL: requests_counter-2.0.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.3 Linux/4.15.0-130-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6161fe25f8b5977de6e2b49a0ccdd8ffddb5e0619be9da6de5fce4aa5e5400c
|
|
| MD5 |
105d1b3cd9bd877cc4e8f5090d29f21d
|
|
| BLAKE2b-256 |
3c13b352c19f4a22e94ff788b14f75e265a441007afb7bd2a3ae9663cac3c356
|