Just doing the basic obs WebSocket examples I've found. In the OBS client it looks like it briefly connects but then they all end up with this error:
Exception has occurred: KeyError
'status'
File "obswebsocket_tests.py", line 3, in <module>
client.connect()
Here's my code:
import obswebsocket, obswebsocket.requests
client = obswebsocket.obsws("localhost", 4444)
client.connect()
v = client.call(obswebsocket.requests.GetVersion()).getObsWebsocketVersion()
print(v)
client.disconnect()