aiogrilla 0.2.0__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 (45) hide show
  1. aiogrilla-0.2.0/.github/CODEOWNERS +1 -0
  2. aiogrilla-0.2.0/.github/ISSUE_TEMPLATE/bug_report.yml +51 -0
  3. aiogrilla-0.2.0/.github/ISSUE_TEMPLATE/config.yml +1 -0
  4. aiogrilla-0.2.0/.github/ISSUE_TEMPLATE/feature_request.yml +17 -0
  5. aiogrilla-0.2.0/.github/PULL_REQUEST_TEMPLATE.md +11 -0
  6. aiogrilla-0.2.0/.github/dependabot.yml +10 -0
  7. aiogrilla-0.2.0/.github/workflows/ci.yml +31 -0
  8. aiogrilla-0.2.0/.github/workflows/publish.yml +31 -0
  9. aiogrilla-0.2.0/.github/workflows/release-please.yml +16 -0
  10. aiogrilla-0.2.0/.gitignore +10 -0
  11. aiogrilla-0.2.0/.pre-commit-config.yaml +15 -0
  12. aiogrilla-0.2.0/.release-please-manifest.json +3 -0
  13. aiogrilla-0.2.0/AGENTS.md +66 -0
  14. aiogrilla-0.2.0/CHANGELOG.md +20 -0
  15. aiogrilla-0.2.0/CLAUDE.md +7 -0
  16. aiogrilla-0.2.0/CODE_OF_CONDUCT.md +11 -0
  17. aiogrilla-0.2.0/CONTRIBUTING.md +85 -0
  18. aiogrilla-0.2.0/LICENSE +201 -0
  19. aiogrilla-0.2.0/NOTICE +6 -0
  20. aiogrilla-0.2.0/PKG-INFO +139 -0
  21. aiogrilla-0.2.0/README.md +103 -0
  22. aiogrilla-0.2.0/RELEASING.md +20 -0
  23. aiogrilla-0.2.0/SECURITY.md +37 -0
  24. aiogrilla-0.2.0/examples/dump_state.py +30 -0
  25. aiogrilla-0.2.0/pyproject.toml +65 -0
  26. aiogrilla-0.2.0/release-please-config.json +11 -0
  27. aiogrilla-0.2.0/src/aiogrilla/__init__.py +26 -0
  28. aiogrilla-0.2.0/src/aiogrilla/auth.py +109 -0
  29. aiogrilla-0.2.0/src/aiogrilla/client.py +286 -0
  30. aiogrilla-0.2.0/src/aiogrilla/const.py +49 -0
  31. aiogrilla-0.2.0/src/aiogrilla/discovery.py +49 -0
  32. aiogrilla-0.2.0/src/aiogrilla/exceptions.py +11 -0
  33. aiogrilla-0.2.0/src/aiogrilla/models.py +177 -0
  34. aiogrilla-0.2.0/src/aiogrilla/mqtt.py +237 -0
  35. aiogrilla-0.2.0/src/aiogrilla/py.typed +0 -0
  36. aiogrilla-0.2.0/tests/fixtures/grill_state_celsius.json +6 -0
  37. aiogrilla-0.2.0/tests/fixtures/grill_state_probe1_unplugged.json +6 -0
  38. aiogrilla-0.2.0/tests/fixtures/grill_state_running.json +7 -0
  39. aiogrilla-0.2.0/tests/test_auth.py +119 -0
  40. aiogrilla-0.2.0/tests/test_client.py +629 -0
  41. aiogrilla-0.2.0/tests/test_discovery.py +97 -0
  42. aiogrilla-0.2.0/tests/test_models.py +189 -0
  43. aiogrilla-0.2.0/tests/test_mqtt_bridge.py +196 -0
  44. aiogrilla-0.2.0/tests/test_mqtt_stream.py +199 -0
  45. aiogrilla-0.2.0/tests/test_names.py +21 -0
