Welcome to emojipedia’s documentation!

Contents:

emojipedia

emojipedia.emojipedia module

class emojipedia.emojipedia.Emojipedia
static all()

Returns list of emojis in Emojipedia.

An extremely powerful method. Returns all emojis known to human-kind. 😎

Returns:List of all emojies
Return type:[Emoji]
static category(query)

Returns list of all emojis in the given category.

Returns:List of emojies in the category
Return type:[Emoji]
static random()

Returns a random emoji.

Returns:A random emoji
Return type:Emoji
static search(query)

Searches for emojis on Emojipedia. Query must be a valid emoji name.

Parameters:query (str) – the search query
Returns:Emoji with the given name
Return type:Emoji

emojipedia.emoji module

class emojipedia.emoji.Emoji(soup=None, url=None)
aliases

A list of aliases associated with the emoji

Example: [u'¯\_(ツ)_/¯', u'shrugging']

character

The unicode character of the emoji

Example: u'🤷'

codepoints

A list of unicode codepoints for the emoji

Example: ['U+1F937']

description

The Emojipedia description of the emoji

Example: u'A person shrugging their shoulders to indicate ...'

platforms

A list of platforms that the emoji is present on

Return type:[Platform]
shortcodes

A list of shortcodes that represent the emoji

Example: [:cop:]

title

The title of the emoji

Example: ‘Person Shrugging’

class emojipedia.emoji.Platform

Object representing an emoji entry on Emojipedia

name

The name of the platform

image_url

URL pointing to an image of the emoji as it appears on this platform

Indices and tables