safe-global / safe-decoder-service

Decodes transaction data providing a human readable output
MIT License
2 stars 0 forks source link

Research using a database ORM #2

Closed Uxio0 closed 1 week ago

Uxio0 commented 3 weeks ago

It would be very useful to find something similar to Django Admin. Some alternatives:

SqlModel is the one designed by the authors of FastAPI, so I'm a little biased to use that

Conclusion

Go for SQLModel:

moisses89 commented 1 week ago

I was testing both admins, both looks fine, but I will say continue with sqladmin. Fastapi-admin looks a discontinued project, their last release is 2 years ago. SqlAdmin supports AQLAlchemy too, that is an extensive ORM. SqlModel is based on it. The documentation of SQLAdmin is much better.

I will go with SQLAdmin @Uxio0 what do you think?

Uxio0 commented 1 week ago

Thanks for the analysis. SQLAlchemy is very well known project, well maintained and I have used it in the past. Also SqlModel is from the FastAPI authors. I would go for it too