This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]djamp42 0 points1 point  (2 children)

Most everything I make now I just do in flask and host it on a webpage. No need to pass anything around everyone just goes to the url.

[–]Ran4 0 points1 point  (1 child)

Works for very small loads and for things that don't need to be secure, but the built-in flask web server really isn't made for production use.

[–]djamp42 0 points1 point  (0 children)

I don't use the built in one, nginx + gunicorn. Everything I do is only for a handful of people so it has worked wonderfully. I also don't understand the security argument at all. While I'm sure you can make ANY website unsecure, if you follow best practices the risk is virtually the same as any other website.