hikari.emojis
#
Application and entities that are used to describe emojis on Discord.
CustomEmoji #
Represents a custom emoji.
This is a custom emoji that is from a guild you might not be part of.
All CustomEmoji objects and their derivatives act as valid hikari.files.Resource
objects. This means you can use them as a file when sending a message.
>>> emojis = await bot.rest.fetch_guild_emojis(12345)
>>> picks = random.choices(emojis, 5)
>>> await event.respond(files=picks)
Warning
Discord will not provide information on whether these emojis are animated or not when a reaction is removed and an event is fired. This is problematic if you need to try and determine the emoji that was removed. The side effect of this means that mentions for animated emojis will not be correct.
This will not be changed as stated here: https://github.com/discord/discord-api-docs/issues/1614#issuecomment-628548913
id class-attribute
instance-attribute
#
The ID of this entity.
is_animated class-attribute
instance-attribute
#
Whether the emoji is animated.
name class-attribute
instance-attribute
#
The name of the emoji.
parse classmethod
#
parse(string: str) -> CustomEmoji
Parse a given emoji mention string into a custom emoji object.
PARAMETER | DESCRIPTION |
---|---|
string | The emoji mention to parse. TYPE: |
RETURNS | DESCRIPTION |
---|---|
CustomEmoji | The parsed emoji object. |
RAISES | DESCRIPTION |
---|---|
ValueError | If a mention is given that has an invalid format. |
Emoji #
Bases: WebResource
, ABC
Base class for all emojis.
Any emoji implementation supports being used as a hikari.files.Resource
when uploading an attachment to the API. This is achieved in the same way as using a hikari.files.WebResource
would achieve this.
parse classmethod
#
parse(string: str) -> Union[UnicodeEmoji, CustomEmoji]
Parse a given string into an emoji object.
PARAMETER | DESCRIPTION |
---|---|
string | The emoji object to parse. TYPE: |
RETURNS | DESCRIPTION |
---|---|
Union[UnicodeEmoji, CustomEmoji] | The parsed emoji object. This will be a |
RAISES | DESCRIPTION |
---|---|
ValueError | If a mention is given that has an invalid format. |
KnownCustomEmoji #
Bases: CustomEmoji
Represents a known emoji.
The Emoji could be either known because the bot is part of the emoji's guild or because the emoji is an application emoji.
This is a specialization of hikari.emojis.CustomEmoji
that is known as mentioned before. As a result, it contains a lot more information with it.
app class-attribute
instance-attribute
#
Client application that models may use for procedures.
guild_id class-attribute
instance-attribute
#
The ID of the guild this emoji belongs to, if applicable.
This will be None
if the emoji is an application emoji.
is_available class-attribute
instance-attribute
#
Whether this emoji can currently be used.
May be False
due to a loss of Sever Boosts on the emoji's guild.
is_colons_required class-attribute
instance-attribute
#
Whether this emoji must be wrapped in colons.
is_managed class-attribute
instance-attribute
#
Whether the emoji is managed by an integration.
role_ids class-attribute
instance-attribute
#
The IDs of the roles that are whitelisted to use this emoji.
If this is empty then any user can use this emoji regardless of their roles.
UnicodeEmoji #
Represents a unicode emoji.
Warning
A word of warning if you try to upload this emoji as a file attachment.
While this emoji type can be used to upload the Twemoji representations of this emoji as a PNG, this is NOT foolproof. The mapping between Discord's implementation and official Twemoji bindings is very flaky. Responsible implementations relying on this behaviour will be implemented to expect this behaviour in the form of hikari.errors.NotFoundError
exceptions being raised when a mismatch may occur. It is also likely that this will change in the future without notice, so you will likely be relying on flaky behaviour.
If this is proven to be too unstable, this functionality will be removed in a future release after a deprecation period.
codepoints property
#
Integer codepoints that make up this emoji, as UTF-8.
url property
#
url: str
Get the URL of the PNG rendition of this emoji.
This will use the official Twitter "twemoji" repository to fetch this information, as Discord only stores this in a hashed format that uses SVG files, which is not usually of any use.
Since this uses "twemoji" directly, the emojis may not directly match what is on Discord if Discord have failed to keep their emoji packs up-to-date with this repository.
Examples:
>>> emoji = hikari.UnicodeEmoji("👌")
>>> emoji.url
'https://raw.githubusercontent.com/discord/twemoji/master/assets/72x72/1f44c.png'
parse classmethod
#
parse(string: str) -> UnicodeEmoji
Parse a given string into a unicode emoji object.
PARAMETER | DESCRIPTION |
---|---|
string | The emoji object to parse. TYPE: |
RETURNS | DESCRIPTION |
---|---|
UnicodeEmoji | The parsed UnicodeEmoji object. |
parse_codepoints classmethod
#
parse_codepoints(codepoint: int, *codepoints: int) -> UnicodeEmoji
Create a unicode emoji from one or more UTF-32 codepoints.
parse_unicode_escape classmethod
#
parse_unicode_escape(escape: str) -> UnicodeEmoji
Create a unicode emoji from a unicode escape string.