@@ -0,0 +1 @@
1
+ * @zwrose
@@ -0,0 +1,51 @@
1
+ name: Bug report
2
+ description: Report a problem with aiogrilla
3
+ labels: ["bug"]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Thanks for reporting. Please remove any account identifiers or tokens
9
+ from logs and payload samples before posting.
10
+ - type: input
11
+ id: version
12
+ attributes:
13
+ label: aiogrilla version
14
+ placeholder: "0.1.1"
15
+ validations:
16
+ required: true
17
+ - type: input
18
+ id: python
19
+ attributes:
20
+ label: Python version
21
+ placeholder: "3.12"
22
+ validations:
23
+ required: true
24
+ - type: input
25
+ id: model
26
+ attributes:
27
+ label: Grill model (if known)
28
+ placeholder: "Silverbac 2.0 XL"
29
+ validations:
30
+ required: false
31
+ - type: textarea
32
+ id: what
33
+ attributes:
34
+ label: What happened?
35
+ description: What did you expect, and what happened instead?
36
+ validations:
37
+ required: true
38
+ - type: textarea
39
+ id: repro
40
+ attributes:
41
+ label: Steps to reproduce
42
+ validations:
43
+ required: true
44
+ - type: textarea
45
+ id: logs
46
+ attributes:
47
+ label: Logs or payload sample (redacted)
48
+ description: Remove account identifiers and tokens first.
49
+ render: text
50
+ validations:
51
+ required: false
@@ -0,0 +1 @@
1
+ blank_issues_enabled: false
@@ -0,0 +1,17 @@
1
+ name: Feature request
2
+ description: Suggest an idea or improvement
3
+ labels: ["enhancement"]
4
+ body:
5
+ - type: textarea
6
+ id: problem
7
+ attributes:
8
+ label: Problem or use case
9
+ description: What are you trying to do?
10
+ validations:
11
+ required: true
12
+ - type: textarea
13
+ id: proposal
14
+ attributes:
15
+ label: Proposed solution
16
+ validations:
17
+ required: false
@@ -0,0 +1,11 @@
1
+ ## Summary
2
+
3
+ <!-- What does this change, and why? -->
4
+
5
+ ## Checklist
6
+
7
+ - [ ] The PR title is a [Conventional Commit](https://www.conventionalcommits.org/)
8
+ (`feat:`, `fix:`, `docs:`, `chore:`, …) — it becomes the squash-merge commit
9
+ - [ ] `ruff check .`, `ruff format --check .`, `pyright`, and `pytest -q` all pass
10
+ - [ ] Tests added or updated for behavior changes
11
+ - [ ] No account identifiers or tokens in code, tests, or logs
@@ -0,0 +1,10 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ - package-ecosystem: "pip"
8
+ directory: "/"
9
+ schedule:
10
+ interval: "weekly"
@@ -0,0 +1,31 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
+ branches: [main]
7
+ permissions: {}
8
+ jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ python-version: ["3.12", "3.13"]
15
+ steps:
16
+ - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
17
+ - uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
18
+ - run: uv python install ${{ matrix.python-version }}
19
+ - run: uv venv --python ${{ matrix.python-version }}
20
+ - run: uv pip install -e ".[dev]"
21
+ - run: .venv/bin/ruff check .
22
+ - run: .venv/bin/ruff format --check .
23
+ - run: .venv/bin/pyright
24
+ - run: .venv/bin/pytest -q
25
+ secrets:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
29
+ with:
30
+ fetch-depth: 0
31
+ - uses: gitleaks/gitleaks-action@ff98106e4c7b2bc287b24eaf42907196329070c7 # v2
@@ -0,0 +1,31 @@
1
+ name: Publish to PyPI
2
+ on:
3
+ release:
4
+ types: [published]
5
+ workflow_dispatch:
6
+ permissions: {}
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
12
+ - uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
13
+ - run: uv build
14
+ - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
15
+ with:
16
+ name: dist
17
+ path: dist/
18
+ publish:
19
+ needs: build
20
+ runs-on: ubuntu-latest
21
+ environment:
22
+ name: pypi
23
+ url: https://pypi.org/p/aiogrilla
24
+ permissions:
25
+ id-token: write
26
+ steps:
27
+ - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
28
+ with:
29
+ name: dist
30
+ path: dist/
31
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,16 @@
1
+ name: release-please
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ permissions: {}
6
+ jobs:
7
+ release-please:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ pull-requests: write
12
+ steps:
13
+ - uses: googleapis/release-please-action@5c625bfb5d1ff62eadeeb3772007f7f66fdcf071 # v4
14
+ with:
15
+ config-file: release-please-config.json
16
+ manifest-file: .release-please-manifest.json
@@ -0,0 +1,10 @@
1
+ .venv/
2
+ __pycache__/
3
+ *.pyc
4
+ dist/
5
+ .pytest_cache/
6
+ .ruff_cache/
7
+ .DS_Store
8
+
9
+ # Local agent/review tooling state (Claude Code, review-crew) — never published
10
+ .claude/
@@ -0,0 +1,15 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.15.16
4
+ hooks:
5
+ - id: ruff-check
6
+ args: [--fix]
7
+ - id: ruff-format
8
+ - repo: https://github.com/pre-commit/pre-commit-hooks
9
+ rev: v6.0.0
10
+ hooks:
11
+ - id: trailing-whitespace
12
+ - id: end-of-file-fixer
13
+ - id: check-yaml
14
+ - id: check-toml
15
+ - id: check-added-large-files
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.2.0"
3
+ }
@@ -0,0 +1,66 @@
1
+ # AGENTS.md — AI assistant guidance for aiogrilla
2
+
3
+ ## Project purpose
4
+
5
+ Unofficial async Python client for Grilla Grills Alpha Connect smokers (read-only,
6
+ v1 scope: live temperatures, cook status, cook timer).
7
+
8
+ ## Layout
9
+
10
+ ```
11
+ src/aiogrilla/
12
+ const.py — backend URLs, pool IDs, and other client-side constants
13
+ models.py — dataclasses (Grill, GrillState) and enums (Mode, CookMode, TemperatureUnit)
14
+ auth.py — AWS Cognito authentication and IAM credential exchange
15
+ discovery.py — HTTP call to list grills for the authenticated account
16
+ mqtt.py — AWS IoT / MQTT streaming (IotStream)
17
+ client.py — GrillaClient: public orchestration layer
18
+ exceptions.py — GrillaError, GrillaAuthError, GrillaConnectionError
19
+
20
+ tests/
21
+ fixtures/ — JSON payload samples used by unit tests
22
+ test_*.py — unit + integration tests (no live network)
23
+ ```
24
+
25
+ ## Hard boundary
26
+
27
+ **This library MUST NEVER import `homeassistant`.** It is a standalone async
28
+ library. Any Home Assistant integration should live in a separate package that
29
+ depends on aiogrilla, not the other way around.
30
+
31
+ ## Running checks
32
+
33
+ ```bash
34
+ .venv/bin/pytest -q # run the test suite
35
+ .venv/bin/ruff check . # lint
36
+ .venv/bin/pyright # type-check
37
+ ```
38
+
39
+ All three must pass cleanly before committing or opening a PR.
40
+
41
+ ## Secrets and constants
42
+
43
+ Constants in `const.py` (User Pool IDs, IoT endpoints, client IDs) are
44
+ client-side, non-user-specific constants. They are not personal secrets and may
45
+ be committed. Real Grilla account
46
+ credentials (email, password, refresh tokens, IAM keys) are secrets and must
47
+ **never** be committed, logged, or included in test fixtures.
48
+
49
+ ## TDD expectation
50
+
51
+ Write tests before or alongside new code. New parsing logic, auth flows, or
52
+ protocol handling should be covered by unit tests using fixture payloads or
53
+ mocks — no live network calls in the test suite.
54
+
55
+ ## Commit messages — Conventional Commits (required)
56
+
57
+ Every commit on `main` and every squash-merged PR title MUST be a
58
+ [Conventional Commit](https://www.conventionalcommits.org/). This is load-bearing:
59
+ `release-please` derives the version bump and `CHANGELOG.md` from these messages.
60
+
61
+ - `feat:` → minor bump · `fix:`/`perf:` → patch bump · `docs:`/`refactor:`/`test:`/`chore:`/`ci:`/`build:` → no release
62
+ - `feat!:` or a `BREAKING CHANGE:` footer → major bump (minor while pre-1.0)
63
+ - Examples: `feat: expose probe 2 target temperature`, `fix(mqtt): reconnect after credential refresh`
64
+
65
+ See `CONTRIBUTING.md` for the full table. Do not write non-conventional commit
66
+ messages in this repo.
@@ -0,0 +1,20 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project are documented in this file.
4
+
5
+ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+ From the first release onward, this file is maintained automatically by
7
+ [release-please](https://github.com/googleapis/release-please) from
8
+ [Conventional Commits](https://www.conventionalcommits.org/) — please do not edit
9
+ released sections by hand.
10
+
11
+ ## [0.2.0](https://github.com/zwrose/aiogrilla/compare/v0.1.1...v0.2.0) (2026-06-08)
12
+
13
+
14
+ ### Features
15
+
16
+ * initial release of aiogrilla ([48a2219](https://github.com/zwrose/aiogrilla/commit/48a2219735cc2d646cc02601fb673c42bd358af8))
17
+
18
+ ## [Unreleased]
19
+
20
+ - Initial public release.
@@ -0,0 +1,7 @@
1
+ @AGENTS.md
2
+
3
+ ## Claude-specific notes
4
+ - Run the test suite with `.venv/bin/pytest -q` before committing.
5
+ - Lint/type: `.venv/bin/ruff check .`, `.venv/bin/ruff format --check .`, and `.venv/bin/pyright`.
6
+ - Never read or commit real Grilla account credentials; backend IDs in `const.py` are client-side app constants, not secrets.
7
+ - **Commit messages MUST be Conventional Commits** (`feat:`, `fix:`, `docs:`, `chore:`, `feat!:`/`BREAKING CHANGE:` …); release-please derives versions and the changelog from them. See `AGENTS.md` / `CONTRIBUTING.md`.
@@ -0,0 +1,11 @@
1
+ # Code of Conduct
2
+
3
+ This project has adopted the **Contributor Covenant**, version 2.1, as its code of
4
+ conduct. Everyone participating in the project is expected to follow it.
5
+
6
+ The full text is published at:
7
+ https://www.contributor-covenant.org/version/2/1/code_of_conduct/
8
+
9
+ To report a concern about a participant's conduct, please open a confidential
10
+ report via this repository's **Security → Report a vulnerability** channel, which
11
+ starts a private thread with the maintainer. Reports will be handled discreetly.
@@ -0,0 +1,85 @@
1
+ # Contributing to aiogrilla
2
+
3
+ Thanks for your interest in improving aiogrilla! This is a small, focused
4
+ async client library. Contributions of all sizes are welcome.
5
+
6
+ ## Development setup
7
+
8
+ ```bash
9
+ git clone https://github.com/zwrose/aiogrilla.git
10
+ cd aiogrilla
11
+ uv venv
12
+ uv pip install -e ".[dev]"
13
+ ```
14
+
15
+ ## Checks that must pass
16
+
17
+ All four gates run in CI and must pass locally before you open a pull request:
18
+
19
+ ```bash
20
+ ruff check .
21
+ ruff format --check .
22
+ pyright
23
+ pytest -q
24
+ ```
25
+
26
+ Installing the pre-commit hooks runs the formatters and linters automatically:
27
+
28
+ ```bash
29
+ pre-commit install
30
+ ```
31
+
32
+ ## Tests
33
+
34
+ Write tests alongside new code. New parsing, auth, or protocol handling should be
35
+ covered by unit tests using fixture payloads or mocks — the suite never makes
36
+ live network calls. If you report a parsing problem, please include a **redacted**
37
+ payload sample (no account identifiers or tokens).
38
+
39
+ ## Commit messages — Conventional Commits (required)
40
+
41
+ This repository uses [Conventional Commits](https://www.conventionalcommits.org/).
42
+ **This is required, not stylistic:** releases and the `CHANGELOG.md` are generated
43
+ automatically by [release-please](https://github.com/googleapis/release-please)
44
+ from commit messages. A commit that does not follow the format will not be
45
+ reflected correctly in the changelog or version bump.
46
+
47
+ Format:
48
+
49
+ ```
50
+ type(optional-scope): short summary
51
+ ```
52
+
53
+ Common types and their release effect:
54
+
55
+ | Type | Use for | Version effect |
56
+ |------|---------|----------------|
57
+ | `feat:` | a new capability | minor bump |
58
+ | `fix:` | a bug fix | patch bump |
59
+ | `docs:` | documentation only | none |
60
+ | `refactor:` | non-behavioral code change | none |
61
+ | `test:` | tests only | none |
62
+ | `chore:` / `ci:` / `build:` | tooling, CI, packaging | none |
63
+ | `perf:` | performance change | patch bump |
64
+
65
+ A `!` after the type (e.g. `feat!:`) or a `BREAKING CHANGE:` footer marks a
66
+ breaking change (major bump; while pre-1.0, treated as a minor bump).
67
+
68
+ Examples:
69
+
70
+ ```
71
+ feat: expose probe 2 target temperature
72
+ fix(mqtt): rebuild the stream after a credential refresh
73
+ docs: clarify the install steps
74
+ chore: bump ruff to 0.6
75
+ ```
76
+
77
+ If you open a PR with multiple commits, the **PR title** must also be a valid
78
+ Conventional Commit, because PRs are squash-merged using the title.
79
+
80
+ ## Pull requests
81
+
82
+ - Keep changes focused; one logical change per PR.
83
+ - Make sure the four checks above pass.
84
+ - Update or add tests for behavior changes.
85
+ - The maintainer reviews and merges; thanks for your patience.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on your own behalf and on your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
aiogrilla-0.2.0/NOTICE ADDED
@@ -0,0 +1,6 @@
1
+ aiogrilla
2
+ Copyright 2026 zwrose
3
+
4
+ This product includes software developed for interoperability with Grilla Grills
5
+ Alpha Connect devices. Not affiliated with or endorsed by Grilla Grills / Fahrenheit
6
+ Technologies, Inc. "Grilla" is used nominatively to identify the compatible hardware.