I am trying to use Python suds to access a SharePoint list by using a service but I am having some difficulties with the client component. I am behind a corporate firewall first of all which means that when the NTLM authentication works and suds gets the Lists.asmx?WSDL package it will try and go out on the internet to get the Schema. It fails.
So, I would like some help with proxies. I tried the Client.set_options( proxy = d ) where d is a dictionary and Suds complains with the following:
Client.set_options( proxy = d )
TypeError: unbound method set_options() must be called with Client instance
as first argument (got nothing instead)
Any Ideas?