9
OrestH
7y

"Why do we need to use Django, it is so complicated, let's use Flask instead"

Comments
  • 2
    If the argument is "complicated" thats pretty silly, but i think flask can be a bit faster and less things to debug. Definitely wanna hear peoples opinion/experience about this!
  • 0
    @highlord Flask is completely unstructured, I hate that, and Django does a lot of stuff itself
  • 1
    @OrestH i think the flask documentation makes structuring more difficult than it needs to be.
    I tend to do one file for models, one for views, one for configuration, and probably a few more than i can remember. By using modules it can be pretty clean.

    But i can see that theres several situations where django is nicer, so im not trying to argue. (Built in functions compared to flask where many things are extra modules forexample)
  • 0
    @AlexDeLarge IMO, Flask is optimal for really smal projects, where you can make a structure yourself, where models.py is a small file and where all you need is to run several requests, but if you want a powerfull web app, it just can't be run on Flask, as you will need to do a lot of work to make a good structure
  • 0
    I Like flask. I'm sure I'd like Django too but I've just never needed to use it.
Add Comment