Is there a list somewhere of recommendations of different Python-based REST frameworks for use on the serverside to write your own RESTful APIs? Preferably with pros and cons.
Please feel free to add recommendations here. :)
|
5
|
Is there a list somewhere of recommendations of different Python-based REST frameworks for use on the serverside to write your own RESTful APIs? Preferably with pros and cons. Please feel free to add recommendations here. :) |
|||
|
|
|
|
We're using Django for RESTful web services. Note that -- out of the box -- Django did not have fine-grained enough authentication for our needs. We used the Django-REST interface, which helped a lot. [We've since rolled our own because we'd made so many extensions that it had become a maintenance nightmare.] We have two kinds of URL's: "html" URL's which implement the human-oriented HTML pages, and "json" URL's which implement the web-services oriented processing. Our view functions often look like this.
The point being that the useful functionality is factored out of the two presentations. The JSON presentation is usually just one object that was requested. The HTML presentation often includes all kinds of navigation aids and other contextual clues that help people be productive. The |
||
|
|
|
|
I really like CherryPy. Here's an example of a restful web service:
This emphasizes what I really like about CherryPy; this is a completely working example that's very understandable even to someone who doesn't know the framework. If you run this code, then you can immediately see the results in your web browser; e.g. visiting http://localhost:8080/celc_to_fahr?degrees=50 will display |
||||||||||||
|
|
|
See Python Web Frameworks wiki. You probably do not need the full stack frameworks, but the remaining list is still quite long. |
||
|
|
|
|
I am not an expert on the python world but I have been using django which is an excellent web framework and can be used to create a restful framework. |
||
|
|
|
|
Something I don't like about CherryPy and Django is that, by default, they treat GET and POST as if they were the same thing. In a proper RESTful API HTTP-verbs are very important, and unless you're very careful and do explicit checks at every request handler, you'll end up falling into a REST anti-pattern. One framework that gets it right is web.py. When combined with the mimerender library, it allows you to write nice RESTful webservices:
The service's logic is implemented only once, and the correct representation selection (Accept header) + dispatch to the proper render function (or template) is done in a tidy, transparent way.
|
||||||||
|
|
|
I strongly recommend TurboGears or Bottle: TurboGears:
Bottle:
|
||
|
|