this post was submitted on 23 Oct 2023
17 points (87.0% liked)
Programming
17506 readers
32 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Django is great, I've used it in a number of projects, both paid gigs and side projects. Where it really shines is giving you a nice admin to be able to do CRUD (Create, read, update and delete) operations on the database with minimal work on your end. If you don't need this, then something like flask is lighter weight and might be a better option.
However, while python has type hints now, it is still a loosely typed language. If you really want to the benefits that come with a strongly typed language, I'd suggest maybe looking at Rust, Go or even TypeScript.