Web Service Made Easy (WSME) simplify the writing of REST web services by providing simple yet powerful typing which removes the need to directly manipulate the request and the response objects.
Go to file
Christophe de Vienne b47d719613 Prepare the 0.1.1 release 2011-10-20 14:59:47 +02:00
doc Prepare the 0.1.1 release 2011-10-20 14:59:47 +02:00
examples/demo Completed the soap client example now that wsme-soap seems to work 2011-10-20 14:41:08 +02:00
wsme Add misc test functions 2011-10-19 14:21:12 +02:00
.hgignore Remove the soap protocol (I am moving it to wsme-soap 2011-10-13 16:59:34 +02:00
.hgtags Added tag 0.1.0 for changeset b0019e486c80 2011-10-14 18:16:04 +02:00
LICENSE Completed the packaging, we should now be able to do an alpha release 2011-10-02 22:03:53 +02:00
MANIFEST.in Completed the packaging, we should now be able to do an alpha release 2011-10-02 22:03:53 +02:00
README Fix README filename 2011-10-03 16:44:51 +02:00
setup.cfg Add a setup.cfg 2011-10-02 21:36:17 +02:00
setup.py Remove the soap protocol (I am moving it to wsme-soap 2011-10-13 16:59:34 +02:00

README

WSME
====

Web Service Made Easy (WSME) is a very easy way to implement webservices
in your python web application. It is originally a rewrite of TGWebServices
with focus on extensibility and framework-independance.

Main features are:

-   Very simple API
-   Supports user defined complex types.
-   Multi-protocol : REST+Json, REST+XML, SOAP, and more to come
-   Extensible : easy to add more protocols or more base types.
-   WSGI application : can be used within any web framework
-   Depends on webob, simplegeneric (+ Genshi if you use SOAP)
-   Integration in Sphinx for making clean documentation