├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── examples ├── events │ ├── README.md │ └── __main__.py ├── hotkeys │ ├── README.md │ ├── __main__.py │ └── setup.py ├── levels │ ├── README.md │ └── __main__.py └── scene_rotate │ ├── README.md │ └── __main__.py ├── obsws_python ├── __init__.py ├── baseclient.py ├── callback.py ├── error.py ├── events.py ├── reqs.py ├── subs.py ├── util.py └── version.py ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── test_attrs.py ├── test_callback.py ├── test_error.py └── test_request.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/README.md -------------------------------------------------------------------------------- /examples/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/events/README.md -------------------------------------------------------------------------------- /examples/events/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/events/__main__.py -------------------------------------------------------------------------------- /examples/hotkeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/hotkeys/README.md -------------------------------------------------------------------------------- /examples/hotkeys/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/hotkeys/__main__.py -------------------------------------------------------------------------------- /examples/hotkeys/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/hotkeys/setup.py -------------------------------------------------------------------------------- /examples/levels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/levels/README.md -------------------------------------------------------------------------------- /examples/levels/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/levels/__main__.py -------------------------------------------------------------------------------- /examples/scene_rotate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/scene_rotate/README.md -------------------------------------------------------------------------------- /examples/scene_rotate/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/examples/scene_rotate/__main__.py -------------------------------------------------------------------------------- /obsws_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/__init__.py -------------------------------------------------------------------------------- /obsws_python/baseclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/baseclient.py -------------------------------------------------------------------------------- /obsws_python/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/callback.py -------------------------------------------------------------------------------- /obsws_python/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/error.py -------------------------------------------------------------------------------- /obsws_python/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/events.py -------------------------------------------------------------------------------- /obsws_python/reqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/reqs.py -------------------------------------------------------------------------------- /obsws_python/subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/subs.py -------------------------------------------------------------------------------- /obsws_python/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/obsws_python/util.py -------------------------------------------------------------------------------- /obsws_python/version.py: -------------------------------------------------------------------------------- 1 | version = "1.8.0" 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/tests/test_attrs.py -------------------------------------------------------------------------------- /tests/test_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/tests/test_callback.py -------------------------------------------------------------------------------- /tests/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/tests/test_error.py -------------------------------------------------------------------------------- /tests/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aatikturk/obsws-python/HEAD/tests/test_request.py --------------------------------------------------------------------------------