Rest#
Rest client.
All REST based actions, happen in here.
RESTClient
#
RESTClient(client: Client)
Base REST Client.
The base REST client, for all rest related actions.
Warning
Please do not create this on your own. Please use the rest attribute, in the base client object you created.
load_track
async
#
load_track(
query: str, *, session: Session | None = None
) -> Playlist | typing.Sequence[Track] | Track | None
Load tracks.
Loads tracks from a site, a playlist or a track, to play on a player.
PARAMETER | DESCRIPTION |
---|---|
query |
The query for the search/link.
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the track, playlist or search could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
typing.Sequence[Track]
|
A sequence of tracks (a search result) |
Playlist
|
A Playlist object. |
Track
|
A Track object. |
None
|
No result was returned. |
decode_track
async
#
Decode a track.
Decode a track from its encoded state.
PARAMETER | DESCRIPTION |
---|---|
track |
The BASE64 code, from a previously encoded track.
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the track could not be built |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
Track
|
The Track object. |
decode_tracks
async
#
decode_tracks(
tracks: typing.Sequence[str],
*,
session: Session | None = None
) -> typing.Sequence[Track]
Decode tracks.
Decode multiple tracks from their encoded state.
PARAMETER | DESCRIPTION |
---|---|
tracks |
The BASE64 codes, from all the previously encoded tracks. |
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the tracks could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
typing.Sequence[Track]
|
The Track object. |
fetch_players
async
#
Fetch all players.
Fetches all players on this session.
Example
PARAMETER | DESCRIPTION |
---|---|
session_id |
The Session ID that the players are attached too.
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the players could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
typing.Sequence[Player]
|
The Sequence of player objects. |
fetch_player
async
#
fetch_player(
session_id: str,
guild: hikari.SnowflakeishOr[hikari.Guild],
*,
session: Session | None = None
) -> Player
Fetch a player.
Fetches a specific player from this session.
PARAMETER | DESCRIPTION |
---|---|
session_id |
The Session ID that the players are attached too.
TYPE:
|
guild |
The
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the player could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
Player
|
The player object. |
update_player
async
#
update_player(
session_id: str,
guild: hikari.SnowflakeishOr[hikari.Guild],
*,
track: hikari.UndefinedNoneOr[Track] = hikari.UNDEFINED,
position: hikari.UndefinedOr[int] = hikari.UNDEFINED,
end_time: hikari.UndefinedOr[int] = hikari.UNDEFINED,
volume: hikari.UndefinedOr[int] = hikari.UNDEFINED,
paused: hikari.UndefinedOr[bool] = hikari.UNDEFINED,
filters: hikari.UndefinedNoneOr[
Filters
] = hikari.UNDEFINED,
voice: hikari.UndefinedOr[Voice] = hikari.UNDEFINED,
no_replace: bool = True,
session: Session | None = None
) -> Player
Fetch a player.
Fetches a specific player from this session.
Tip
Setting any value (except for session_id
, or guild_id
) to None, will set their values to None.
To not modify them, do not set them to anything.
Warning
If you do not set any value (not including session_id
or guild_id
as they are required) you will receive a ValueError
PARAMETER | DESCRIPTION |
---|---|
session_id |
The Session ID that the players are attached too.
TYPE:
|
guild |
The
TYPE:
|
track |
The track you wish to set, or remove
TYPE:
|
position |
The new position for the track.
TYPE:
|
end_time |
The end time for the track.
TYPE:
|
volume |
The volume of the player.
TYPE:
|
paused |
Whether or not to pause the player.
TYPE:
|
filters |
The filters to apply to the player.
TYPE:
|
voice |
The player voice object you wish to set.
TYPE:
|
no_replace |
Whether or not the track can be replaced.
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
ValueError
|
Raised when nothing new has been set. |
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the track, playlist or search could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
Player
|
The player object. |
delete_player
async
#
delete_player(
session_id: str,
guild: hikari.SnowflakeishOr[hikari.Guild],
session: Session | None = None,
) -> None
Delete a player.
Deletes a specific player from this session.
PARAMETER | DESCRIPTION |
---|---|
session_id |
The Session ID that the players are attached too.
TYPE:
|
guild |
The
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
update_session
async
#
update_session(
session_id: str,
*,
resuming: bool | None = None,
timeout: int | None = None,
session: Session | None = None
) -> session_.Session
Update Lavalink session.
Updates the lavalink session.
PARAMETER | DESCRIPTION |
---|---|
session_id |
The session you wish to update.
TYPE:
|
resuming |
Whether resuming is enabled for this session or not.
TYPE:
|
timeout |
The timeout in seconds (default is 60s)
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the session could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
Session
|
The Session object. |
fetch_info
async
#
Get information.
Gets the current sessions information.
PARAMETER | DESCRIPTION |
---|---|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the information could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
Info
|
The Info object. |
fetch_version
async
#
Get version.
Gets the current Lavalink version.
PARAMETER | DESCRIPTION |
---|---|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
str
|
The version, in string format. |
fetch_stats
async
#
fetch_stats(
*, session: Session | None = None
) -> Statistics
Get statistics.
Gets the current Lavalink statistics.
Note
frame_statistics will always be None
.
PARAMETER | DESCRIPTION |
---|---|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the statistics could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
Statistics
|
The Statistics object. |
fetch_routeplanner_status
async
#
fetch_routeplanner_status(
*, session: Session | None = None
) -> RoutePlannerStatus | None
Fetch routeplanner status.
Fetches the routeplanner status of the current session.
Example
PARAMETER | DESCRIPTION |
---|---|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
BuildError
|
Raised when the routeplanner status could not be built. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
RETURNS | DESCRIPTION |
---|---|
RoutePlannerStatus
|
The RoutePlannerStatus object. |
None
|
The Route Planner for this server is not active. |
update_routeplanner_address
async
#
Free routeplanner address.
Free's the specified routeplanner address.
PARAMETER | DESCRIPTION |
---|---|
address |
The address you wish to free.
TYPE:
|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |
update_all_routeplanner_addresses
async
#
update_all_routeplanner_addresses(
*, session: Session | None = None
) -> None
Free all routeplanner addresses.
Frees every blocked routeplanner address.
PARAMETER | DESCRIPTION |
---|---|
session |
If provided, the session to use for this request.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NoSessionsError
|
Raised when there is no available sessions for this request to take place. |
TimeoutError
|
Raised when the request takes too long to respond. |
RestEmptyError
|
Raised when the request required a return type, but received nothing, or a 204 response. |
RestStatusError
|
Raised when a 4XX or a 5XX status is received. |
RestRequestError
|
Raised when a 4XX or a 5XX status is received, and lavalink gives more information. |
RestError
|
Raised when an unknown error is caught. |