I am trying to create a string to send to a Shelly device but am having problems getting the syntax correct.
An typical example of what I want to send
r = requests.get(url='http://192.168.2.42/rpc/Cover.Open?id=0') which works perfectly.
The last digits of the url change depending on the device.
So I create
shellyoffset=str(40+ShutterNo)
r=requests.get(url='http://192.168.2.'+shellyoffset+'/rpc/Cover.Open?id=0')
and I get an invalid syntax error for concatenated line.
I have tried so many variations but I cannot see where my error is.
Thanks for looking.
Edited for an error. Boy am I tired!
An typical example of what I want to send
r = requests.get(url='http://192.168.2.42/rpc/Cover.Open?id=0') which works perfectly.
The last digits of the url change depending on the device.
So I create
shellyoffset=str(40+ShutterNo)
r=requests.get(url='http://192.168.2.'+shellyoffset+'/rpc/Cover.Open?id=0')
and I get an invalid syntax error for concatenated line.
I have tried so many variations but I cannot see where my error is.
Thanks for looking.
Edited for an error. Boy am I tired!
Statistics: Posted by pd2 — Sun Dec 17, 2023 7:39 pm