granitepy is a python wrapper for the Lavalink like audio provider called Andesite for use with discord.py.
From Pypi
pip install -U granitepy
From Github
pip install -U git+https://github.com/iDevision/granitepy
from discord.ext import commands
import granitepy
bot = commands.Bot(command_prefix = "!")
bot.granitepy = granitepy.Client(bot)
@bot.event
async def on_ready():
await bot.granitepy.create_node(
host="node-ip",
port=12345,
password="node-password",
identifier="node-name"
)
@bot.command()
async def connect(ctx):
# Create or fetch a player.
player = bot.granitepy.get_player(guild=ctx.guild)
# Check is the author is in a voice channel.
if not ctx.author.voice:
return await ctx.send("You must be connected to a voice channel")
# Connect to the authors voice channel.
await player.connect(ctx.author.voice.channel)
return await ctx.send(f"Connected to {ctx.author.voice.channel.name}!")
@bot.command()
async def play(ctx, *, search):
player = bot.granitepy.get_player(guild=ctx.guild)
# Search for whatever the user has inputted.
result = await player.get_tracks(search)
# The users search returned nothing.
if not result:
return await ctx.send("No tracks were found.")
# Check if the result is a playlist.
if isinstance(result, granitepy.Playlist):
# Play the first track in the playlist.
return await player.play(result.tracks[0])
else:
# Play the first track in the list of results.
return await player.play(result[0])
bot.run("token")