A robust and powerful Lavalink wrapper for discord.py
Project description
Wavelink is a robust and powerful Lavalink wrapper for Discord.py. Wavelink features a fully asynchronous API that’s intuitive and easy to use with built in Spotify Support and Node Pool Balancing.
Features:
Fully Asynchronous
Auto-Play and Looping (With the inbuilt Queue system)
Spotify Support
Node Balancing and Fail-over
Supports Lavalink 3.7+
Documentation
Support
For support using WaveLink, please join the official support server on Discord.
Installation
The following commands are currently the valid ways of installing WaveLink.
WaveLink 2 requires Python 3.10+
Windows
py -3.10 -m pip install -U Wavelink
Linux
python3.10 -m pip install -U Wavelink
Getting Started
See also: Examples
import discord
import wavelink
from discord.ext import commands
class Bot(commands.Bot):
def __init__(self) -> None:
intents = discord.Intents.default()
intents.message_content = True
super().__init__(intents=intents, command_prefix='?')
async def on_ready(self) -> None:
print(f'Logged in {self.user} | {self.user.id}')
async def setup_hook(self) -> None:
# Wavelink 2.0 has made connecting Nodes easier... Simply create each Node
# and pass it to NodePool.connect with the client/bot.
node: wavelink.Node = wavelink.Node(uri='http://localhost:2333', password='youshallnotpass')
await wavelink.NodePool.connect(client=self, nodes=[node])
bot = Bot()
@bot.command()
async def play(ctx: commands.Context, *, search: str) -> None:
"""Simple play command."""
if not ctx.voice_client:
vc: wavelink.Player = await ctx.author.voice.channel.connect(cls=wavelink.Player)
else:
vc: wavelink.Player = ctx.voice_client
track = await wavelink.YouTubeTrack.search(search, return_first=True)
await vc.play(track)
@bot.command()
async def disconnect(ctx: commands.Context) -> None:
"""Simple disconnect command.
This command assumes there is a currently connected Player.
"""
vc: wavelink.Player = ctx.voice_client
await vc.disconnect()
Lavalink Installation
Head to the official Lavalink repo and give it a star!
Create a folder for storing Lavalink.jar and related files/folders.
Copy and paste the example application.yml to application.yml in the folder we created earlier. You can open the yml in Notepad or any simple text editor.
Change your password in the application.yml and store it in a config for your bot.
Set local to true in the application.yml if you wish to use wavelink.LocalTrack for local machine search options… Otherwise ignore.
Save and exit.
Install Java 17(Windows) or Java 13+ on the machine you are running.
Download Lavalink.jar and place it in the folder created earlier.
Open a cmd prompt or terminal and change directory cd into the folder we made earlier.
Run: java -jar Lavalink.jar
If you are having any problems installing Lavalink, please join the official Discord Server listed above for help.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Wavelink-2.1.0.tar.gz
.
File metadata
- Download URL: Wavelink-2.1.0.tar.gz
- Upload date:
- Size: 29.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b66b9e0a55ee5132ce63611b6cac5ae281ef3a3e57846abe3a15be3bb48f6ce7 |
|
MD5 | 798947833c925171915b00488d24d9fc |
|
BLAKE2b-256 | 3c9a46d4d45e05afe8f39515d63751289da7d9a6cb358ecde852e6bf6ae66ade |
File details
Details for the file Wavelink-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: Wavelink-2.1.0-py3-none-any.whl
- Upload date:
- Size: 40.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9656304259a50130705011a21322f8d9f0207e043beac74fefd4b538d06587b2 |
|
MD5 | bc3f3b46aa67a6913128b63222dbee15 |
|
BLAKE2b-256 | 9cbe54ac1998bba683b1a972909b6ec3cbed622065dddfcdc57839118ecc73ef |