diff --git a/README.md b/README.md index 80e9aec..617f15d 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,14 @@ -# ๐Ÿ™ Tenta Python Client +# Tenta Python Client -This is a Python client library for [Tenta](https//github.com/iterize/tenta), a sensor network management tool. This library uses [Paho MQTT](https://github.com/eclipse/paho.mqtt.python) to communicate with a Tenta server connected to the same broker. The library provides type-safe interfaces to create an MQTT client, send out messages (logs, measurements, and acknowledgements) to the server and receive parameters (configuration messages) from the server. +This is a Python client library for [Tenta](https://github.com/iterize/tenta), a sensor network management tool. This library uses [Paho MQTT](https://github.com/eclipse/paho.mqtt.python) to communicate with a Tenta server connected to the same broker. The library provides type-safe interfaces to create an MQTT client, send messages (logs, measurements, and acknowledgments) to the server, and receive parameters (configuration messages) from the server. -Please contact [Moritz Makowski](moritz.makowski@tum.de) if you have any questions or feedback that goes beyong the scope of a GitHub issue. - -The documentation for this client library can be found at [tenta-python-client.onrender.com](https://tenta-python-client.onrender.com). +Please contact [Moritz Makowski](mailto:moritz.makowski@tum.de) if you have any questions or feedback that goes beyond the scope of a GitHub issue. The documentation for this client library is hosted at [tenta-python-client.onrender.com](https://tenta-python-client.onrender.com).
## Usage -1. Install it with Pip or [Poetry](https://github.com/python-poetry/poetry) +Install it with Pip or [Poetry](https://github.com/python-poetry/poetry): ```bash pip install tenta @@ -18,7 +16,7 @@ pip install tenta poetry add tenta ``` -2. Start using it +Import and use it in your project: ```python import tenta @@ -62,20 +60,18 @@ config_message: typing.Optional[ tenta_client.teardown() ``` -1. Read the [documentation](https://tenta-python-client.onrender.com) to learn about all the client features -
## About -**Why does this client exist?** The Tenta specification of how sensor should publish their data is very concise. Still in order to actually use Tenta in a project, one needs to write code that sends out these messages via an Python MQTT library, like Paho. This is not that much code, but need to be implemented, documented and tested in every single Project that wants to use Tenta. Hence, this client library is fully tested, documented and makes onboarding to Tenta significantly easier. +**Why does this client exist?** The Tenta specification of how a sensor should publish its data is simple, but to actually use Tenta in a project, one needs to write code that sends out these messages via a Python MQTT library, like Paho. This implementation code is relatively simple but needs to be written, documented, and tested in every single project that wants to use Tenta. This client library is thoroughly tested and documented. Hence, it makes onboarding to Tenta significantly easier. **Compatibility:** Client library version `0.X.*` will be compatible with the Tenta specification `0.X.*`. Client library versions `Y.*.*` will be compatible with Tenta specification `Y.*.*`. -**Adhering to semantic versioning:** The same function calls will produce the same MQTT messages within non-breaking releases, i.e. the function call `tenta_client.function(args)` will produce the same MQTT messages in library versions `0.1.0` and `0.1.3` even if the Tenta specification provides a new feature in `0.1.3`. New non-breaking features in Tenta will alway be opt-in, i.e. `tenta_client.function(args, enable_new_feature=True)ยด will opt-into that new feature. This way, the behaviour of sensors does not change with the same code even if they upgrade to non-breaking client library releases (automatically). +**Adhering to semantic versioning:** The same function calls will produce the same MQTT messages within non-breaking releases, i.e., the function call `tenta_client.function(args)` will produce the same MQTT messages in library versions `0.1.0` and `0.1.3` even if the Tenta specification provides a new feature in `0.1.3`. New non-breaking features in Tenta will always be opt-in, i.e., `tenta_client.function(args, enable_new_feature=True)` will opt into that new feature. This way, the behavior of sensors does not change with the same code even if they upgrade to non-breaking client library releases (automatically). **Open-Source:** Issues and Pull Requests are welcome! Every PR undergoes a review process to ensure quality and semantic versioning. -**Testing:** The library is statically typed and is strictly checked using [Mypy](https://github.com/python/mypy). The tests cover publishing all message types, receiving configuration messages and connecting to the MQTT broker with and without TLS encryption with valid and invalid connection details. The tests are run for all supported Python versions (3.8, 3.9, 3.10, 3.11). +**Testing:** The library is statically typed and is strictly checked using [Mypy](https://github.com/python/mypy). The tests cover publishing all message types, receiving configuration messages, and connecting to the MQTT broker with and without TLS encryption with valid and invalid connection details. The tests run for all supported Python versions (3.8, 3.9, 3.10, 3.11). **Documentation:** The documentation is built using [Nextra](https://nextra.site/) and [Pydoc-Markdown](https://github.com/NiklasRosenstein/pydoc-markdown). diff --git a/docs/package-lock.json b/docs/package-lock.json index 47043f3..5f70800 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -1,9 +1,13 @@ { - "name": "docs", + "name": "tenta-python-client-docs", + "version": "0.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { + "name": "tenta-python-client-docs", + "version": "0.1.0", + "license": "AGPL-3.0-only", "dependencies": { "autoprefixer": "^10.4.15", "next": "^13.4.19", @@ -17,6 +21,9 @@ "devDependencies": { "@types/node": "^20.6.0", "typescript": "^5.2.2" + }, + "engines": { + "node": ">=16" } }, "node_modules/@alloc/quick-lru": { diff --git a/docs/package.json b/docs/package.json index 9ea2e2c..7e5fb5b 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,7 @@ { "name": "tenta-python-client-docs", "version": "0.1.0", + "description": "Documentation of the Python client library for Tenta, a sensor network management tool", "contributors": [ { "name": "Moritz Makowski", diff --git a/docs/pages/_meta.json b/docs/pages/_meta.json index 9a3f6d0..a6708b3 100644 --- a/docs/pages/_meta.json +++ b/docs/pages/_meta.json @@ -1,5 +1,5 @@ { "index": "Overview", "examples": "Examples", - "api": "API Reference" + "api-reference": "API Reference" } diff --git a/docs/pages/api.mdx b/docs/pages/api-reference.mdx similarity index 100% rename from docs/pages/api.mdx rename to docs/pages/api-reference.mdx diff --git a/docs/pages/index.mdx b/docs/pages/index.mdx index 80e9aec..617f15d 100644 --- a/docs/pages/index.mdx +++ b/docs/pages/index.mdx @@ -1,16 +1,14 @@ -# ๐Ÿ™ Tenta Python Client +# Tenta Python Client -This is a Python client library for [Tenta](https//github.com/iterize/tenta), a sensor network management tool. This library uses [Paho MQTT](https://github.com/eclipse/paho.mqtt.python) to communicate with a Tenta server connected to the same broker. The library provides type-safe interfaces to create an MQTT client, send out messages (logs, measurements, and acknowledgements) to the server and receive parameters (configuration messages) from the server. +This is a Python client library for [Tenta](https://github.com/iterize/tenta), a sensor network management tool. This library uses [Paho MQTT](https://github.com/eclipse/paho.mqtt.python) to communicate with a Tenta server connected to the same broker. The library provides type-safe interfaces to create an MQTT client, send messages (logs, measurements, and acknowledgments) to the server, and receive parameters (configuration messages) from the server. -Please contact [Moritz Makowski](moritz.makowski@tum.de) if you have any questions or feedback that goes beyong the scope of a GitHub issue. - -The documentation for this client library can be found at [tenta-python-client.onrender.com](https://tenta-python-client.onrender.com). +Please contact [Moritz Makowski](mailto:moritz.makowski@tum.de) if you have any questions or feedback that goes beyond the scope of a GitHub issue. The documentation for this client library is hosted at [tenta-python-client.onrender.com](https://tenta-python-client.onrender.com).
## Usage -1. Install it with Pip or [Poetry](https://github.com/python-poetry/poetry) +Install it with Pip or [Poetry](https://github.com/python-poetry/poetry): ```bash pip install tenta @@ -18,7 +16,7 @@ pip install tenta poetry add tenta ``` -2. Start using it +Import and use it in your project: ```python import tenta @@ -62,20 +60,18 @@ config_message: typing.Optional[ tenta_client.teardown() ``` -1. Read the [documentation](https://tenta-python-client.onrender.com) to learn about all the client features -
## About -**Why does this client exist?** The Tenta specification of how sensor should publish their data is very concise. Still in order to actually use Tenta in a project, one needs to write code that sends out these messages via an Python MQTT library, like Paho. This is not that much code, but need to be implemented, documented and tested in every single Project that wants to use Tenta. Hence, this client library is fully tested, documented and makes onboarding to Tenta significantly easier. +**Why does this client exist?** The Tenta specification of how a sensor should publish its data is simple, but to actually use Tenta in a project, one needs to write code that sends out these messages via a Python MQTT library, like Paho. This implementation code is relatively simple but needs to be written, documented, and tested in every single project that wants to use Tenta. This client library is thoroughly tested and documented. Hence, it makes onboarding to Tenta significantly easier. **Compatibility:** Client library version `0.X.*` will be compatible with the Tenta specification `0.X.*`. Client library versions `Y.*.*` will be compatible with Tenta specification `Y.*.*`. -**Adhering to semantic versioning:** The same function calls will produce the same MQTT messages within non-breaking releases, i.e. the function call `tenta_client.function(args)` will produce the same MQTT messages in library versions `0.1.0` and `0.1.3` even if the Tenta specification provides a new feature in `0.1.3`. New non-breaking features in Tenta will alway be opt-in, i.e. `tenta_client.function(args, enable_new_feature=True)ยด will opt-into that new feature. This way, the behaviour of sensors does not change with the same code even if they upgrade to non-breaking client library releases (automatically). +**Adhering to semantic versioning:** The same function calls will produce the same MQTT messages within non-breaking releases, i.e., the function call `tenta_client.function(args)` will produce the same MQTT messages in library versions `0.1.0` and `0.1.3` even if the Tenta specification provides a new feature in `0.1.3`. New non-breaking features in Tenta will always be opt-in, i.e., `tenta_client.function(args, enable_new_feature=True)` will opt into that new feature. This way, the behavior of sensors does not change with the same code even if they upgrade to non-breaking client library releases (automatically). **Open-Source:** Issues and Pull Requests are welcome! Every PR undergoes a review process to ensure quality and semantic versioning. -**Testing:** The library is statically typed and is strictly checked using [Mypy](https://github.com/python/mypy). The tests cover publishing all message types, receiving configuration messages and connecting to the MQTT broker with and without TLS encryption with valid and invalid connection details. The tests are run for all supported Python versions (3.8, 3.9, 3.10, 3.11). +**Testing:** The library is statically typed and is strictly checked using [Mypy](https://github.com/python/mypy). The tests cover publishing all message types, receiving configuration messages, and connecting to the MQTT broker with and without TLS encryption with valid and invalid connection details. The tests run for all supported Python versions (3.8, 3.9, 3.10, 3.11). **Documentation:** The documentation is built using [Nextra](https://nextra.site/) and [Pydoc-Markdown](https://github.com/NiklasRosenstein/pydoc-markdown). diff --git a/docs/theme.config.jsx b/docs/theme.config.jsx index 2938e78..ad0eb88 100644 --- a/docs/theme.config.jsx +++ b/docs/theme.config.jsx @@ -4,7 +4,7 @@ export default { ), project: { - link: "https://github.com/iterize/tenta", + link: "https://github.com/tum-esm/tenta-client", icon: ( ), }, - docsRepositoryBase: "https://github.com/tum-esm/tenta-client/tree/main", + docsRepositoryBase: "https://github.com/tum-esm/tenta-client/blob/main/docs", //primaryHue: 43, navigation: true, useNextSeoProps() { diff --git a/pyproject.toml b/pyproject.toml index 9f09404..f661b1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,12 @@ [tool.poetry] name = "tenta" version = "0.1.0" -description = "" -authors = ["Moritz Makowski "] +description = "Python client library for Tenta, a sensor network management tool" +authors = ["Moritz Makowski "] readme = "README.md" packages = [{ include = "tenta" }] repository = "https://github.com/tum-esm/tenta-client" +documentation = "https://tenta-python-client.onrender.com" license = "AGPL-3.0-only" [tool.poetry.dependencies] diff --git a/scripts/generate_docs.py b/scripts/generate_docs.py index 78a5c68..c19645a 100644 --- a/scripts/generate_docs.py +++ b/scripts/generate_docs.py @@ -8,7 +8,7 @@ INDEX_DST = os.path.join(PROJECT_DIR, "docs", "pages", "index.mdx") EXAMPLE_SRC = os.path.join(PROJECT_DIR, "example.py") EXAMPLE_DST = os.path.join(PROJECT_DIR, "docs", "pages", "examples.mdx") -API_DST = os.path.join(PROJECT_DIR, "docs", "pages", "api.mdx") +API_DST = os.path.join(PROJECT_DIR, "docs", "pages", "api-reference.mdx") # copy index file to docs folder diff --git a/tests/test_docs.py b/tests/test_docs.py index c8e2a99..9a2bd31 100644 --- a/tests/test_docs.py +++ b/tests/test_docs.py @@ -11,7 +11,7 @@ PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) DOCS_PAGES_DIR = os.path.join(PROJECT_DIR, "docs", "pages") -FILENAMES = ["index.mdx", "examples.mdx", "api.mdx"] +FILENAMES = ["index.mdx", "examples.mdx", "api-reference.mdx"] @pytest.mark.order(4)