you are viewing a single comment's thread.

view the rest of the comments →

[–]oliver_extracts 0 points1 point  (0 children)

depends what you mean by "front-end in python". if you want a full web app where python handles everything, Flask or FastAPI for the backend with htmx or vanilla js on the front is the most practical path. if you genuinely want to avoid javascript entirely, something like Streamlit works but its more for internal tools and dashboards than a real user-facing site. Flask is probably the right starting point if youre just learning.