print list as rich table

swap out typer.echo for rich consoles

add filter status command

add util function

minor bump
This commit is contained in:
2025-05-23 21:29:18 +01:00
parent eaa66f0bd5
commit 37dbbdf4e2
5 changed files with 70 additions and 16 deletions

6
obsws_cli/util.py Normal file
View File

@@ -0,0 +1,6 @@
"""module contains utility functions for the obsws_cli package."""
def snakecase_to_titlecase(snake_str):
"""Convert a snake_case string to a title case string."""
return snake_str.replace('_', ' ').title()