Python library to communicate with an obs-websocket server (for OBS Studio) - obs-websocket-py/obswebsocket/core.py at master · Elektordi/obs-websocket-py
Breadcrumbs obs-websocket-py /obswebsocket / exceptions.py Latest commit Cannot retrieve latest commit at this time. HistoryHistory File metadata and controls Code Blame 10 lines (6 loc) · 130 Bytes Raw class ConnectionFailure(Exception): pass class MessageTimeout(Exception): pass class Object...
GitHub project:https://github.com/Elektordi/obs-websocket-py PyPI package:https://pypi.org/project/obs-websocket-py/ Installation Just runpip3 install obs-websocket-pyin your Python venv or directly on your system. For manual install, git clone the github repo and copy the directoryobswebsocket...
Python library to communicate with an obs-websocket server (for OBS Studio) - 1.0 release! · Elektordi/obs-websocket-py@9b5f3e0
I have a script that maintains a persistent connection to OBS by calling ws.connect(), continuing to do whatever, and then calling ws.disconnect() on close. If OBS is closed before the script finishes, it crashes the script. Is there a w...
[key] return getter raise AttributeError("'{}' object has no attribute '{}'".format(self.name, item)) class Baserequests: def __init__(self, *args, **kwargs): if args: warnings.warn("All obs-websocket-py requests now require keyword arguments (since version 1.0), check documentation...
Python library to communicate with an obs-websocket server (for OBS Studio) - obs-websocket-py/obswebsocket/__init__.py at master · Elektordi/obs-websocket-py