I've created an exact replica of Django's ORM for my projects using FastAPI. #15449
rroblf01
started this conversation in
Show and tell
Replies: 1 comment
-
|
What an ambitious project. I glanced it over, it seems pretty cool. Good job building out a real project with real docs. My simplistic litmus test was verifying you had jsonb for the underlying postgres type for the json field and you do. But yeah... again, very ambitious. That's a lot to take on. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm in love with Django's ORM, and when I work with FastAPI, I miss it, so I've created an exact replica.
It's quite well-tested, and I think it's ready to use.
You might see some typos in the documentation; I wrote it myself, and even Python programmers can make mistakes (though not many).
You can use it with Postgres/SQLite, it's compatible with S3, you can use models with Pydantic to generate schemas that can be used as responses in FastAPI, and it's fully sync/async compatible.
https://rroblf01.github.io/d-orm/
I welcome all suggestions.
Beta Was this translation helpful? Give feedback.
All reactions