Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the best way to use web services in python?

I have a medium sized application that runs as a .net web-service which I do not control, and I want to create a loose pythonic API above it to enable easy scripting.

I wanted to know what is the best/most practical solution for using web-services in python.

Edit: I need to consume a complex soap WS and I have no control over it.

like image 550
Yon Avatar asked Aug 26 '08 19:08

Yon


1 Answers

If I have to expose APIs, I prefer doing it as JSON. Python has excellent support for JSON objects (JSON Objects are infact python dictionaries)

like image 62
user3374 Avatar answered Nov 14 '22 03:11

user3374