2

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

codeape
  • 97,830
  • 24
  • 159
  • 188
fear_matrix
  • 4,912
  • 10
  • 44
  • 65

1 Answers1

1

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.

Community
  • 1
  • 1
codeape
  • 97,830
  • 24
  • 159
  • 188