Hunt
Hunt

Reputation: 8425

webservices in python

i want to create a webservice (SOAP & REST) in python which cab be called from iphone, now i have install python 2.7.1 on Ubuntu 10.04.2 LTS using Putty. so now i am searching for a nice and easy framework that helps me in creating webservices and web programming.

I have searched a lot but confused with the combination of framworks.

Upvotes: 0

Views: 979

Answers (2)

kirtcathey
kirtcathey

Reputation: 343

For REST, I am very satisfied with Flask.

Upvotes: 0

user2665694
user2665694

Reputation:

Duplicate of

Python soap using soaplib (server) and suds (client)

Suds/soaplib is fine for working wit SOAP client/server side.

REST is a different story. I think you should first choose one of the many Python web-frameworks.

"Pyramid" - part of the Pylons projects - is a very strong but open-to-all-sides webframework which could be used for both SOAP and REST-ish services.

http://docs.pylonsproject.org/

Upvotes: 1

Related Questions