Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,13 @@ Async Python library for controlling Dimplex, Faber, and Real Flame fireplaces v

## Installation

```bash
pip install flameconnect
```

Or with [uv](https://docs.astral.sh/uv/):

```bash
uv add flameconnect
```

To include the interactive terminal dashboard (TUI):

```bash
pip install flameconnect[tui]
# or
uv add flameconnect[tui]
```

Expand Down Expand Up @@ -156,7 +148,7 @@ flameconnect tui
[Textual](https://textual.textualize.io/). It requires the TUI extra:

```bash
pip install flameconnect[tui]
uv add flameconnect[tui]
```

The dashboard displays real-time fireplace status and auto-refreshes every 10
Expand Down
3 changes: 1 addition & 2 deletions src/flameconnect/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,8 +816,7 @@ async def cmd_tui(*, verbose: bool = False) -> None:
from flameconnect.tui import run_tui
except ImportError:
print("The TUI requires the 'tui' extra. Install with:")
print(" pip install flameconnect[tui]")
print(" # or: uv add flameconnect[tui]")
print(" uv add flameconnect[tui]")
sys.exit(1)
await run_tui(verbose=verbose)

Expand Down
Loading