Django ORM does not need a full Django project to work. In a new article, I explore how to use Django in standalone mode as a lightweight data access layer for existing SQLite databases. Using a minimal setup and inspectdb, it’s possible to reverse engineer a schema and immediately start querying real data with QuerySets. This is the first step in a series on standalone ORM workflows and migration patterns. https://lnkd.in/dgbq--5x #Django #Python #ORM #Database
this was a great article 👌👌
Great stuff! Thanks!
Great insight! Using Django ORM in standalone mode is such a powerful way to handle data without the full overhead. Thanks for sharing !
A long time ago there was this Python project called "Camelot", it seems to be gone now. It's purpose was to try to do what Django-admin did, but with a GUI instead of web UI (think Qt, GTK etc). You could probably do a similar thing on top of Django's ORM. I have used Django's ORM before like that.
Really fun idea!
If only I found your post before I had to learn sqlalchemy along alembic for a desktop app 🙃