2

I want to access web service in Python or/and Perl scripts. What are the most popular and reliable libraries today?

I read this question, and I know about SOAPpy and ZSI. Can anybody say something about this libraries? Are they reliable enough for use in production?

Community
  • 1
  • 1
Dmitry
  • 2,943
  • 1
  • 23
  • 26

3 Answers3

2

If you're talking about SOAP then for Python I would definitely recommend suds : https://fedorahosted.org/suds/

Ruslan Spivak
  • 1,700
  • 1
  • 11
  • 5
0

Checking couple of libraries for SOAP (including suds) only ZSI worked reliably for me. It is not complicated to use and it just works(tm). I recommend that.

radekg
  • 464
  • 2
  • 7
0

Perl has fantastic CPAN libraries available for doing SOAP. Probably the easiest would be SOAP::Lite:

SOAP::Lite is a collection of Perl modules which provides a simple and lightweight interface to the Simple Object Access Protocol (SOAP) both on client and server side.

See more on the CPAN page.

Robert P
  • 15,707
  • 10
  • 68
  • 112