▲ | Lucasoato 4 days ago | |||||||
Actually Pydantic could be extremely useful if used in conjunction with SQLAlchemy, check out the SQLModel library, from the very same creators of Pydantic. | ||||||||
▲ | cout 4 days ago | parent | next [-] | |||||||
Having used sqlmodel recently for a project, I was underimpressed. Documentation was sparse, I found myself going to the source code to figure out how to solve problems I ran into, and I ended up dropping into sqlalchemy a lot more than I wanted. I think the idea is sound, but the code is hard to follow, and there are a lot of missing common cases. | ||||||||
| ||||||||
▲ | jessekv 4 days ago | parent | prev | next [-] | |||||||
Sebastián Ramírez created FastAPI and SQLModel, and was an early adopter of Pydantic. Samuel Colvin created Pydantic. | ||||||||
▲ | JackSlateur 4 days ago | parent | prev [-] | |||||||
sqlmodel is a wrapper around sqlalchemy, made by the guy who made fastapi While it uses pydantic, sqlmodel has not been written by those guys |