|
|
|
|
|
by canistr
4523 days ago
|
|
Totally agreed. I started out trying to learn and build using Django but it degenerated into exactly what the author claimed about automagic frameworks. I switched to Flask/SqlAlchemy and was able to grasp MVC much quicker. It was more work to do some stuff, but getting a little lower than Django helped me learn what was happening in routing/views/controllers/etc. Using SqlAlchemy meant I could stick within my realm of knowledge with respect to Python without all the fancy stuff within Django. |
|
>getting a little lower than Django helped me learn what was happening in routing/views/controllers/etc.
Definitely. Armin nailed the degree of abstraction necessary to make MVC pretty easy while giving you some indirect insight about what's really going on.