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.4.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

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

hikari_ongaku-1.0.4-py3-none-any.whl (93.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: hikari_ongaku-1.0.4.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for hikari_ongaku-1.0.4.tar.gz
Algorithm Hash digest
SHA256 3261353c81eb0220f8455319d0ecb3e2969aa6ebf2ceb87d6eda4a8f95488010
MD5 adef644032b0e11755421dccc8b2d9fb
BLAKE2b-256 57a8d99a1153fbad13ee5fbf8e5579dd7072a71107992969bb4ab9a8e8633a42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hikari_ongaku-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 93.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for hikari_ongaku-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ef2d78493a71d635d4b95e310d02ba0892bc41a8345cb133e3c80b0132b1aaba
MD5 81a6af638dc4c48106e77db263163d04
BLAKE2b-256 7b5e6548bab46742cb651080fcb3a67d9e31834b6238b932f7724644515bbcfd

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