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.
    • Seeking/Reversing the tracks position.
    • Volume control
    • Setting requestors (users who requested the song.)
  • 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.
  • Filters: support for filters, to change the audio you receive.
  • 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 two extension built-in:

  • ext.checker - For checking if a song is a URL, or just a query.
  • ext.injection - For injecting player instances into commands.

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.1.tar.gz (61.2 kB view details)

Uploaded Source

Built Distribution

hikari_ongaku-1.0.1-py3-none-any.whl (84.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for hikari_ongaku-1.0.1.tar.gz
Algorithm Hash digest
SHA256 28e9713967042eed98270c51208183feaee3ed1abc079a753a0c5b500b5b75e8
MD5 4b2415a07a1c0a82db30a1d84c5bd990
BLAKE2b-256 88d29a56bfe99aa4d280383be76611faf26c02ebb02442d82bbdfd6c81e5ff10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hikari_ongaku-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f91c89849f9c288c049918fc973f68d5bc264f2e711c6e2e49e97a7d681ce252
MD5 edd932610288080312c8cc22724c01bc
BLAKE2b-256 d30b959ae408a52fae505ed83ca43b68dd94e18150a324eb29b52861ba828058

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