obsws-python/tests/__init__.py
2026-03-27 16:29:16 +00:00

26 lines
713 B
Python

import os
import obsws_python as obs
req_cl = obs.ReqClient(
host=os.getenv("OBSWS_HOST", "localhost"),
port=int(os.getenv("OBSWS_PORT", 4455)),
password=os.getenv("OBSWS_PASSWORD", ""),
)
def setup_module():
req_cl.create_scene(scene_name="START_TEST")
req_cl.create_scene(scene_name="BRB_TEST")
req_cl.create_scene(scene_name="END_TEST")
def teardown_module():
req_cl.remove_scene(scene_name="START_TEST")
req_cl.remove_scene(scene_name="BRB_TEST")
req_cl.remove_scene(scene_name="END_TEST")
resp = req_cl.get_studio_mode_enabled()
if resp.studio_mode_enabled:
req_cl.set_studio_mode_enabled(studio_mode_enabled=False)
req_cl.base_client.ws.close()