Skip to content

Instantly share code, notes, and snippets.

View francisco-ltech's full-sized avatar

Francisco Ruiz A francisco-ltech

View GitHub Profile
@francisco-ltech
francisco-ltech / renderers.py
Created December 18, 2023 09:14 — forked from erny/renderers.py
FastAPI Simple content negotiation
"""Simple content negotiation
Usage:
Example 1:
from renderers import render
@router.post("/myapp/items/")
async def api_login(item: Item, accept: Optional[str] = Header(default='application/jwt')):