Hi,<br><br>Ive got an issue where a variable name needs to have a minus sign (-) in it.<br><br>from SOAPpy import WSDL<br>wsdlFile = &quot;<a href="http://webapi.allegro.pl/uploader.php?wsdl">http://webapi.allegro.pl/uploader.php?wsdl</a>&quot;<br>
server = WSDL.Proxy(wsdlFile)<br>server.soapproxy.config.argsOrdering = {&#39;doGetCountries&#39;: [&#39;country-code&#39;, &#39;webapi-key&#39;] }<br>server.doGetCountries(country-code=COUNTRYID}, webapi-key=WEBAPIKEY)<br>
<br>The above method allows me to specify the order and name of variables being sent, but i have a problem since the variables have a &quot;-&quot; sign in the middle, is there a way to escape it in the variable name or get around the problem?<br>
<br>Thanks!<br>