Skip to main content

Python asyncio package to connect to MySensors gateways.

Project description

aiomysensors

CI Status Test coverage percentage

Poetry Ruff pre-commit

PyPI Version Supported Python versions License


Source Code: https://github.com/MartinHjelmare/aiomysensors


Python asyncio package to connect to MySensors gateways.

Installation

Install this via pip (or your favourite package manager):

pip install aiomysensors

Example

"""Show a minimal example using aiomysensors."""
import asyncio

from aiomysensors import AIOMySensorsError, Gateway, SerialTransport


async def run_gateway() -> None:
    """Run a serial gateway."""
    port = "/dev/ttyACM0"
    baud = 115200
    transport = SerialTransport(port, baud)

    try:
        async with Gateway(transport) as gateway:
            async for message in gateway.listen():
                print("Message received:", message)
    except AIOMySensorsError as err:
        print("Error:", err)


if __name__ == "__main__":
    try:
        asyncio.run(run_gateway())
    except KeyboardInterrupt:
        pass

Command Line Interface

There's a CLI for testing purposes.

aiomysensors --debug serial-gateway -p /dev/ttyACM0

Credits

This package was created with Copier and the browniebroke/pypackage-template project template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiomysensors-0.4.5.tar.gz (25.8 kB view details)

Uploaded Source

Built Distribution

aiomysensors-0.4.5-py3-none-any.whl (38.7 kB view details)

Uploaded Python 3

File details

Details for the file aiomysensors-0.4.5.tar.gz.

File metadata

  • Download URL: aiomysensors-0.4.5.tar.gz
  • Upload date:
  • Size: 25.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiomysensors-0.4.5.tar.gz
Algorithm Hash digest
SHA256 8c25b82e62d5dad467330fadd2fe3ad8c85bd0e6da6bdebbd72929119fa3115d
MD5 72298356072964d3c35e3e53fa5f91a6
BLAKE2b-256 1a72ce817f556e6c5c1d6f9bddd8683ebe88fb284223d96cd64235c605c4d766

See more details on using hashes here.

Provenance

File details

Details for the file aiomysensors-0.4.5-py3-none-any.whl.

File metadata

  • Download URL: aiomysensors-0.4.5-py3-none-any.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiomysensors-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 a8aedd0521303ce5e338280286a5a0ed257a63cabfbcebe3800b25e8c53b4334
MD5 de420ed8f503437b9c18d5f30766af40
BLAKE2b-256 93be4b8e5985645af2775cc2e35037c47fb49d09cce9eb24646ce6a110b650f7

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page