Hacker News new | ask | show | jobs
by j88439h84 2386 days ago
What's the difference from fastAPI? https://fastapi.tiangolo.com/
1 comments

FastAPI generates specs from code, this generates code from specs
Just a bit of clarification: Pyotr does not generate any code, it uses the spec as configuration to construct the necessary routes at the app initialization, as well as to validate requests and responses.
Yeah didn't mean literary code generation, Python's dynamic nature makes such steps unnecessary.

In a way it feels kinda lispy (in a good way) to me, data is code, small DSL for working more efficiently with specific domain.