Handle YAML data in FastAPI
Project description
Overview
Handle YAML requests with FastAPI.
The package will do the best effort to convert the YAML request to JSON.
All files that are uploaded as multipart/form-data will be concatenated and converted to JSON if the header handle-as-yaml is set to true.
Installation
pip install fastapi-yaml
Usage
FastAPI Code:
from fastapi import FastAPI
from fastapi_yaml import YamlRoute
from pydantic import BaseModel
app = FastAPI()
app.router.route_class = YamlRoute
class Person(BaseModel, extra='forbid'):
name: str
age: int
@app.post("/person")
def person(person: Person):
return f"{person.name} is {person.age} years old"
HTTP Request:
curl --request POST \
--url http://localhost:8000/person \
--header "content-type: application/x-yaml" \
--data "name: John Doe\nage: 42"
Tests
poetry run pytest --cov fastapi_yaml tests/
Coverage
---------- coverage: platform darwin, python 3.11.2-final-0 ----------
Name Stmts Miss Cover
----------------------------------------------
fastapi_yaml/__init__.py 1 0 100%
fastapi_yaml/main.py 20 0 100%
----------------------------------------------
TOTAL 21 0 100%
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_yaml-0.2.0.tar.gz.
File metadata
- Download URL: fastapi_yaml-0.2.0.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.2 Darwin/23.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13fd157f0617f8d19245138740d7620569a8051940babba943d69cb5f5a2ac5c
|
|
| MD5 |
707b0ff5ff29d0cece4a57bfaf338409
|
|
| BLAKE2b-256 |
db5bef43a4b87278e03059fb6b3f5bcf8d5db713479e0485defc10c418171551
|
File details
Details for the file fastapi_yaml-0.2.0-py3-none-any.whl.
File metadata
- Download URL: fastapi_yaml-0.2.0-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.2 Darwin/23.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
343505a2055d34ab39b64e058760a8adfe8f1ae2110ae0f08e16988506e5c4ee
|
|
| MD5 |
bd12a56503edf0c3e6da9a04bef6e783
|
|
| BLAKE2b-256 |
55206ee4da0a7c1567fbfd2a2a8cfa6d8f530f18dcdd48e3896380f41917cb72
|