Compare commits

...

21 Commits

Author SHA1 Message Date
22cf1c817f closes #6 2026-02-26 20:29:11 +00:00
da69702a18 temporary fix for hatch build, see https://github.com/pypa/hatch/issues/2193 2026-02-26 14:44:47 +00:00
9b0d20effd upd hatch badge 2026-02-22 11:37:03 +00:00
998e72f43e upd set_logging for improved readability 2026-02-09 10:32:13 +00:00
71d4a81855 upd skip group test env var 2026-02-09 01:55:43 +00:00
e8f0764a50 upd README 2026-02-09 01:50:41 +00:00
d88a0b62ad use hatch-dotenv plugin to load env vars for tests
fail fast if .test.env is not found
2026-02-09 01:50:34 +00:00
7f3d47e7b0 use getLevelNamesMapping() to get loglevel names 2026-02-09 01:49:49 +00:00
fb19a67e64
Merge pull request #5 from onyx-and-iris/dependabot/github_actions/actions/setup-python-6
Bump actions/setup-python from 4 to 6
2026-02-09 00:56:48 +00:00
383df9d4e4
Merge pull request #4 from onyx-and-iris/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 4 to 6
2026-02-09 00:56:36 +00:00
dependabot[bot]
8116deed27
Bump actions/setup-python from 4 to 6
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-09 00:53:51 +00:00
dependabot[bot]
ae57f0dbc3
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-09 00:53:47 +00:00
55e4769f32
Configure Dependabot for GitHub Actions and pip
Added support for GitHub Actions and pip updates with a weekly schedule.
2026-02-09 00:53:09 +00:00
35be262b2a patch bump 2026-02-07 08:32:58 +00:00
58907fe2b5 add 0.24.8 to CHANGELOG 2026-02-07 08:32:34 +00:00
1a05a89042 update README 2026-02-07 08:32:26 +00:00
13a2443d48 remove --debug flag, replace it with --loglevel 2026-02-07 08:32:17 +00:00
45479563a0 upd shell completions 2026-02-07 05:25:22 +00:00
35bd2522cf patch bump 2026-02-07 05:21:28 +00:00
bec10d5d05 add Shell Completion to README 2026-02-07 05:21:05 +00:00
9693d4f913 we lose aliases in the help output but this does fix shell completion, which is more important.
fixes #3
2026-02-07 05:20:37 +00:00
30 changed files with 258 additions and 164 deletions

20
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,20 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"

View File

@ -19,10 +19,10 @@ jobs:
id-token: write id-token: write
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v6
with: with:
python-version: '3.11' python-version: '3.11'
cache: 'pip' cache: 'pip'

View File

@ -13,7 +13,7 @@ jobs:
ruff: ruff:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3 - uses: astral-sh/ruff-action@v3
with: with:
args: 'format --check --diff' args: 'format --check --diff'

View File

