[Twisted-Python] Escaping variable names

Hi, Ive got an issue where a variable name needs to have a minus sign (-) in it. from SOAPpy import WSDL wsdlFile = "http://webapi.allegro.pl/uploader.php?wsdl" server = WSDL.Proxy(wsdlFile) server.soapproxy.config.argsOrdering = {'doGetCountries': ['country-code', 'webapi-key'] } server.doGetCountries(country-code=COUNTRYID}, webapi-key=WEBAPIKEY) 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 "-" sign in the middle, is there a way to escape it in the variable name or get around the problem? Thanks!

On Friday 05 March 2010, Kamil Wasilewski wrote:
Yes, you can pass them from a dictionary using the ** syntax: server.doGetCountries(**{ 'country-code': COUNTRYID, 'webapi-key': WEBAPIKEY }) However, if you have the ability to change the API, it would be better to use underscores as separators in the argument names instead of dashes. Bye, Maarten

Hello Maarten, Friday, March 5, 2010, 6:26:36 PM, you wrote:
On Friday 05 March 2010, Kamil Wasilewski wrote:
Yes, you can pass them from a dictionary using the ** syntax:
The above gives a syntax error...
However, if you have the ability to change the API, it would be better to use underscores as separators in the argument names instead of dashes.
Unfortunately the designer of the API is a large British company that forgot to take into account other languages than PHP.

On Friday 05 March 2010, Kamil Wasilewski wrote:
Yes, you can pass them from a dictionary using the ** syntax: server.doGetCountries(**{ 'country-code': COUNTRYID, 'webapi-key': WEBAPIKEY }) However, if you have the ability to change the API, it would be better to use underscores as separators in the argument names instead of dashes. Bye, Maarten

Hello Maarten, Friday, March 5, 2010, 6:26:36 PM, you wrote:
On Friday 05 March 2010, Kamil Wasilewski wrote:
Yes, you can pass them from a dictionary using the ** syntax:
The above gives a syntax error...
However, if you have the ability to change the API, it would be better to use underscores as separators in the argument names instead of dashes.
Unfortunately the designer of the API is a large British company that forgot to take into account other languages than PHP.
participants (3)
-
Kamil Wasilewski
-
Maarten ter Huurne
-
Phil Christensen