Try to Understand. I want to make an api that can use multiple Api websoockets. So that user can select the api to use for data gathering. Hence, I don't wanna code around your API but python websocket instead. The way that you've provided in the j…
I have used Python library of websockets :
infFullMode= { "a": "mode", "v": ["full", [408065]] }
# web.send(str(infosys))
with connect(url) as websocket:
websocket.send(str(infFullMode))
message = websocket.recv()
print(message)
It …