Skip to main content

A simple voice library, for hikari.

Project description

Ongaku

A simple voice library for Hikari.

PyPI Ruff Pyright Lavalink

Ongaku is a voice library that allows for playing tracks from a lavalink server, using the Hikari discord API.

Ongaku tries to make everything as simple as possible for new users, but still having full access to add custom plugins and change (or create) session handlers.

Current Features

  • Player control
    • Playlists
    • Queuing
      • Adding songs.
      • Shuffling the queue.
      • Skipping a song or multiple.
      • Deleting via position, or a track object.
      • Clearing the queue.
    • Requestors
      • Setting the requestor of a track.
      • Viewing requestor in events.
    • Seeking/Reversing the tracks position.
    • Volume control
    • Looping (loops the same song over and over.)
    • Filters (allows for changing the way audio plays and sounds.)
  • Events
    • Ready Event (when a session is online.)
    • Player Update Event (when a player gets updated.)
    • Statistics Event (about the server.)
    • Track Start Event
    • Track End Event
    • Track Exception Event
    • Track Stuck Event
    • Empty Queue Event
    • Next Queue Event
  • Sessions
    • BasicSessionHandler (Gives next available session)
  • Others
    • Traces (for debugging code.)
    • Tests (Full test coverage.)

Future Features

  • More session handlers: so there is more methods to use the sessions you have provided.
  • Cache: a method to store information, and fetch it later, from events and rest actions.
  • Changing channels: support for moving to different channels, without leaving and rejoining.
  • Session failures: More control, like seeing why a session failed and allow for reconnecting, or resetting attempts.

Installation

To install ongaku, run the following command:

pip install -U hikari-ongaku

To check if ongaku has successfully installed or not, run the following command:

python3 -m ongaku
# On Windows you may need to run:
py -m ongaku

Getting Started

for more about how to get started see the docs.

import typing
import hikari
import ongaku

# Create a GatewayBot (RESTBot's are not supported.)
bot = hikari.GatewayBot(token="...")

# Give ongaku the bot.
client = ongaku.Client(bot)

@bot.listen()
async def message_event(
    event: hikari.GuildMessageCreateEvent
) -> None:
   # Ignore anything that has no content, is not a human, or is not in a guild.
   if not event.content or not event.is_human or not event.guild_id:
      return

   # Ignore anything that is not the play command.
   if not event.content.startswith("!play"):
      return

   # Get the query from play "command".
   query = event.content.strip("!play ")

   # Make sure the user is in a valid voice channel.
   voice_state = bot.cache.get_voice_state(event.guild_id, event.author.id)
   if not voice_state or not voice_state.channel_id:
      await bot.rest.create_message(event.channel_id, "you are not in a voice channel.", reply=event.message)
      return

   # Fetch the track from the query string. (This searches just Youtube.)
   result = await client.rest.load_track(f"ytsearch:{query}")

   # If the song is `None` let them know it failed.
   if result is None:
      await bot.rest.create_message(event.channel_id, "No songs were found.", reply=event.message)
      return

   # Create a player (or if it already exists, grab that one!)
   player = client.create_player(event.guild_id)

   # Add the playlist, track or search result to the player.
   if isinstance(result, typing.Sequence):
      player.add(result[0])
   else:
      player.add(result)

   # Tell the player to start playing the song!
   await player.play()

   await bot.rest.create_message(event.channel_id, f"Playing {player.queue[0].info.title}", reply=event.message)

Extensions

Ongaku has a few built-in extensions:

  • ext.checker - For checking if a song is a URL, or just a query.
  • ext.injection - For injecting player instances into commands.
  • ext.youtube - For setting or getting the token for your youtube config.

Issues and support

For general usage help or questions, see the #ongaku channel in the hikari discord, if you have found a bug or have a feature request, feel free to open an issue.

Links

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

hikari_ongaku-1.0.3.tar.gz (71.4 kB view details)

Uploaded Source

Built Distribution

hikari_ongaku-1.0.3-py3-none-any.whl (93.9 kB view details)

Uploaded Python 3

File details

Details for the file hikari_ongaku-1.0.3.tar.gz.

File metadata

  • Download URL: hikari_ongaku-1.0.3.tar.gz
  • Upload date:
  • Size: 71.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for hikari_ongaku-1.0.3.tar.gz
Algorithm Hash digest
SHA256 7d394c479657939fe9b550071469126aa74b7b1c587f1308fdeb5b36af4f575d
MD5 27c43aef79a22110c1ddafff3de898dc
BLAKE2b-256 21249bbe432d1a62c76144da61b719ccc9b510ba55a1c1f05c38e2042cccbe88

See more details on using hashes here.

File details

Details for the file hikari_ongaku-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for hikari_ongaku-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c2c3b451e07fc1b8e8781c7fa73dd58925865fbeaf82a7bc275cad9ae19dc48d
MD5 193181e22886cd8f0b370a853c576014
BLAKE2b-256 906193bd1c67dbec9a4cfd0d8caf96c82f7a683edf476117b61f21c55489fd0f

See more details on using hashes here.

Supported by

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