velbus-aio


Namevelbus-aio JSON
Version 2025.1.0 PyPI version JSON
download
home_pageNone
SummaryOpen-source home automation platform running on Python 3.
upload_time2025-01-13 15:12:33
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9.0
licenseMIT
keywords home velbus automation
VCS
bugtrack_url
requirements aiofile backoff pyserial pyserial-asyncio-fast setuptools
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![CI](https://github.com/Cereal2nd/velbus-aio/actions/workflows/main.yml/badge.svg)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Cereal2nd/velbus-aio/master.svg)](https://results.pre-commit.ci/latest/github/Cereal2nd/velbus-aio/master)
[![PyPI version](https://badge.fury.io/py/velbus-aio.svg)](https://badge.fury.io/py/velbus-aio)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/velbus-aio.svg)](https://github.com/Cereal2nd/velbus-aio)
[![License](https://img.shields.io/github/license/Cereal2nd/velbus-aio)](https://github.com/cereal2nd/velbus-aio/blob/master/LICENSE)
[![Downloads](https://pepy.tech/badge/velbus-aio)](https://pepy.tech/project/velbus-aio)
[![Downloads](https://pepy.tech/badge/velbus-aio/month)](https://pepy.tech/project/velbus-aio)
[![Downloads](https://pepy.tech/badge/velbus-aio/week)](https://pepy.tech/project/velbus-aio)
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

> This project requires financial support, but it is free for you to use. You can join those helping to keep the lights on at:
>
> [<img src="https://raw.githubusercontent.com/Cereal2nd/hassio-velbusd/refs/heads/main/images/bmc-button.svg" width=150 height=40 style="margin: 5px"/>](https://buymeacoffee.com/cereal2nd) [<img src="https://raw.githubusercontent.com/Cereal2nd/hassio-velbusd/refs/heads/main/images/github-sponsors-button.svg" width=150 height=40 style="margin: 5px"/>](https://github.com/sponsors/Cereal2nd/)

# velbus-aio

Velbus Asyncio, a library to support the [Velbus](https://www.velbus.eu/) home automation system.

This Lib is a rewrite in python3 with asyncio of the [python-velbus](https://github.com/thomasdelaet/python-velbus/) module.
Part of the code from the above lib is reused.
Its also build on top of the [openHab velbus protocol description](https://github.com/StefCoene/moduleprotocol).

The latest version of the library is published as a python package on [pypi](https://pypi.org/project/velbus-aio/)

# Supported connections:

| Type               | Example                          | Description                                                                                                           |
| ------------------ | -------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| serial             | /dev/ttyACME0                    | a serial device                                                                                                       |
| (tcp://)ip:port    | 192.168.1.9:1234                 | An ip address + tcp port combination, used in combination with any velbus => tcp gateway, the tcp:// part is optional |
| tls://ip:port      | tls://192.168.1.9:12345          | A connection to [Signum](https://www.velbus.eu/products/view/?id=458140)                                              |
| tls://auth@ip:port | tls://iauthKey@192.168.1.9:12345 | A connection to [Signum](https://www.velbus.eu/products/view/?id=458140) with uthentication                           |

# Development

See the [contributing](https://github.com/Cereal2nd/velbus-aio/blob/master/CONTRIBUTING.md) guidelines.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "velbus-aio",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9.0",
    "maintainer_email": null,
    "keywords": "home, velbus, automation",
    "author": null,
    "author_email": "Maikel Punie <maikel.punie@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/83/f8/cdc4c023904cabd567b5e681844e788c2af74c89f108c077c8e42574ac73/velbus_aio-2025.1.0.tar.gz",
    "platform": "any",
    "description": "![CI](https://github.com/Cereal2nd/velbus-aio/actions/workflows/main.yml/badge.svg)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Cereal2nd/velbus-aio/master.svg)](https://results.pre-commit.ci/latest/github/Cereal2nd/velbus-aio/master)\n[![PyPI version](https://badge.fury.io/py/velbus-aio.svg)](https://badge.fury.io/py/velbus-aio)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/velbus-aio.svg)](https://github.com/Cereal2nd/velbus-aio)\n[![License](https://img.shields.io/github/license/Cereal2nd/velbus-aio)](https://github.com/cereal2nd/velbus-aio/blob/master/LICENSE)\n[![Downloads](https://pepy.tech/badge/velbus-aio)](https://pepy.tech/project/velbus-aio)\n[![Downloads](https://pepy.tech/badge/velbus-aio/month)](https://pepy.tech/project/velbus-aio)\n[![Downloads](https://pepy.tech/badge/velbus-aio/week)](https://pepy.tech/project/velbus-aio)\n[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n> This project requires financial support, but it is free for you to use. You can join those helping to keep the lights on at:\n>\n> [<img src=\"https://raw.githubusercontent.com/Cereal2nd/hassio-velbusd/refs/heads/main/images/bmc-button.svg\" width=150 height=40 style=\"margin: 5px\"/>](https://buymeacoffee.com/cereal2nd) [<img src=\"https://raw.githubusercontent.com/Cereal2nd/hassio-velbusd/refs/heads/main/images/github-sponsors-button.svg\" width=150 height=40 style=\"margin: 5px\"/>](https://github.com/sponsors/Cereal2nd/)\n\n# velbus-aio\n\nVelbus Asyncio, a library to support the [Velbus](https://www.velbus.eu/) home automation system.\n\nThis Lib is a rewrite in python3 with asyncio of the [python-velbus](https://github.com/thomasdelaet/python-velbus/) module.\nPart of the code from the above lib is reused.\nIts also build on top of the [openHab velbus protocol description](https://github.com/StefCoene/moduleprotocol).\n\nThe latest version of the library is published as a python package on [pypi](https://pypi.org/project/velbus-aio/)\n\n# Supported connections:\n\n| Type               | Example                          | Description                                                                                                           |\n| ------------------ | -------------------------------- | --------------------------------------------------------------------------------------------------------------------- |\n| serial             | /dev/ttyACME0                    | a serial device                                                                                                       |\n| (tcp://)ip:port    | 192.168.1.9:1234                 | An ip address + tcp port combination, used in combination with any velbus => tcp gateway, the tcp:// part is optional |\n| tls://ip:port      | tls://192.168.1.9:12345          | A connection to [Signum](https://www.velbus.eu/products/view/?id=458140)                                              |\n| tls://auth@ip:port | tls://iauthKey@192.168.1.9:12345 | A connection to [Signum](https://www.velbus.eu/products/view/?id=458140) with uthentication                           |\n\n# Development\n\nSee the [contributing](https://github.com/Cereal2nd/velbus-aio/blob/master/CONTRIBUTING.md) guidelines.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Open-source home automation platform running on Python 3.",
    "version": "2025.1.0",
    "project_urls": {
        "Bug Reports": "https://github.com/Cereal2nd/velbus-aio/issues",
        "Source Code": "https://github.com/Cereal2nd/velbus-aio"
    },
    "split_keywords": [
        "home",
        " velbus",
        " automation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f7062b8f583bb6142e4b763f0c8e84075b3e332f0fe44e4411a785802cb5f0a",
                "md5": "d6b3a7b42219f449c2cb76cf870ee3f5",
                "sha256": "4254975d7d1cb2ed40c759da7542c0c59c3b9f5ba22c3e2250e89bfa51316223"
            },
            "downloads": -1,
            "filename": "velbus_aio-2025.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d6b3a7b42219f449c2cb76cf870ee3f5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9.0",
            "size": 147786,
            "upload_time": "2025-01-13T15:12:30",
            "upload_time_iso_8601": "2025-01-13T15:12:30.904791Z",
            "url": "https://files.pythonhosted.org/packages/4f/70/62b8f583bb6142e4b763f0c8e84075b3e332f0fe44e4411a785802cb5f0a/velbus_aio-2025.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83f8cdc4c023904cabd567b5e681844e788c2af74c89f108c077c8e42574ac73",
                "md5": "fd842230e194518fd0bd4851e64588ba",
                "sha256": "5d334ad3f5fad23d8862d580ad9e35bb84dfc169f45ca483c692802760bbac84"
            },
            "downloads": -1,
            "filename": "velbus_aio-2025.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fd842230e194518fd0bd4851e64588ba",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9.0",
            "size": 71729,
            "upload_time": "2025-01-13T15:12:33",
            "upload_time_iso_8601": "2025-01-13T15:12:33.475819Z",
            "url": "https://files.pythonhosted.org/packages/83/f8/cdc4c023904cabd567b5e681844e788c2af74c89f108c077c8e42574ac73/velbus_aio-2025.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-13 15:12:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Cereal2nd",
    "github_project": "velbus-aio",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "aiofile",
            "specs": []
        },
        {
            "name": "backoff",
            "specs": [
                [
                    ">=",
                    "1.10.0"
                ]
            ]
        },
        {
            "name": "pyserial",
            "specs": [
                [
                    ">=",
                    "3.5.0"
                ]
            ]
        },
        {
            "name": "pyserial-asyncio-fast",
            "specs": [
                [
                    ">=",
                    "0.11"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": []
        }
    ],
    "lcname": "velbus-aio"
}
        
Elapsed time: 1.00007s