Live data from Hacker News

Ask HN: What Python framework would you use to serve up a REST API?

news.ycombinator.com

1–10 of 13 posts

Re: Ask HN: What Python framework would you use to serve up a REST API?

#3
I use Tornado. It's simple, lightweight and very well documentated. It wouldn't take much time to get it up and running. And it also supports asynchronous operations out of box unlike Flask.

However community isn't big as that of Flask and has low bus factor.

Other alternative is Django REST Framework[0]. It's also well documented and get the work done. However code base is large compared to Tornado. Advantage is, it has a bigger community support and it's easy to find a developer.

[0] - http://www.django-rest-framework.org/

Re: Ask HN: What Python framework would you use to serve up a REST API?

#8

Flask+uwsgi+nginx. Simple, battle tested, just works.

Thanks! Any particular points I should be aware of in this setup?

I've deployed many small websites using flask+uwsgi+nginx before, but for a high-volume API, there seem to be a number of "fragile" aspects to this, e.g. processes and threads settings, since WSGI is synchronous.

If I may ask, what's usually the weakest link in this setup, and what's the best way to monitor for problems and scale appropriately and intelligently as users grow? For example, let's say I set processes = 16, it hits the limit, but it turns out that I still have plenty of CPU and RAM to spare and I want it to dynamically make use of that?

Re: Ask HN: What Python framework would you use to serve up a REST API?

#10
post #7
post #2

I use Eve [1]. [1] http://python-eve.org/

Eve looks amazing! Do you use SqlAlchemy with it? I notice they created a separate branch for it and was wondering if it was stable.

No, I haven't, but our Eve-based backend has been one of the most stable and well-performing component.
Post reply on HN