🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

pyvolumio

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyvolumio

A python library to control Volumio.

0.1.5
PyPI
Maintainers
1

PyVolumio

A python interface control Volumio.

Installation

You can install pyvolumio from PyPI:

pip3 install pyvolumio

Python 3.7 and above are supported.

How to use

from pyvolumio import Volumio
v = Volumio("<host>", <port>)
# you can also pass in your own session
v = Volumio("<host>", <port>, <session>)

info = await v.get_system_info()
state = await v.get_state()

await v.play()
await v.pause()
await v.stop()
await v.volume_up()
...

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