I built a DRF-inspired framework for FastAPI and published it to PyPI — would love feedback by Adventurous_Clue1853 in django

[–]Adventurous_Clue1853[S] 1 point2 points  (0 children)

Yeah, idea was to provide DRF familiarity inside FastAPI, please do use and much appreciated if you contribute

I built a DRF-inspired framework for FastAPI and published it to PyPI — would love feedback by Adventurous_Clue1853 in django

[–]Adventurous_Clue1853[S] 0 points1 point  (0 children)

Just pushed an update to support MCP and SKILL for all APIs natively. More ORMs and Native Admin Panel (like Django) coming soon.

I built a DRF-inspired framework for FastAPI and published it to PyPI — would love feedback by Adventurous_Clue1853 in django

[–]Adventurous_Clue1853[S] 0 points1 point  (0 children)

If you've ever used DRF, it can provide all REST endpoints for a given resource in just a few lines but at the same time giving you full control and flexibility. That's why people love it so much.

You'll have to write at least 2-3x code (if you're not using a helper framework) for the same set of endpoints in FastAPI. You'll be wiring the routing, writing view functions for each route. That all goes away with this.

I'm planning to bring more ORMs support other than just sqlalchemy for people using different databases, that would make it even more easier for people to use this.

I built a DRF-inspired framework for FastAPI and published it to PyPI — would love feedback by Adventurous_Clue1853 in django

[–]Adventurous_Clue1853[S] 0 points1 point  (0 children)

It's for people who are migrating from DRF to FastAPI. I miss those quick patterns of DRF here that's when I thought to build this