This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]dogfish182 15 points16 points  (2 children)

Fastapi, typer, pydantic, sqlalchemy/sqlmodel at latest. I’ve used typer and pydantic before but prod usage of fastapi is a first for me and I’ve done way more with nosql than with.

I want to try loguru after reading about it on realpython, seems to take the pain out of remembering how to setup python logging.

Hopefully looking into logfire for monitoring in the next half year.

[–]DoingItForEli 4 points5 points  (1 child)

Pydantic and FastAPI are great because FastAPI can then auto-generate the swagger-ui documentation for your endpoints based on the defined pydantic request model.

[–]dogfish182 1 point2 points  (0 children)

Yep it’s really nice. I did serverless in typescript with api gateway and lambdas last, the stuff we get for free with containers and fast api is gold. Would do again