I am currently using WS, where I send an XML request to a URL and then get an XML response. The request may look like this:
<RequestColour> ... </RequestColour>
The answer looks like this:
<ResponseColourOutput> ... </ResponseColourOutput>
What libraries should I use in Python to send these xml requests and get responses?
source share