top | item 39351100

(no title)

randjoe | 2 years ago

I'd go Django, even if it's just to prototype the system. If you need to microservice out a django install, just grab all the views and turn each into it's own flask instance with the rest being a collective lib. Coming from a sysadmin perspective, python apps require slightly less resources than a java apps do. Plus, like someone else said in the thread, it'll be easier to onboard developers at any knowledge level so it's great for beginners and advanced users.

discuss

order

manfre|2 years ago

It's even easier to go from plain Django to django-ninja when you want less HTML and more json api. Avoids needing to migrate from Django's ORM to sqlalchemy.

randjoe|2 years ago

Nice. Thanks. I never thought of that.