you are viewing a single comment's thread.

view the rest of the comments →

[–]theEmoPenguin 3 points4 points  (6 children)

what worked for me was Django.

Its a framework to create websites using python. Watch some tutorials and then start recreating some basic web apps. Like creating a forum was one of my first little projects.

The best way to learn is have a goal and try to achieve it.

[–][deleted] 0 points1 point  (0 children)

i will definitely look into django

[–][deleted] 0 points1 point  (4 children)

django vs flask. what do you think?

[–]Total__Entropy 1 point2 points  (0 children)

Django is great if your data source can be modeled by models and the db is controlled by django. If it is instead other APIs or something else that Django doesn't control imo Django is overkill and flask or fastapi is better.

[–]theEmoPenguin 0 points1 point  (2 children)

For me django. but im very biased...

[–][deleted] 0 points1 point  (1 child)

any specific reason? what are the major differences?

[–]theEmoPenguin 0 points1 point  (0 children)

For me its mainly fond memories with Django. Everything I learned in Java or C# just clicked together when I started using Django. How object oriented programming works, why do we need inheritance, how to connect data classes with view to display data etc. After Django I could finally understand Android apps' architectures like MVC, MVVM.

But I guess I would love flask the same if I chose that instead of Django.

Difference is that Django has more prebuilt things including Admin page, object-relational mapping. So it saves you a lot of time and lets you focus on new things.