matebot 0.2.0__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. {matebot-0.2.0 → matebot-0.2.1}/AGENTS.md +1 -1
  2. {matebot-0.2.0 → matebot-0.2.1}/PKG-INFO +5 -5
  3. {matebot-0.2.0 → matebot-0.2.1}/README.md +4 -4
  4. {matebot-0.2.0 → matebot-0.2.1}/flake.nix +1 -1
  5. {matebot-0.2.0 → matebot-0.2.1}/pyproject.toml +1 -1
  6. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/__init__.py +1 -1
  7. {matebot-0.2.0 → matebot-0.2.1}/.github/workflows/ci.yml +0 -0
  8. {matebot-0.2.0 → matebot-0.2.1}/.github/workflows/docker.yml +0 -0
  9. {matebot-0.2.0 → matebot-0.2.1}/.github/workflows/release.yml +0 -0
  10. {matebot-0.2.0 → matebot-0.2.1}/.gitignore +0 -0
  11. {matebot-0.2.0 → matebot-0.2.1}/CLAUDE.md +0 -0
  12. {matebot-0.2.0 → matebot-0.2.1}/Dockerfile +0 -0
  13. {matebot-0.2.0 → matebot-0.2.1}/LICENSE +0 -0
  14. {matebot-0.2.0 → matebot-0.2.1}/docker-compose.example.yml +0 -0
  15. {matebot-0.2.0 → matebot-0.2.1}/docs/screenshots/journal-detail.png +0 -0
  16. {matebot-0.2.0 → matebot-0.2.1}/docs/screenshots/journal-list.png +0 -0
  17. {matebot-0.2.0 → matebot-0.2.1}/docs/screenshots/telegram-chat.png +0 -0
  18. {matebot-0.2.0 → matebot-0.2.1}/flake.lock +0 -0
  19. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/bags.py +0 -0
  20. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/cli.py +0 -0
  21. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/commands.py +0 -0
  22. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/config.py +0 -0
  23. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/conversation.py +0 -0
  24. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/digest.py +0 -0
  25. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/hints.py +0 -0
  26. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/machine.py +0 -0
  27. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/messengers/__init__.py +0 -0
  28. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/messengers/base.py +0 -0
  29. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/messengers/discord.py +0 -0
  30. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/messengers/telegram.py +0 -0
  31. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/plot.py +0 -0
  32. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/sitegen.py +0 -0
  33. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/slog.py +0 -0
  34. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/state.py +0 -0
  35. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/sync.py +0 -0
  36. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/watcher.py +0 -0
  37. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/web/app.js +0 -0
  38. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/web/index.html +0 -0
  39. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/web/style.css +0 -0
  40. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/web/vendor/chart.umd.js +0 -0
  41. {matebot-0.2.0 → matebot-0.2.1}/src/matebot/web/vendor/chartjs-plugin-annotation.min.js +0 -0
  42. {matebot-0.2.0 → matebot-0.2.1}/tests/fixtures/000004.slog +0 -0
  43. {matebot-0.2.0 → matebot-0.2.1}/tests/fixtures/status_frames.jsonl +0 -0
  44. {matebot-0.2.0 → matebot-0.2.1}/tests/test_bags.py +0 -0
  45. {matebot-0.2.0 → matebot-0.2.1}/tests/test_cleaning.py +0 -0
  46. {matebot-0.2.0 → matebot-0.2.1}/tests/test_commands.py +0 -0
  47. {matebot-0.2.0 → matebot-0.2.1}/tests/test_conversation.py +0 -0
  48. {matebot-0.2.0 → matebot-0.2.1}/tests/test_digest.py +0 -0
  49. {matebot-0.2.0 → matebot-0.2.1}/tests/test_hints.py +0 -0
  50. {matebot-0.2.0 → matebot-0.2.1}/tests/test_plot.py +0 -0
  51. {matebot-0.2.0 → matebot-0.2.1}/tests/test_sitegen.py +0 -0
  52. {matebot-0.2.0 → matebot-0.2.1}/tests/test_slog.py +0 -0
  53. {matebot-0.2.0 → matebot-0.2.1}/tests/test_sync_retry.py +0 -0
  54. {matebot-0.2.0 → matebot-0.2.1}/tests/test_watcher.py +0 -0
@@ -23,7 +23,7 @@ The decision tree:
23
23
  - Most users → **Docker**: copy `docker-compose.example.yml`, fill in env
24
24
  vars, `docker compose up -d`. Image: `ghcr.io/alexnly/matebot:latest`
25
25
  (multi-arch, Raspberry Pi works).
26
- - Python users → `pip install "matebot[telegram] @ git+https://github.com/AlexNly/MATEbot"`,
26
+ - Python users → `pipx install "matebot[telegram]"` (or plain pip),
27
27
  then `matebot run` (systemd unit or `screen` for persistence).
28
28
  - NixOS users → flake input + `services.matebot` module (see README).
