pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
450 B
24 lines
450 B
from typing import Any, Union
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel, EmailStr
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class UserIn(BaseModel):
|
|
username: str
|
|
password: str
|
|
email: EmailStr
|
|
full_name: Union[str, None] = None
|
|
|
|
|
|
class UserOut(BaseModel):
|
|
username: str
|
|
email: EmailStr
|
|
full_name: Union[str, None] = None
|
|
|
|
|
|
@app.post("/user/", response_model=UserOut)
|
|
async def create_user(user: UserIn) -> Any:
|
|
return user
|
|
|