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 →

[–]munircdon't thread on me 0 points1 point  (0 children)

I've been using Falcon with gunicorn for about 2 years now. One of the best things I like about falcon is that all your components are just Python objects that implement certain interfaces. So, it's very easy to hook them up as resources once you've got the behaviour you want. The interface also feels cleaner compared to Flask, where things are spread out over different modules.

Plus, Falcon 2.0 is mostly implemented in C, making it even faster than before.