Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to write a python webservice, but I would rather use a LIGHT WEIGHT framework (no one mention Django please), so that I can cater for more complicated scenarios in the future.

Is there a (peer) recommended library that I can use or at least can provide a good starting point?

[Edit]

To clarify, I am talking about a RESTful web service here - nothing to do with SOAP and/or WSDL

share|improve this question
Looks like someone already asked this here: stackoverflow.com/questions/713847/… – oompahloompah Mar 28 '11 at 13:37
That was a long time ago. Pyramid didn't even exist. Is there a statute of limitations on duplicates? – syrion Mar 28 '11 at 13:41
2  
no statute of limitations; the original should be updated with current information. In a perfect world there should be only one page for each question to prevent knowledge-seekers from having to visit several different questions that address the same general topic. – Bryan Oakley Mar 28 '11 at 14:16

4 Answers

up vote 2 down vote accepted

I suggest you look at Cherry Py. http://cherrypy.org/

share|improve this answer
Looks like there are quite a few good frameworks out there. I'm settling for Cherry partly because its been around a lot longer than the others and (I'm hoping), it is more likely to have been used in anger + prob a greater pool of users to tap into ... – oompahloompah Mar 28 '11 at 23:06

Try Pyramid, which is the result of a merger between the Pylons and repoze.bfg frameworks. It's relatively lightweight, yet robust and well-documented.

For RESTful services in Pyramid, you might find this blog post interesting.

share|improve this answer

I was in a similar situation looking for lightweight, and tired of Django. I came across web.py, which seems to be as lightweight as it can get.

web.py main site: http://webpy.org/ web.py github: https://github.com/webpy/webpy

share|improve this answer
I'm using web.py for a RESTful webapp I'm writing. I'm sure Pyramid or Flask might be better frameworks - but given limited resources I've found web.py to be extremely easy. – Jeffrey Jose Apr 2 '11 at 12:37

web2py may be of interest. It includes support for web services and has recently added RESTful API functionality, described here (video) and here. If you have any questions, ask on the mailing list.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.