views:

89

answers:

1

What is the best way to implement web services in Python?

+1  A: 

There are two main flavors of web services:

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.

codeape