Skip to main content

A tool to monitoring the number of request of an/multiple api_key

Project description

requests-counter

A tool to monitoring the number of requests from an or multiple api_key.

ci/cd

Use cases

Scenario: A Company that sell a Service that is limited by a max amount of requests.

  • As a Company, I would set a request limit for an api_key.
  • As a Company, I would 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

#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([("my-api-key-test",10)]))

#4. Declare a function to inject to Depends module. It will decrease the max_value for each request. It will raise a 429 HTTPException when max_value is 0.
async def check_key(key:str):
    res = await cl.decrease(key)
    if res == False:
        raise HTTPException(429, "Too Many Requests", headers={"Retry-After": "renew subscription"})
    return key

#5. Inject the check_key function to endpoint
@app.get("/consume/{key}")
async def consume_key(key: dict = Depends(check_key)):
    return {"job": "done"}

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/dosc 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

requests-counter-0.2.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

requests_counter-0.2.1-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

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