Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pyvelop

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyvelop

A Python library for the Linksys Velop Mesh system

  • 2024.12.1
  • PyPI
  • Socket score

Maintainers
1

.. |pypi_downloads| image:: https://img.shields.io/pypi/dm/pyvelop?style=for-the-badge&label=PyPI%20Downloads :alt: PyPI - Downloads

.. |pypi_version| image:: https://img.shields.io/pypi/v/pyvelop?style=for-the-badge :alt: PyPI - Version

.. |github_release| image:: https://img.shields.io/github/v/release/uvjim/pyvelop?style=for-the-badge :alt: GitHub Release

.. |github_downloads| image:: https://img.shields.io/github/downloads/uvjim/pyvelop/total?style=for-the-badge&label=GitHub%20Downloads :alt: GitHub Downloads (all assets, all releases)

|pypi_version| |pypi_downloads|

|github_release| |github_downloads|

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 <https://github.com/uvjim/linksys_velop>_ custom component in Home Assistant <https://home-assistant.io/>_.

Installation

pip install pyvelop

Quick Start

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

.. code:: python

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.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc