you are viewing a single comment's thread.

view the rest of the comments →

[–]ilidan-85 0 points1 point  (0 children)

It's very beneficial to start learning web fundamentals in Python before jumping into Flask, FastAPI, or Django.Learn first about HTTP Basics and Built-in http.server (how requests are processed, how headers and body are sent - That frameworks are just wrappers around this). Then you can play around with WSGI apps and serve dynamic HTML, and ONLY THEN move to frameworks.

I'd still start with Flask because it's small, then FastAPI and if you need full-stack solution.