Using Suds for SOAP in python, are suds.client.Client objects thread safe?
- by kdt
I'm using Suds to access a SOAP web service from python. If I have multiple threading.Thread threads of execution, can each of them safely access the same suds.client.Client instance concurrently, or must I create separate Client objects for each thread?