What is the best way to implement web services in Python?
Asked
Active
Viewed 738 times
2
-
1possible duplicate of [Python Web Services](http://stackoverflow.com/questions/159802/python-web-services) – systempuntoout Sep 08 '10 at 10:44
-
1I believe the question is about creating services, not clients. – codeape Sep 08 '10 at 11:48
1 Answers
1
There are two main flavors of web services:
- RESTful
- SOAP based (old article)
I suggest you look into the RESTful stuff first. IMO, it is generally simpler to produce and/or consume a RESTful service, than it is to use SOAP.