@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# [0.24.8] - 2026-02-07
### Changed
- --debug flag removed and replaced with --loglevel. See [Flags](https://github.com/onyx-and-iris/obsws-cli/tree/main?tab=readme-ov-file#flags). This gives the user more control over the level of logging. The default level has been set to WARNING.
### Fixed
- shell completion now works, see [Shell Completion](https://github.com/onyx-and-iris/obsws-cli/tree/main?tab=readme-ov-file#shell-completion). Unfortunately, command aliases in the help output are no longer present as it was breaking shell completion. However, the aliases do still work. See [issue #3](https://github.com/onyx-and-iris/obsws-cli/issues/3)
# [0.24.6] - 2026-01-26 # [0.24.6] - 2026-01-26
### Changed ### Changed

View File

@ -1,6 +1,6 @@
# obsws-cli # obsws-cli
[![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch) [![Hatch project](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/pypa/hatch/master/docs/assets/badge/v0.json)](https://github.com/pypa/hatch)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
@ -16,6 +16,7 @@ For an outline of past/future changes refer to: [CHANGELOG](CHANGELOG.md)
- [Configuration](#configuration) - [Configuration](#configuration)
- [Style](#style) - [Style](#style)
- [Commands](#root-typer) - [Commands](#root-typer)
- [Shell Completion](#shell-completion)
- [License](#license) - [License](#license)
## Requirements ## Requirements
@ -48,6 +49,8 @@ The CLI should now be discoverable as `obsws-cli`
- --password/-p: Websocket password - --password/-p: Websocket password
- --timeout/-T: Websocket timeout - --timeout/-T: Websocket timeout
- --version/-v: Print the obsws-cli version - --version/-v: Print the obsws-cli version
- --loglevel/-l: Set the application's logging level
- One of *NOTSET, DEBUG, INFO, WARN, WARNING, ERROR, CRITICAL, FATAL*
Pass `--host`, `--port` and `--password` as flags on the root command, for example: Pass `--host`, `--port` and `--password` as flags on the root command, for example:
@ -65,6 +68,7 @@ Store and load environment variables from:
OBSWS_CLI_HOST=localhost OBSWS_CLI_HOST=localhost
OBSWS_CLI_PORT=4455 OBSWS_CLI_PORT=4455
OBSWS_CLI_PASSWORD=<websocket password> OBSWS_CLI_PASSWORD=<websocket password>
OBSWS_CLI_LOGLEVEL=DEBUG
``` ```
Flags can be used to override environment variables. Flags can be used to override environment variables.
@ -814,6 +818,14 @@ obsws-cli media stop "Media"
obsws-cli media restart "Media" obsws-cli media restart "Media"
``` ```
## Shell Completion
```console
obsws-cli --install-completion
```
Currently supported shells: *bash* *zsh* *fish* *powershell*
## License ## License

View File

@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online> # SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online>
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
__version__ = '0.24.6' __version__ = '0.24.8'

View File

@ -1,7 +1,5 @@
"""module defining a custom group class for handling command name aliases.""" """module defining a custom group class for handling command name aliases."""
import re
import typer import typer
@ -53,25 +51,3 @@ class RootTyperAliasGroup(typer.core.TyperGroup):
case 'vc': case 'vc':
cmd_name = 'virtualcam' cmd_name = 'virtualcam'
return super().get_command(ctx, cmd_name) return super().get_command(ctx, cmd_name)
class SubTyperAliasGroup(typer.core.TyperGroup):
"""A custom group class to handle command name aliases for sub typers."""
_CMD_SPLIT_P = re.compile(r' ?[,|] ?')
def __init__(self, *args, **kwargs):
"""Initialize the AliasGroup."""
super().__init__(*args, **kwargs)
self.no_args_is_help = True
def get_command(self, ctx, cmd_name):
"""Get a command by name."""
cmd_name = self._group_cmd_name(cmd_name)
return super().get_command(ctx, cmd_name)
def _group_cmd_name(self, default_name):
for cmd in self.commands.values():
if cmd.name and default_name in self._CMD_SPLIT_P.split(cmd.name):
return cmd.name
return default_name

View File

@ -28,11 +28,21 @@ def version_callback(value: bool):
raise typer.Exit() raise typer.Exit()
def setup_logging(debug: bool): def setup_logging(loglevel: str):
"""Set up logging for the application.""" """Set up logging for the application."""
log_level = logging.DEBUG if debug else logging.CRITICAL level_map = logging.getLevelNamesMapping()
try:
level_int = level_map[loglevel.upper()]
except KeyError:
possible_levels = ', '.join(
sorted(level_map.keys(), key=lambda k: level_map[k])
)
raise typer.BadParameter(
f'Invalid log level: {loglevel}. Valid options are: {possible_levels}'
) from None
logging.basicConfig( logging.basicConfig(
level=log_level, level=level_int,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
) )
@ -121,19 +131,18 @@ def main(
callback=version_callback, callback=version_callback,
), ),
] = False, ] = False,
debug: Annotated[ loglevel: Annotated[
bool, str,
typer.Option( typer.Option(
'--debug', '--loglevel',
'-d', '-l',
envvar='OBSWS_CLI_DEBUG', envvar='OBSWS_CLI_LOGLEVEL',
is_eager=True, is_eager=True,
help='Enable debug logging', help='Set the logging level',
show_default=False, show_default=False,
callback=setup_logging, callback=setup_logging,
hidden=True,
), ),
] = envconfig.get('debug'), ] = envconfig.get('loglevel'),
): ):
"""obsws_cli is a command line interface for the OBS WebSocket API.""" """obsws_cli is a command line interface for the OBS WebSocket API."""
ctx.ensure_object(dict) ctx.ensure_object(dict)

View File

@ -8,9 +8,8 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console, util from obsws_cli import console, util
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -18,7 +17,8 @@ def main():
"""Control filters in OBS scenes.""" """Control filters in OBS scenes."""
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_( def list_(
ctx: typer.Context, ctx: typer.Context,
source_name: Annotated[ source_name: Annotated[
@ -90,7 +90,8 @@ def _get_filter_enabled(ctx: typer.Context, source_name: str, filter_name: str):
return resp.filter_enabled return resp.filter_enabled
@app.command('enable | on') @app.command('enable')
@app.command('on', hidden=True)
def enable( def enable(
ctx: typer.Context, ctx: typer.Context,
source_name: Annotated[ source_name: Annotated[
@ -119,7 +120,8 @@ def enable(
) )
@app.command('disable | off') @app.command('disable')
@app.command('off', hidden=True)
def disable( def disable(
ctx: typer.Context, ctx: typer.Context,
source_name: Annotated[ source_name: Annotated[
@ -148,7 +150,8 @@ def disable(
) )
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle( def toggle(
ctx: typer.Context, ctx: typer.Context,
source_name: Annotated[ source_name: Annotated[
@ -181,7 +184,8 @@ def toggle(
) )
@app.command('status | ss') @app.command('status')
@app.command('ss', hidden=True)
def status( def status(
ctx: typer.Context, ctx: typer.Context,
source_name: Annotated[ source_name: Annotated[

View File

@ -7,10 +7,9 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console, util, validate from obsws_cli import console, util, validate
from obsws_cli.alias import SubTyperAliasGroup
from obsws_cli.protocols import DataclassProtocol from obsws_cli.protocols import DataclassProtocol
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -18,7 +17,8 @@ def main():
"""Control groups in OBS scenes.""" """Control groups in OBS scenes."""
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_( def list_(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -84,7 +84,8 @@ def _get_group(group_name: str, resp: DataclassProtocol) -> dict | None:
return group return group
@app.command('show | sh') @app.command('show')
@app.command('sh', hidden=True)
def show( def show(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -117,7 +118,8 @@ def show(
console.out.print(f'Group {console.highlight(ctx, group_name)} is now visible.') console.out.print(f'Group {console.highlight(ctx, group_name)} is now visible.')
@app.command('hide | h') @app.command('hide')
@app.command('h', hidden=True)
def hide( def hide(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -150,7 +152,8 @@ def hide(
console.out.print(f'Group {console.highlight(ctx, group_name)} is now hidden.') console.out.print(f'Group {console.highlight(ctx, group_name)} is now hidden.')
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle( def toggle(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -187,7 +190,8 @@ def toggle(
console.out.print(f'Group {console.highlight(ctx, group_name)} is now hidden.') console.out.print(f'Group {console.highlight(ctx, group_name)} is now hidden.')
@app.command('status | ss') @app.command('status')
@app.command('ss', hidden=True)
def status( def status(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[

View File

@ -7,9 +7,8 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -17,7 +16,8 @@ def main():
"""Control hotkeys in OBS.""" """Control hotkeys in OBS."""
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_( def list_(
ctx: typer.Context, ctx: typer.Context,
): ):
@ -45,7 +45,8 @@ def list_(
console.out.print(table) console.out.print(table)
@app.command('trigger | tr') @app.command('trigger')
@app.command('tr', hidden=True)
def trigger( def trigger(
ctx: typer.Context, ctx: typer.Context,
hotkey: Annotated[ hotkey: Annotated[
@ -56,7 +57,8 @@ def trigger(
ctx.obj['obsws'].trigger_hotkey_by_name(hotkey) ctx.obj['obsws'].trigger_hotkey_by_name(hotkey)
@app.command('trigger-sequence | trs') @app.command('trigger-sequence')
@app.command('trs', hidden=True)
def trigger_sequence( def trigger_sequence(
ctx: typer.Context, ctx: typer.Context,
key_id: Annotated[ key_id: Annotated[

View File

@ -8,9 +8,8 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console, util, validate from obsws_cli import console, util, validate
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -18,7 +17,8 @@ def main():
"""Control inputs in OBS.""" """Control inputs in OBS."""
@app.command('create | add') @app.command('create')
@app.command('cr', hidden=True)
def create( def create(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -62,7 +62,8 @@ def create(
) )
@app.command('remove | rm') @app.command('remove')
@app.command('rm', hidden=True)
def remove( def remove(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -81,7 +82,8 @@ def remove(
console.out.print(f'Input {console.highlight(ctx, input_name)} removed.') console.out.print(f'Input {console.highlight(ctx, input_name)} removed.')
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_( def list_(
ctx: typer.Context, ctx: typer.Context,
input: Annotated[bool, typer.Option(help='Filter by input type.')] = False, input: Annotated[bool, typer.Option(help='Filter by input type.')] = False,
@ -168,7 +170,8 @@ def list_(
console.out.print(table) console.out.print(table)
@app.command('list-kinds | ls-k') @app.command('list-kinds')
@app.command('ls-k', hidden=True)
def list_kinds( def list_kinds(
ctx: typer.Context, ctx: typer.Context,
): ):
@ -195,7 +198,8 @@ def list_kinds(
console.out.print(table) console.out.print(table)
@app.command('mute | m') @app.command('mute')
@app.command('m', hidden=True)
def mute( def mute(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -217,7 +221,8 @@ def mute(
console.out.print(f'Input {console.highlight(ctx, input_name)} muted.') console.out.print(f'Input {console.highlight(ctx, input_name)} muted.')
@app.command('unmute | um') @app.command('unmute')
@app.command('um', hidden=True)
def unmute( def unmute(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -239,7 +244,8 @@ def unmute(
console.out.print(f'Input {console.highlight(ctx, input_name)} unmuted.') console.out.print(f'Input {console.highlight(ctx, input_name)} unmuted.')
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle( def toggle(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -271,7 +277,8 @@ def toggle(
) )
@app.command('volume | vol') @app.command('volume')
@app.command('vol', hidden=True)
def volume( def volume(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -305,7 +312,8 @@ def volume(
) )
@app.command('show | s') @app.command('show')
@app.command('s', hidden=True)
def show( def show(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -398,7 +406,8 @@ def show(
console.out.print(table) console.out.print(table)
@app.command('update | upd') @app.command('update')
@app.command('upd', hidden=True)
def update( def update(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[

View File

@ -5,9 +5,8 @@ from typing import Annotated, Optional
import typer import typer
from obsws_cli import console, util, validate from obsws_cli import console, util, validate
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -15,7 +14,8 @@ def main():
"""Commands for media inputs.""" """Commands for media inputs."""
@app.command('cursor | c') @app.command('cursor')
@app.command('cur', hidden=True)
def cursor( def cursor(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -45,7 +45,8 @@ def cursor(
) )
@app.command('play | p') @app.command('play')
@app.command('p', hidden=True)
def play( def play(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -59,7 +60,8 @@ def play(
console.out.print(f'Playing media input {console.highlight(ctx, input_name)}.') console.out.print(f'Playing media input {console.highlight(ctx, input_name)}.')
@app.command('pause | pa') @app.command('pause')
@app.command('pa', hidden=True)
def pause( def pause(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -73,7 +75,8 @@ def pause(
console.out.print(f'Paused media input {console.highlight(ctx, input_name)}.') console.out.print(f'Paused media input {console.highlight(ctx, input_name)}.')
@app.command('stop | s') @app.command('stop')
@app.command('s', hidden=True)
def stop( def stop(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -87,7 +90,8 @@ def stop(
console.out.print(f'Stopped media input {console.highlight(ctx, input_name)}.') console.out.print(f'Stopped media input {console.highlight(ctx, input_name)}.')
@app.command('restart | r') @app.command('restart')
@app.command('r', hidden=True)
def restart( def restart(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[

View File

@ -7,9 +7,8 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console, util, validate from obsws_cli import console, util, validate
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -17,7 +16,8 @@ def main():
"""Control profiles in OBS.""" """Control profiles in OBS."""
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_(ctx: typer.Context): def list_(ctx: typer.Context):
"""List profiles.""" """List profiles."""
resp = ctx.obj['obsws'].get_profile_list() resp = ctx.obj['obsws'].get_profile_list()
@ -47,7 +47,8 @@ def list_(ctx: typer.Context):
console.out.print(table) console.out.print(table)
@app.command('current | get') @app.command('current')
@app.command('get', hidden=True)
def current(ctx: typer.Context): def current(ctx: typer.Context):
"""Get the current profile.""" """Get the current profile."""
resp = ctx.obj['obsws'].get_profile_list() resp = ctx.obj['obsws'].get_profile_list()
@ -56,7 +57,8 @@ def current(ctx: typer.Context):
) )
@app.command('switch | set') @app.command('switch')
@app.command('set', hidden=True)
def switch( def switch(
ctx: typer.Context, ctx: typer.Context,
profile_name: Annotated[ profile_name: Annotated[
@ -81,7 +83,8 @@ def switch(
console.out.print(f'Switched to profile {console.highlight(ctx, profile_name)}.') console.out.print(f'Switched to profile {console.highlight(ctx, profile_name)}.')
@app.command('create | new') @app.command('create')
@app.command('new', hidden=True)
def create( def create(
ctx: typer.Context, ctx: typer.Context,
profile_name: Annotated[ profile_name: Annotated[
@ -99,7 +102,8 @@ def create(
console.out.print(f'Created profile {console.highlight(ctx, profile_name)}.') console.out.print(f'Created profile {console.highlight(ctx, profile_name)}.')
@app.command('remove | rm') @app.command('remove')
@app.command('rm', hidden=True)
def remove( def remove(
ctx: typer.Context, ctx: typer.Context,
profile_name: Annotated[ profile_name: Annotated[

View File

@ -7,9 +7,8 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -17,7 +16,8 @@ def main():
"""Control projectors in OBS.""" """Control projectors in OBS."""
@app.command('list-monitors | ls-m') @app.command('list-monitors')
@app.command('ls-m', hidden=True)
def list_monitors(ctx: typer.Context): def list_monitors(ctx: typer.Context):
"""List available monitors.""" """List available monitors."""
resp = ctx.obj['obsws'].get_monitor_list() resp = ctx.obj['obsws'].get_monitor_list()
@ -48,7 +48,8 @@ def list_monitors(ctx: typer.Context):
console.out.print(table) console.out.print(table)
@app.command('open | o') @app.command('open')
@app.command('o', hidden=True)
def open( def open(
ctx: typer.Context, ctx: typer.Context,
monitor_index: Annotated[ monitor_index: Annotated[

View File

@ -6,9 +6,8 @@ from typing import Annotated, Optional
import typer import typer
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -22,7 +21,8 @@ def _get_recording_status(ctx: typer.Context) -> tuple:
return resp.output_active, resp.output_paused return resp.output_active, resp.output_paused
@app.command('start | s') @app.command('start')
@app.command('s', hidden=True)
def start(ctx: typer.Context): def start(ctx: typer.Context):
"""Start recording.""" """Start recording."""
active, paused = _get_recording_status(ctx) active, paused = _get_recording_status(ctx)
@ -38,7 +38,8 @@ def start(ctx: typer.Context):
console.out.print('Recording started successfully.') console.out.print('Recording started successfully.')
@app.command('stop | st') @app.command('stop')
@app.command('st', hidden=True)
def stop(ctx: typer.Context): def stop(ctx: typer.Context):
"""Stop recording.""" """Stop recording."""
active, _ = _get_recording_status(ctx) active, _ = _get_recording_status(ctx)
@ -52,7 +53,8 @@ def stop(ctx: typer.Context):
) )
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle(ctx: typer.Context): def toggle(ctx: typer.Context):
"""Toggle recording.""" """Toggle recording."""
resp = ctx.obj['obsws'].toggle_record() resp = ctx.obj['obsws'].toggle_record()
@ -62,7 +64,8 @@ def toggle(ctx: typer.Context):
console.out.print('Recording stopped successfully.') console.out.print('Recording stopped successfully.')
@app.command('status | ss') @app.command('status')
@app.command('ss', hidden=True)
def status(ctx: typer.Context): def status(ctx: typer.Context):
"""Get recording status.""" """Get recording status."""
active, paused = _get_recording_status(ctx) active, paused = _get_recording_status(ctx)
@ -75,7 +78,8 @@ def status(ctx: typer.Context):
console.out.print('Recording is not in progress.') console.out.print('Recording is not in progress.')
@app.command('resume | r') @app.command('resume')
@app.command('r', hidden=True)
def resume(ctx: typer.Context): def resume(ctx: typer.Context):
"""Resume recording.""" """Resume recording."""
active, paused = _get_recording_status(ctx) active, paused = _get_recording_status(ctx)
@ -90,7 +94,8 @@ def resume(ctx: typer.Context):
console.out.print('Recording resumed successfully.') console.out.print('Recording resumed successfully.')
@app.command('pause | p') @app.command('pause')
@app.command('p', hidden=True)
def pause(ctx: typer.Context): def pause(ctx: typer.Context):
"""Pause recording.""" """Pause recording."""
active, paused = _get_recording_status(ctx) active, paused = _get_recording_status(ctx)
@ -105,7 +110,8 @@ def pause(ctx: typer.Context):
console.out.print('Recording paused successfully.') console.out.print('Recording paused successfully.')
@app.command('directory | d') @app.command('directory')
@app.command('d', hidden=True)
def directory( def directory(
ctx: typer.Context, ctx: typer.Context,
record_directory: Annotated[ record_directory: Annotated[
@ -132,7 +138,8 @@ def directory(
) )
@app.command('split | sp') @app.command('split')
@app.command('sp', hidden=True)
def split(ctx: typer.Context): def split(ctx: typer.Context):
"""Split the current recording.""" """Split the current recording."""
active, paused = _get_recording_status(ctx) active, paused = _get_recording_status(ctx)
@ -147,7 +154,8 @@ def split(ctx: typer.Context):
console.out.print('Recording split successfully.') console.out.print('Recording split successfully.')
@app.command('chapter | ch') @app.command('chapter')
@app.command('ch', hidden=True)
def chapter( def chapter(
ctx: typer.Context, ctx: typer.Context,
chapter_name: Annotated[ chapter_name: Annotated[

View File

@ -3,9 +3,8 @@
import typer import typer
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -13,7 +12,8 @@ def main():
"""Control profiles in OBS.""" """Control profiles in OBS."""
@app.command('start | s') @app.command('start')
@app.command('s', hidden=True)
def start(ctx: typer.Context): def start(ctx: typer.Context):
"""Start the replay buffer.""" """Start the replay buffer."""
resp = ctx.obj['obsws'].get_replay_buffer_status() resp = ctx.obj['obsws'].get_replay_buffer_status()
@ -25,7 +25,8 @@ def start(ctx: typer.Context):
console.out.print('Replay buffer started.') console.out.print('Replay buffer started.')
@app.command('stop | st') @app.command('stop')
@app.command('st', hidden=True)
def stop(ctx: typer.Context): def stop(ctx: typer.Context):
"""Stop the replay buffer.""" """Stop the replay buffer."""
resp = ctx.obj['obsws'].get_replay_buffer_status() resp = ctx.obj['obsws'].get_replay_buffer_status()
@ -37,7 +38,8 @@ def stop(ctx: typer.Context):
console.out.print('Replay buffer stopped.') console.out.print('Replay buffer stopped.')
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle(ctx: typer.Context): def toggle(ctx: typer.Context):
"""Toggle the replay buffer.""" """Toggle the replay buffer."""
resp = ctx.obj['obsws'].toggle_replay_buffer() resp = ctx.obj['obsws'].toggle_replay_buffer()
@ -47,7 +49,8 @@ def toggle(ctx: typer.Context):
console.out.print('Replay buffer is not active.') console.out.print('Replay buffer is not active.')
@app.command('status | ss') @app.command('status')
@app.command('ss', hidden=True)
def status(ctx: typer.Context): def status(ctx: typer.Context):
"""Get the status of the replay buffer.""" """Get the status of the replay buffer."""
resp = ctx.obj['obsws'].get_replay_buffer_status() resp = ctx.obj['obsws'].get_replay_buffer_status()
@ -57,7 +60,8 @@ def status(ctx: typer.Context):
console.out.print('Replay buffer is not active.') console.out.print('Replay buffer is not active.')
@app.command('save | sv') @app.command('save')
@app.command('sv', hidden=True)
def save(ctx: typer.Context): def save(ctx: typer.Context):
"""Save the replay buffer.""" """Save the replay buffer."""
ctx.obj['obsws'].save_replay_buffer() ctx.obj['obsws'].save_replay_buffer()

View File

@ -7,9 +7,8 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console, util, validate from obsws_cli import console, util, validate
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -17,7 +16,8 @@ def main():
"""Control OBS scenes.""" """Control OBS scenes."""
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_( def list_(
ctx: typer.Context, ctx: typer.Context,
uuid: Annotated[bool, typer.Option(help='Show UUIDs of scenes')] = False, uuid: Annotated[bool, typer.Option(help='Show UUIDs of scenes')] = False,
@ -66,7 +66,8 @@ def list_(
console.out.print(table) console.out.print(table)
@app.command('current | get') @app.command('current')
@app.command('get', hidden=True)
def current( def current(
ctx: typer.Context, ctx: typer.Context,
preview: Annotated[ preview: Annotated[
@ -90,7 +91,8 @@ def current(
) )
@app.command('switch | set') @app.command('switch')
@app.command('set', hidden=True)
def switch( def switch(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[

View File

@ -6,9 +6,8 @@ import typer
from rich.table import Table from rich.table import Table
from obsws_cli import console, validate from obsws_cli import console, validate
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -16,7 +15,8 @@ def main():
"""Control scene collections in OBS.""" """Control scene collections in OBS."""
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_(ctx: typer.Context): def list_(ctx: typer.Context):
"""List all scene collections.""" """List all scene collections."""
resp = ctx.obj['obsws'].get_scene_collection_list() resp = ctx.obj['obsws'].get_scene_collection_list()
@ -40,7 +40,8 @@ def list_(ctx: typer.Context):
console.out.print(table) console.out.print(table)
@app.command('current | get') @app.command('current')
@app.command('get', hidden=True)
def current(ctx: typer.Context): def current(ctx: typer.Context):
"""Get the current scene collection.""" """Get the current scene collection."""
resp = ctx.obj['obsws'].get_scene_collection_list() resp = ctx.obj['obsws'].get_scene_collection_list()
@ -49,7 +50,8 @@ def current(ctx: typer.Context):
) )
@app.command('switch | set') @app.command('switch')
@app.command('set', hidden=True)
def switch( def switch(
ctx: typer.Context, ctx: typer.Context,
scene_collection_name: Annotated[ scene_collection_name: Annotated[
@ -77,7 +79,8 @@ def switch(
) )
@app.command('create | new') @app.command('create')
@app.command('new', hidden=True)
def create( def create(
ctx: typer.Context, ctx: typer.Context,
scene_collection_name: Annotated[ scene_collection_name: Annotated[

View File

@ -6,9 +6,8 @@ import typer
from rich.table import Table from rich.table import Table
from obsws_cli import console, util, validate from obsws_cli import console, util, validate
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -16,7 +15,8 @@ def main():
"""Control items in OBS scenes.""" """Control items in OBS scenes."""
@app.command('list | ls') @app.command('list')
@app.command('ls', hidden=True)
def list_( def list_(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -186,7 +186,8 @@ def _get_scene_name_and_item_id(
return scene_name, scene_item_id return scene_name, scene_item_id
@app.command('show | sh') @app.command('show')
@app.command('sh', hidden=True)
def show( def show(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -228,7 +229,8 @@ def show(
) )
@app.command('hide | h') @app.command('hide')
@app.command('h', hidden=True)
def hide( def hide(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -269,7 +271,8 @@ def hide(
) )
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle( def toggle(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -330,7 +333,8 @@ def toggle(
) )
@app.command('visible | v') @app.command('visible')
@app.command('v', hidden=True)
def visible( def visible(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[
@ -374,7 +378,8 @@ def visible(
) )
@app.command('transform | t') @app.command('transform')
@app.command('t', hidden=True)
def transform( def transform(
ctx: typer.Context, ctx: typer.Context,
scene_name: Annotated[ scene_name: Annotated[

View File

@ -7,9 +7,8 @@ import obsws_python as obsws
import typer import typer
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -17,7 +16,8 @@ def main():
"""Take screenshots using OBS.""" """Take screenshots using OBS."""
@app.command('save | sv') @app.command('save')
@app.command('s', hidden=True)
def save( def save(
ctx: typer.Context, ctx: typer.Context,
source_name: Annotated[ source_name: Annotated[

View File

@ -7,9 +7,8 @@ from rich.table import Table
from rich.text import Text from rich.text import Text
from obsws_cli import console, util from obsws_cli import console, util
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -17,7 +16,8 @@ def main():
"""Manage OBS settings.""" """Manage OBS settings."""
@app.command('show | sh') @app.command('show')
@app.command('sh', hidden=True)
def show( def show(
ctx: typer.Context, ctx: typer.Context,
video: Annotated[ video: Annotated[
@ -136,7 +136,8 @@ def show(
console.out.print(profile_table) console.out.print(profile_table)
@app.command('profile | pr') @app.command('profile')
@app.command('pr', hidden=True)
def profile( def profile(
ctx: typer.Context, ctx: typer.Context,
category: Annotated[ category: Annotated[
@ -182,7 +183,8 @@ def profile(
) )
@app.command('stream-service | ss') @app.command('stream-service')
@app.command('ss', hidden=True)
def stream_service( def stream_service(
ctx: typer.Context, ctx: typer.Context,
type_: Annotated[ type_: Annotated[
@ -249,7 +251,8 @@ def stream_service(
console.out.print('Stream service settings updated.') console.out.print('Stream service settings updated.')
@app.command('video | vi') @app.command('video')
@app.command('vi', hidden=True)
def video( def video(
ctx: typer.Context, ctx: typer.Context,
base_width: Annotated[ base_width: Annotated[

View File

@ -3,9 +3,8 @@
import typer import typer
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -19,7 +18,8 @@ def _get_streaming_status(ctx: typer.Context) -> tuple:
return resp.output_active, resp.output_duration return resp.output_active, resp.output_duration
@app.command('start | s') @app.command('start')
@app.command('s', hidden=True)
def start(ctx: typer.Context): def start(ctx: typer.Context):
"""Start streaming.""" """Start streaming."""
active, _ = _get_streaming_status(ctx) active, _ = _get_streaming_status(ctx)
@ -31,7 +31,8 @@ def start(ctx: typer.Context):
console.out.print('Streaming started successfully.') console.out.print('Streaming started successfully.')
@app.command('stop | st') @app.command('stop')
@app.command('st', hidden=True)
def stop(ctx: typer.Context): def stop(ctx: typer.Context):
"""Stop streaming.""" """Stop streaming."""
active, _ = _get_streaming_status(ctx) active, _ = _get_streaming_status(ctx)
@ -43,7 +44,8 @@ def stop(ctx: typer.Context):
console.out.print('Streaming stopped successfully.') console.out.print('Streaming stopped successfully.')
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle(ctx: typer.Context): def toggle(ctx: typer.Context):
"""Toggle streaming.""" """Toggle streaming."""
resp = ctx.obj['obsws'].toggle_stream() resp = ctx.obj['obsws'].toggle_stream()
@ -53,7 +55,8 @@ def toggle(ctx: typer.Context):
console.out.print('Streaming stopped successfully.') console.out.print('Streaming stopped successfully.')
@app.command('status | ss') @app.command('status')
@app.command('ss', hidden=True)
def status(ctx: typer.Context): def status(ctx: typer.Context):
"""Get streaming status.""" """Get streaming status."""
active, duration = _get_streaming_status(ctx) active, duration = _get_streaming_status(ctx)

View File

@ -3,9 +3,8 @@
import typer import typer
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -13,21 +12,24 @@ def main():
"""Control studio mode in OBS.""" """Control studio mode in OBS."""
@app.command('enable | on') @app.command('enable')
@app.command('on', hidden=True)
def enable(ctx: typer.Context): def enable(ctx: typer.Context):
"""Enable studio mode.""" """Enable studio mode."""
ctx.obj['obsws'].set_studio_mode_enabled(True) ctx.obj['obsws'].set_studio_mode_enabled(True)
console.out.print('Studio mode has been enabled.') console.out.print('Studio mode has been enabled.')
@app.command('disable | off') @app.command('disable')
@app.command('off', hidden=True)
def disable(ctx: typer.Context): def disable(ctx: typer.Context):
"""Disable studio mode.""" """Disable studio mode."""
ctx.obj['obsws'].set_studio_mode_enabled(False) ctx.obj['obsws'].set_studio_mode_enabled(False)
console.out.print('Studio mode has been disabled.') console.out.print('Studio mode has been disabled.')
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle(ctx: typer.Context): def toggle(ctx: typer.Context):
"""Toggle studio mode.""" """Toggle studio mode."""
resp = ctx.obj['obsws'].get_studio_mode_enabled() resp = ctx.obj['obsws'].get_studio_mode_enabled()
@ -39,7 +41,8 @@ def toggle(ctx: typer.Context):
console.out.print('Studio mode is now enabled.') console.out.print('Studio mode is now enabled.')
@app.command('status | ss') @app.command('status')
@app.command('ss', hidden=True)
def status(ctx: typer.Context): def status(ctx: typer.Context):
"""Get the status of studio mode.""" """Get the status of studio mode."""
resp = ctx.obj['obsws'].get_studio_mode_enabled() resp = ctx.obj['obsws'].get_studio_mode_enabled()

View File

@ -5,9 +5,8 @@ from typing import Annotated, Optional
import typer import typer
from obsws_cli import console, validate from obsws_cli import console, validate
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -15,7 +14,8 @@ def main():
"""Control text inputs in OBS.""" """Control text inputs in OBS."""
@app.command('current | get') @app.command('current')
@app.command('get', hidden=True)
def current( def current(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[
@ -41,7 +41,8 @@ def current(
) )
@app.command('update | set') @app.command('update')
@app.command('set', hidden=True)
def update( def update(
ctx: typer.Context, ctx: typer.Context,
input_name: Annotated[ input_name: Annotated[

View File

@ -3,9 +3,8 @@
import typer import typer
from obsws_cli import console from obsws_cli import console
from obsws_cli.alias import SubTyperAliasGroup
app = typer.Typer(cls=SubTyperAliasGroup) app = typer.Typer()
@app.callback() @app.callback()
@ -13,21 +12,24 @@ def main():
"""Control virtual camera in OBS.""" """Control virtual camera in OBS."""
@app.command('start | s') @app.command('start')
@app.command('s', hidden=True)
def start(ctx: typer.Context): def start(ctx: typer.Context):
"""Start the virtual camera.""" """Start the virtual camera."""
ctx.obj['obsws'].start_virtual_cam() ctx.obj['obsws'].start_virtual_cam()
console.out.print('Virtual camera started.') console.out.print('Virtual camera started.')
@app.command('stop | p') @app.command('stop')
@app.command('p', hidden=True)
def stop(ctx: typer.Context): def stop(ctx: typer.Context):
"""Stop the virtual camera.""" """Stop the virtual camera."""
ctx.obj['obsws'].stop_virtual_cam() ctx.obj['obsws'].stop_virtual_cam()
console.out.print('Virtual camera stopped.') console.out.print('Virtual camera stopped.')
@app.command('toggle | tg') @app.command('toggle')
@app.command('tg', hidden=True)
def toggle(ctx: typer.Context): def toggle(ctx: typer.Context):
"""Toggle the virtual camera.""" """Toggle the virtual camera."""
resp = ctx.obj['obsws'].toggle_virtual_cam() resp = ctx.obj['obsws'].toggle_virtual_cam()
@ -37,7 +39,8 @@ def toggle(ctx: typer.Context):
console.out.print('Virtual camera is disabled.') console.out.print('Virtual camera is disabled.')
@app.command('status | ss') @app.command('status')
@app.command('ss', hidden=True)
def status(ctx: typer.Context): def status(ctx: typer.Context):
"""Get the status of the virtual camera.""" """Get the status of the virtual camera."""
resp = ctx.obj['obsws'].get_virtual_cam_status() resp = ctx.obj['obsws'].get_virtual_cam_status()

View File

@ -124,7 +124,7 @@ _envconfig = EnvConfig(
OBSWS_CLI_PORT=4455, OBSWS_CLI_PORT=4455,
OBSWS_CLI_PASSWORD='', OBSWS_CLI_PASSWORD='',
OBSWS_CLI_TIMEOUT=5, OBSWS_CLI_TIMEOUT=5,
OBSWS_CLI_DEBUG=False, OBSWS_CLI_LOGLEVEL='WARNING',
OBSWS_CLI_STYLE='disabled', OBSWS_CLI_STYLE='disabled',
OBSWS_CLI_STYLE_NO_BORDER=False, OBSWS_CLI_STYLE_NO_BORDER=False,
) )

View File

@ -35,6 +35,9 @@ obsws-cli = "obsws_cli:app"
[tool.hatch.version] [tool.hatch.version]
path = "obsws_cli/__about__.py" path = "obsws_cli/__about__.py"
[tool.hatch.env]
requires = ["hatch-dotenv"]
[tool.hatch.envs.default] [tool.hatch.envs.default]
dependencies = ["click-man>=0.5.1"] dependencies = ["click-man>=0.5.1"]
@ -45,6 +48,10 @@ man = "python man/generate.py --output=./man"
[tool.hatch.envs.hatch-test] [tool.hatch.envs.hatch-test]
randomize = true randomize = true
[tool.hatch.env.collectors.dotenv.hatch-test]
env-files = [".env", ".test.env"]
fail-on-missing = true
[tool.hatch.envs.types] [tool.hatch.envs.types]
extra-dependencies = ["mypy>=1.0.0"] extra-dependencies = ["mypy>=1.0.0"]
[tool.hatch.envs.types.scripts] [tool.hatch.envs.types.scripts]

View File

@ -4,7 +4,6 @@ import os
import time import time
import obsws_python as obsws import obsws_python as obsws
from dotenv import find_dotenv, load_dotenv
def pytest_configure(config): def pytest_configure(config):
@ -34,14 +33,12 @@ def pytest_sessionstart(session):
) )
print(' '.join(out)) print(' '.join(out))
load_dotenv(find_dotenv('.test.env'))
session.obsws.set_stream_service_settings( session.obsws.set_stream_service_settings(
'rtmp_common', 'rtmp_common',
{ {
'service': 'Twitch', 'service': 'Twitch',
'server': 'auto', 'server': 'auto',
'key': os.environ['OBS_STREAM_KEY'], 'key': os.environ['OBSWS_CLI_TESTS_STREAM_KEY'],
}, },
) )
@ -63,7 +60,7 @@ def pytest_sessionstart(session):
'linux': 'pulse_output_capture', 'linux': 'pulse_output_capture',
'darwin': 'coreaudio_output_capture', 'darwin': 'coreaudio_output_capture',
} }
platform = os.environ.get('OBS_TESTS_PLATFORM', os.uname().sysname.lower()) platform = os.environ['OBSWS_CLI_TESTS_PLATFORM']
try: try:
session.obsws.create_input( session.obsws.create_input(
sceneName='pytest_scene', sceneName='pytest_scene',

View File

@ -9,7 +9,7 @@ from obsws_cli.app import app
runner = CliRunner() runner = CliRunner()
if os.environ.get('OBS_TESTS_SKIP_GROUP_TESTS'): if os.environ.get('OBSWS_CLI_TESTS_SKIP_GROUP_TESTS'):
pytest.skip( pytest.skip(
'Skipping group tests as per environment variable', allow_module_level=True 'Skipping group tests as per environment variable', allow_module_level=True
) )