obsws-python/tests/__init__.py

20 lines
477 B
Python
Raw Permalink Normal View History

2022-09-04 12:20:40 +01:00
import obsws_python as obs
req_cl = obs.ReqClient()
def setup_module():
req_cl.create_scene("START_TEST")
req_cl.create_scene("BRB_TEST")
req_cl.create_scene("END_TEST")
def teardown_module():
req_cl.remove_scene("START_TEST")
req_cl.remove_scene("BRB_TEST")
req_cl.remove_scene("END_TEST")
resp = req_cl.get_studio_mode_enabled()
if resp.studio_mode_enabled:
req_cl.set_studio_mode_enabled(False)
req_cl.base_client.ws.close()