Hacker News new | ask | show | jobs
by formerly_proven 192 days ago
Since Django has gained mature native migrations there is a lot less point to using SQLAlchemy in a Django project, though SQLAlchemy is undeniably the superior and far more capable ORM. That should be unsurprising though - sqlalchemy is more code than the entire django package, and sqlalchemy + alembic is roughly five times as many LOC as django.db, and both are similar "density" code.
1 comments

Makes sense as sqlalchemy’s docs are also 5x as confusing.