Skip to content

Checker#

Checker.

Allows for you to check if a string is a link or a query.

Checked #

Checked(value: str, type: CheckedType)

Checked value.

The checked, and confirmed value, with its specific type attached.

value property #

value: str

The value.

This is the value, based on the type it is.

type property #

The type of the checked value.

CheckedType #

Bases: enum.IntEnum

Checked type.

The type of result you have received.

QUERY class-attribute instance-attribute #

QUERY = 0

The result was a query.

TRACK class-attribute instance-attribute #

TRACK = 1

The result was a track.

PLAYLIST class-attribute instance-attribute #

PLAYLIST = 2

The result was a playlist.

check async #

check(query: str) -> Checked

Check a string.

Allows for the user to check a current string, and see what type it is.

Warning

Currently the checker only supports youtube url's.

Example
from ongaku.ext import checker

response = checker.check(query)

if checked_query.type == checker.CheckedType.QUERY:
    print(f"Query: {checked_query.value}")
else:
    print(f"Link: {checked_query.value}")
PARAMETER DESCRIPTION
query

The query you wish to check.

TYPE: str