A small utility for FastAPI Router.
Project description
Opinionated FastAPI Extended Route
A small utility for FastAPI/Starlette Route and Request to address the following:
Request.url_fordoesn't allow addingquery parametersat the moment.URLobjects can't have multiple keys like/?key=value&key=anothervalue.
With the following changes:
- Make
Request.url_forto match path parameters and use unmatched params for query parameters. - Provide a custom
Routewhich has a newRequesttype. - Allow
URLobject to add multiple keys inquery params. - ...
Example:
from fastapi import FastAPI
from fastapi.responses import PlainTextResponse
from fastapi_extended_route import Request, Route
def index(request: Request) -> PlainTextResponse:
url = request.url_for("index", key=value)
# url == "http://testserver/?key=value"
return PlainTextResponse(url)
app = FastAPI(
routes=[Route("/", index, name="index")],
)
As you can see the only change is to use Route from the package and
the new Request object will have a customized url_for method which
handles both path parameters and query parameters.
If/when these options are available in Starlette/FastAPI, this is no longer needed.
Project details
Release history Release notifications | RSS feed
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 fastapi_extended_route-0.1.0.tar.gz.
File metadata
- Download URL: fastapi_extended_route-0.1.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e73998e14696f5433f1061834a5ac8c04c9e88a87198746d78206c1f1332380
|
|
| MD5 |
098b9e5aa193caf1045bb932e969d6af
|
|
| BLAKE2b-256 |
ae6cfa29cecf644827a4628f4d8aca907697f28d3d023f997fa1e7c2e81f1466
|
File details
Details for the file fastapi_extended_route-0.1.0-py3-none-any.whl.
File metadata
- Download URL: fastapi_extended_route-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02c8de0265aa045442ef204e11f77797bbddd63bf8b3e867696da971f279a818
|
|
| MD5 |
927b728bef7cab44d0cf4f633fceb75c
|
|
| BLAKE2b-256 |
429002a9f4d2f5ba8e88d73898b943857740cf9d3c3646ab6d18318edc796d70
|