Metadata-Version: 2.4
Name: obs-automation
Version: 0.1.7
Summary: A clean interface library for automating OBS streaming via obsws-python
Author-email: Anshul Nigam <anshul.nigam@loco.com>
License: MIT
Project-URL: Homepage, https://github.com/getloconow/obs-automation
Project-URL: Repository, https://github.com/yourusername/obs-automation
Project-URL: Issues, https://github.com/yourusername/obs-automation/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: obsws-python>=1.7.0

# obs-automation

A simple Python library that provides a clean interface to automate OBS streaming using the `obsws-python` WebSocket client.

## Installation
```bash
pip install obs-automation

## Method Signature

    def configure_connection(host: str = "localhost", port: int = 4455, password: str = "YourPassword", timeout: int = 3):

    def init(server: str, stream_key: str):
        """Initialize OBS stream configuration"""

    def set_video_source_media(file_path_or_url: str):
        """Set video source as local file or URL"""

    def set_video_source_browser(url: str):
        """Set video source as browser source"""

    def start():


    def stop():
        



