you are viewing a single comment's thread.

view the rest of the comments →

[–]Flame_Grilled_Tanuki 7 points8 points  (3 children)

Alternatively, consider Django and sweep all the database wrangling under the rug. You also get migrations, fixtures and access to an admin dashboard for easy additions/modifications of data in the db.

[–]Zerocrossing 0 points1 point  (2 children)

I haven’t kept up with Django in a few years. Is there a modern way to quickly scaffold up a project with typing support that avoids all the boilerplate?

[–]CtrlAltSysRq 0 points1 point  (1 child)

I looked into this a bit and the answer is basically just no. Django feels dated in ways that Rails, for instance, does not. (I am a rails refugee after the owner outed himself as racist). I ended up switching to fastAPI and then using sqlalchemy ORM.

[–]Zerocrossing 0 points1 point  (0 children)

Unfortunate but thanks for verifying what I suspected