Earlier quoted context omitted.
It's in a single file which happens to be a little under 3500 lines long ...
Right, he's implying that the implementation is not as complete, or is incorrect because the problem space is more complex than that.
New Werkzeug and Flask Releases
21–30 of 59 posts
Re: New Werkzeug and Flask Releases
#22Earlier quoted context omitted.
Right, he's implying that the implementation is not as complete, or is incorrect because the problem space is more complex than that.
I doubt he or she was aware it was 3500 lines long. While not the same as 15000, it isn't all that far off.
Re: New Werkzeug and Flask Releases
#23Compared to asp.net, its an absolute joy to work with. It makes me not want to grind my face off with a blunt spoon :)
Glad to see some awesome progress with it.
Re: New Werkzeug and Flask Releases
#24So I ask. How safe is it to use in a real project? Is it a serious project today? Would you recommend Flask to someone who has never done any server side programming?
Re: New Werkzeug and Flask Releases
#25I read somewhere that Flask was born as an Aprils first joke. So I ask. How safe is it to use in a real project? Is it a serious project today? Would you recommend Flask to someone who has never done any server side programming?
We (mailgun.com) use it in production, our deployment handles thousands of requests/sec, we have not seen any flask-related issues so far in 2+ years.
You can use pool of flask + twisted powered services behind nginxes:
Nginx ---upstream pool--> twisted.wsgi + thread pool + flask app
Something like that:
Re: New Werkzeug and Flask Releases
#26I read somewhere that Flask was born as an Aprils first joke. So I ask. How safe is it to use in a real project? Is it a serious project today? Would you recommend Flask to someone who has never done any server side programming?
Re: New Werkzeug and Flask Releases
#27I read somewhere that Flask was born as an Aprils first joke. So I ask. How safe is it to use in a real project? Is it a serious project today? Would you recommend Flask to someone who has never done any server side programming?
Though I think they may have recently replaced this bit of their architecture with Go?
FWIW, I've chosen Flask to power my startup and have no regrets at all. It's a joy to work with and rock solid :)
Re: New Werkzeug and Flask Releases
#28I read somewhere that Flask was born as an Aprils first joke. So I ask. How safe is it to use in a real project? Is it a serious project today? Would you recommend Flask to someone who has never done any server side programming?
Re: New Werkzeug and Flask Releases
#29I read somewhere that Flask was born as an Aprils first joke. So I ask. How safe is it to use in a real project? Is it a serious project today? Would you recommend Flask to someone who has never done any server side programming?
If you're building a complex web app with it, just be sure to checkout all the Flask extensions so you don't have to reinvent the wheel too much.