Skip to main content

A full-featured Python Lavalink client for Discord music bots

Project description

Sonora

PyPI version Python 3.11+ License: MIT Build Status Coverage

A full-featured, production-ready Python Lavalink client for building music-capable Discord bots. Equivalent to Riffy but in Python.

Features

  • Async-first Python library compatible with Python 3.11+
  • Full Lavalink protocol support (v3 & v4)
  • Integrations for discord.py, py-cord, and nextcord
  • Plugin system for platform adapters (YouTube, Spotify, SoundCloud)
  • Voice connection management, track loading, queue management, player controls
  • Node pooling & reconnection, autoplay, per-guild voice state resumption
  • Clean high-level API + low-level control
  • Well-documented with MkDocs
  • Thoroughly tested (coverage >= 85%)
  • Packaged for PyPI, CI/CD with GitHub Actions, Docker support

Installation

pip install sonora-musicpy

Quickstart

First, set up your environment variables:

cp .env.example .env
# Edit .env with your Lavalink server details and Discord token

Minimal Discord Bot Example

import discord
from discord.ext import commands
from sonora import SonoraClient

intents = discord.Intents.default()
intents.message_content = True

bot = commands.Bot(command_prefix='!', intents=intents)
sonora = SonoraClient(
    lavalink_nodes=[{"host": "127.0.0.1", "port": 2333, "password": "youshallnotpass"}],
    node_pooling=True,
    reconnect_policy={"max_retries": 5, "backoff": "exponential"}
)

@bot.event
async def on_ready():
    await sonora.start()
    print(f'Logged in as {bot.user}')

@bot.command()
async def join(ctx):
    if ctx.author.voice:
        await ctx.author.voice.channel.connect()
        player = await sonora.get_player(ctx.guild.id)
        await ctx.send("Joined voice channel!")
    else:
        await ctx.send("You need to be in a voice channel!")

@bot.command()
async def play(ctx, *, query):
    player = await sonora.get_player(ctx.guild.id)
    track = await player.play(query)
    await ctx.send(f"Now playing: {track.title}")

bot.run(os.getenv('DISCORD_TOKEN'))

For more examples, see the examples/ directory.

Configuration

Sonora supports configuration via environment variables:

  • LAVALINK_HOST: Lavalink server host (default: 127.0.0.1)
  • LAVALINK_PORT: Lavalink server port (default: 2333)
  • LAVALINK_PASSWORD: Lavalink server password
  • DISCORD_TOKEN: Your Discord bot token

See .env.example for a full list.

Documentation

Full documentation is available at https://code-xon.github.io/sonora/.

Development

Prerequisites

Setup

git clone https://github.com/code-xon/sonora.git
cd sonora
pip install -e .[dev]
pre-commit install

Testing

pytest

Building Docs

mkdocs serve

Contributing

See CONTRIBUTING.md for details.

License

MIT License - see LICENSE for details.

Contact

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sonora_musicpy-1.0.0.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sonora_musicpy-1.0.0-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file sonora_musicpy-1.0.0.tar.gz.

File metadata

  • Download URL: sonora_musicpy-1.0.0.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.1

File hashes

Hashes for sonora_musicpy-1.0.0.tar.gz
Algorithm Hash digest
SHA256 fdb36ecebf03d981f17e5b8e454e13195d6bcddd3c483dc7f2e54531634f29fc
MD5 c99670cc34510cd97795c2177e34cf45
BLAKE2b-256 6681488304d1e218c5166c521243ac97cd77c3359692eeda10f03ce63bcb6b9e

See more details on using hashes here.

File details

Details for the file sonora_musicpy-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: sonora_musicpy-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.1

File hashes

Hashes for sonora_musicpy-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0a7c0dfab007dad346095f852cf6c123ec1a34d656743a71bdb1272f2508db3c
MD5 457429bef1eadbcb6197964e0dc58057
BLAKE2b-256 8a2db86a1d768308a6c5ebd43c787e6ae1ed2ae0b78e88c471b4b0a0fc7c7d81

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page