{"id":45710164,"url":"https://github.com/ztroop/wave-reader-utils","last_synced_at":"2026-02-25T02:14:38.137Z","repository":{"id":47089677,"uuid":"327189001","full_name":"ztroop/wave-reader-utils","owner":"ztroop","description":"Unofficial Wave Device Library","archived":false,"fork":false,"pushed_at":"2024-03-10T05:57:09.000Z","size":6159,"stargazers_count":19,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-02-14T19:15:41.483Z","etag":null,"topics":["airthings","bluetooth-low-energy","pypi-package"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ztroop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2021-01-06T03:29:51.000Z","updated_at":"2024-03-09T01:39:42.000Z","dependencies_parsed_at":"2024-03-09T02:28:14.533Z","dependency_job_id":"30604aa3-fcd6-47a4-a0ca-e8e9861c4bc3","html_url":"https://github.com/ztroop/wave-reader-utils","commit_stats":{"total_commits":47,"total_committers":4,"mean_commits":11.75,"dds":0.06382978723404253,"last_synced_commit":"b384cbc5e6bc4f9855407aed1c38adbb59d954f8"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ztroop/wave-reader-utils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztroop%2Fwave-reader-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztroop%2Fwave-reader-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztroop%2Fwave-reader-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztroop%2Fwave-reader-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ztroop","download_url":"https://codeload.github.com/ztroop/wave-reader-utils/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztroop%2Fwave-reader-utils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29809084,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T22:43:48.403Z","status":"online","status_checked_at":"2026-02-25T02:00:07.329Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airthings","bluetooth-low-energy","pypi-package"],"created_at":"2026-02-25T02:14:36.727Z","updated_at":"2026-02-25T02:14:38.132Z","avatar_url":"https://github.com/ztroop.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Build Status](https://github.com/ztroop/wave-reader/workflows/Build%20Status/badge.svg)\n[![codecov](https://codecov.io/gh/ztroop/wave-reader-utils/branch/master/graph/badge.svg?token=NG9H8YO1ID)](https://codecov.io/gh/ztroop/wave-reader-utils)\n[![PyPI version](https://badge.fury.io/py/wave-reader.svg)](https://badge.fury.io/py/wave-reader)\n\n**This package is currently in maintenance mode. Please use [airthings-ble](https://github.com/Airthings/airthings-ble) for new projects.**\n\n## Wave Reader Utilities\n\nThe `Airthings Wave` is a series of devices that track Radon levels in the home. Radon is a radioactive\ngas that comes from the breakdown of uranium in soil and rock. It's invisible, odourless and tasteless.\n\nThis is an **unofficial** Airthings Wave community library designed to provide utilities for device\nand web communication.\n\n## Features\n\n- Using `bleak` as a dependency for platform cross-compatibility and support for asynchronous operation.\n- Support for major models: Wave+, Wave, Wave (Version 2) and Wave Mini devices. View Plus is not supported, as it sends data over WiFi, not BTLE.\n- Code testing, coverage reporting, linting, type hinting, and formatting.\n- Provide a more comprehensive programming interface for a developer audience.\n- Auxillary module that provides a web client for Airthings API and OAuth2 authentication.\n\n## Requirements\n\nIn Ubuntu/Debian, make sure you have `libglib2.0-dev` and `bluez` installed:\n\n```sh\nsudo apt-get install libglib2.0-dev bluez -y\n```\n\nOther Linux distributions should have equivalent packages. In theory, other platforms\n(Windows, Mac) _are_ supported by using `bleak` as a dependency, but open a ticket\nif you run into any issues.\n\n## Installation\n\nYou can install the library by running:\n\n```sh\npip install wave-reader\n```\n\n## Example Usage\n\nThere are various concrete examples available in the `examples` directory. That includes\nCLI interaction and other interesting scenarios that demonstrate API usage.\n\n```python\nimport asyncio\nfrom wave_reader import wave\n\nif __name__ == \"__main__\":\n    # Scan for BTLE Wave devices.\n    devices = wave.scan()\n    # Event loop to run asynchronous tasks.\n    loop = asyncio.new_event_loop()\n    # Get sensor readings from available wave devices.\n    for d in devices:\n        sensor_readings = loop.run_until_complete(d.get_sensor_values())\n        print(sensor_readings)\n\n# \u003e\u003e\u003e DeviceSensors (humidity: 32.5, radon_sta: 116, radon_lta: 113 ...\n```\n\n## Web API Client Module\n\nThe `wave_reader/web` module in this library provides a client for the Airthings\nweb API. See [this page](./wave_reader/web/README.md) for more details.\n\n## Contribution\n\nIf you identify a bug, please open a ticket. Pull requests are always welcome.\n\n## Testing\n\nYou can run the entire test suite by running `tox`. It will run `flake8`, `isort` and `pytest`.\nIf you'd like to just run unit tests, running `pytest ./tests` is sufficient.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztroop%2Fwave-reader-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fztroop%2Fwave-reader-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztroop%2Fwave-reader-utils/lists"}