{"id":29543948,"url":"https://github.com/dnaka91/obws","last_synced_at":"2025-07-17T14:09:16.005Z","repository":{"id":41088732,"uuid":"324772689","full_name":"dnaka91/obws","owner":"dnaka91","description":"The obws (obvious) remote control library for OBS","archived":false,"fork":false,"pushed_at":"2025-05-23T16:51:42.000Z","size":646,"stargazers_count":111,"open_issues_count":1,"forks_count":13,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-17T03:04:11.182Z","etag":null,"topics":["async-await","hacktoberfest","obs","obs-websocket","remote-control","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dnaka91.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-12-27T13:54:38.000Z","updated_at":"2025-06-10T17:02:26.000Z","dependencies_parsed_at":"2024-01-20T10:38:55.563Z","dependency_job_id":"f8c29310-4241-4cfe-986b-db2f8663ca4d","html_url":"https://github.com/dnaka91/obws","commit_stats":{"total_commits":227,"total_committers":5,"mean_commits":45.4,"dds":"0.026431718061673992","last_synced_commit":"e844f4c811a6c138f1b33741d9a801f7ab8531e1"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/dnaka91/obws","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnaka91%2Fobws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnaka91%2Fobws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnaka91%2Fobws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnaka91%2Fobws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dnaka91","download_url":"https://codeload.github.com/dnaka91/obws/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnaka91%2Fobws/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265614369,"owners_count":23798430,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["async-await","hacktoberfest","obs","obs-websocket","remote-control","rust"],"created_at":"2025-07-17T14:09:15.275Z","updated_at":"2025-07-17T14:09:15.996Z","avatar_url":"https://github.com/dnaka91.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OBWS - The obws (obvious) remote control library for OBS\n\n[![Build Status][build-img]][build-url]\n[![Repository][crates-img]][crates-url]\n[![Documentation][doc-img]][doc-url]\n[![Code Coverage][cover-img]][cover-url]\n\n[build-img]: https://img.shields.io/github/actions/workflow/status/dnaka91/obws/ci.yml?branch=main\u0026style=for-the-badge\n[build-url]: https://github.com/dnaka91/obws/actions?query=workflow%3ACI\n[crates-img]: https://img.shields.io/crates/v/obws?style=for-the-badge\n[crates-url]: https://crates.io/crates/obws\n[doc-img]: https://img.shields.io/badge/docs.rs-obws-4d76ae?style=for-the-badge\n[doc-url]: https://docs.rs/obws\n[cover-img]: https://img.shields.io/endpoint?url=https://dnaka91.github.io/obws/coverage.json\u0026style=for-the-badge\n[cover-url]: https://dnaka91.github.io/obws\n\nRemote control OBS with the [obs-websocket] plugin from Rust 🦀.\n\n[obs-websocket]: https://github.com/Palakis/obs-websocket\n\n## Usage\n\nAdd `obws` to your project with `cargo add obws@0.14.0` or add it manually to your\n`Cargo.toml`:\n\n```toml\n[dependencies]\nobws = \"0.14.0\"\n```\n\nIn addition, you will need to use the latest [tokio](https://tokio.rs) runtime to use this library\nas it makes heavy use of async/await and is bound to this runtime.\n\n[cargo-edit]: https://github.com/killercup/cargo-edit\n\n### Example\n\nHere we connect to a OBS instance, get some version information and log in to access the whole API\nand lastly print out a list of available scenes.\n\nFor more usage instructions see the [docs](https://docs.rs/obws) or check out the\n[examples](examples/README.md).\n\n```rust\nuse anyhow::Result;\nuse obws::Client;\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c()\u003e {\n    // Connect to the OBS instance through obs-websocket.\n    let client = Client::connect(\"localhost\", 4455, Some(\"password\")).await?;\n\n    // Get and print out version information of OBS and obs-websocket.\n    let version = client.general().version().await?;\n    println!(\"{version:#?}\");\n\n    // Get a list of available scenes and print them out.\n    let scene_list = client.scenes().list().await?;\n    println!(\"{scene_list:#?}\");\n\n    Ok(())\n}\n```\n\n## License\n\nThis project is licensed under [MIT License](LICENSE) (or \u003chttp://opensource.org/licenses/MIT\u003e).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdnaka91%2Fobws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdnaka91%2Fobws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdnaka91%2Fobws/lists"}