So the optional parameter expected in the web POST API request that I use is actually a reserved word in python. So, as I call the parameter in the method call:
example.webrequest(x=1,y=1,z=1,from=1)
this fails with a syntax error due to the fact that "from" is a keyword. How to pass this in such a way that there is no syntax error?
source share