29
29
  3. **Telegram bot** (the fiddly part for novices — walk them through it):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matebot
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: The proactive companion for GaggiMate espresso machines: post-shot logging bot, .slog decoder, shot-journal site generator
5
5
  Project-URL: Homepage, https://github.com/AlexNly/matebot
6
6
  Project-URL: Issues, https://github.com/AlexNly/matebot/issues
@@ -48,7 +48,7 @@ straight back into GaggiMate's own Shot Notes, exactly as if you'd typed them
48
48
  into the web UI.
49
49
 
50
50
  <p align="center">
51
- <img src="docs/screenshots/telegram-chat.png" width="420" alt="matebot asking for a shot rating on Telegram right after the shot finished">
51
+ <img src="https://raw.githubusercontent.com/AlexNly/MATEbot/main/docs/screenshots/telegram-chat.png" width="420" alt="matebot asking for a shot rating on Telegram right after the shot finished">
52
52
  </p>
53
53
 
54
54
  ## What it does
@@ -77,8 +77,8 @@ the familiar combined pressure/flow/temperature chart, phase markers, ratings
77
77
  and notes.
78
78
 
79
79
  <p align="center">
80
- <img src="docs/screenshots/journal-list.png" width="49%" alt="Shot journal list with ratings, ratios and peak pressure">
81
- <img src="docs/screenshots/journal-detail.png" width="49%" alt="Per-shot detail with combined pressure/flow/temperature chart">
80
+ <img src="https://raw.githubusercontent.com/AlexNly/MATEbot/main/docs/screenshots/journal-list.png" width="49%" alt="Shot journal list with ratings, ratios and peak pressure">
81
+ <img src="https://raw.githubusercontent.com/AlexNly/MATEbot/main/docs/screenshots/journal-detail.png" width="49%" alt="Per-shot detail with combined pressure/flow/temperature chart">
82
82
  </p>
83
83
 
84
84
  ## Install
@@ -101,7 +101,7 @@ A Pi Zero 2 W and a USB charger is the whole data center.
101
101
  ### pip
102
102
 
103
103
  ```bash
104
- pip install "matebot[telegram] @ git+https://github.com/AlexNly/matebot"
104
+ pipx install "matebot[telegram]" # or: pip install "matebot[telegram]"
105
105
  matebot run
106
106
  ```
107
107
 
@@ -14,7 +14,7 @@ straight back into GaggiMate's own Shot Notes, exactly as if you'd typed them
14
14
  into the web UI.
15
15
 
16
16
  <p align="center">
17
- <img src="docs/screenshots/telegram-chat.png" width="420" alt="matebot asking for a shot rating on Telegram right after the shot finished">
17
+ <img src="https://raw.githubusercontent.com/AlexNly/MATEbot/main/docs/screenshots/telegram-chat.png" width="420" alt="matebot asking for a shot rating on Telegram right after the shot finished">
18
18
  </p>
19
19
 
20
20
  ## What it does
@@ -43,8 +43,8 @@ the familiar combined pressure/flow/temperature chart, phase markers, ratings
43
43
  and notes.
44
44
 
45
45
  <p align="center">
46
- <img src="docs/screenshots/journal-list.png" width="49%" alt="Shot journal list with ratings, ratios and peak pressure">
47
- <img src="docs/screenshots/journal-detail.png" width="49%" alt="Per-shot detail with combined pressure/flow/temperature chart">
46
+ <img src="https://raw.githubusercontent.com/AlexNly/MATEbot/main/docs/screenshots/journal-list.png" width="49%" alt="Shot journal list with ratings, ratios and peak pressure">
47
+ <img src="https://raw.githubusercontent.com/AlexNly/MATEbot/main/docs/screenshots/journal-detail.png" width="49%" alt="Per-shot detail with combined pressure/flow/temperature chart">
48
48
  </p>
49
49
 
50
50
  ## Install
@@ -67,7 +67,7 @@ A Pi Zero 2 W and a USB charger is the whole data center.
67
67
  ### pip
68
68
 
69
69
  ```bash
70
- pip install "matebot[telegram] @ git+https://github.com/AlexNly/matebot"
70
+ pipx install "matebot[telegram]" # or: pip install "matebot[telegram]"
71
71
  matebot run
72
72
  ```
73
73
 
@@ -13,7 +13,7 @@
13
13
  default = matebot;
14
14
  matebot = pkgs.python3Packages.buildPythonApplication {
15
15
  pname = "matebot";
16
- version = "0.2.0";
16
+ version = "0.2.1";
17
17
  pyproject = true;
18
18
  src = self;
19
19
  build-system = [ pkgs.python3Packages.hatchling ];
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "matebot"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "The proactive companion for GaggiMate espresso machines: post-shot logging bot, .slog decoder, shot-journal site generator"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,3 +1,3 @@
1
1
  """matebot — the proactive companion for GaggiMate espresso machines."""
2
2
 
3
- __version__ = "0.2.0"
3
+ __version__ = "0.2.1"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes