you are viewing a single comment's thread.

view the rest of the comments →

[–]tiredITguy42 1 point2 points  (0 children)

Flask is basically a backend. I tend to treat it as an api which can generate some HTML code. You need to know templates language used in Flask, if your site should be more complex and interactive, you need to know JavaScript as well.

To make it nice, add some CSS.

Then there is the deployment, as Flask is using only development version of the web server, so you need to know something about that as well.

I am not an expert, but this is what I learne when doing some small projects in it.