2026-06-02 06:49:21 +00:00
2026-05-28 13:25:26 +00:00
2026-05-28 13:24:52 +00:00
2026-05-28 13:31:55 +00:00

Minimal ASGI Middleware

Overview

This repository contains a simple ASGI middleware implementation that can be used with frameworks such as FastAPI or Starlette. It logs the path of every incoming HTTP request.

Installation

No external dependencies are required. Just copy the files into your project.

# If you prefer a virtual environment
python -m venv .venv
source .venv/bin/activate

# Install any dependencies (none for this minimal example)
# pip install -r requirements.txt

Usage

Import the get_middleware helper and wrap your ASGI application:

from fastapi import FastAPI
from middleware import get_middleware

app = FastAPI()
app = get_middleware(app)

@app.get("/")
async def root():
    return {"message": "Hello World"}

Run the app with Uvicorn or any ASGI server:

uvicorn main:app --reload

You should see log messages for each request in the console.

License

MIT

S
Description
No description provided
Readme 32 KiB
Languages
Python 100%