pybluΒΆ
This is an Python library for interfacing with BluOS player. It uses the BluOS API to control and query the status of BluOS players.
Basic usage example:
from pyblu import Player
async def main():
async with Player("<host>") as player:
status = await player.status()
print(status)