Tried using suds for having a python SOAP client, but it uses get, not post and my server requires POST. Is there any trick to get suds going, or do you know of a client that supports POST?
from suds.client import Client
url = 'file:///myfile.wsdl'
client = Client(url)
client.service.myfunction()