Skip to content
/ pyvelop Public

A Python library for the Linksys Velop Mesh system.

Notifications You must be signed in to change notification settings

uvjim/pyvelop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI - Version PyPI - Downloads

GitHub Release GitHub Downloads (all assets, all releases)

pyvelop

A Python library for the Linksys Velop Mesh system

Purpose

This library was built with the intention of allowing easy communication with the Linksys Velop Mesh system. Primarily, it was built to support the linksys_velop custom component in Home Assistant.

Installation

pip install pyvelop

Quick Start

To get started you can use the following as a skeleton.

import asyncio

from pyvelop.mesh import Mesh


async def main():
    async with Mesh(node="192.168.1.1", password="my_password") as mesh:
        await mesh.async_initialise()
        print(mesh.nodes)


if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())

CLI

The library also has a CLI which can be used like so...

pyvelop mesh details -a PRIMARY_NODE -p PASSWORD - Lists all known details about the mesh.

pyvelop node details bedroom -a PRIMARY_NODE -p PASSWORD - Lists all known details about the given node.

pyvelop --help - show all available options

Disclaimer

This is NOT an official module, and it is NOT officially supported by the vendor.

About

A Python library for the Linksys Velop Mesh system.

Resources

Stars

Watchers

Forks

Languages