Skip to main content

Emojis for Python 😄 🐍 😋

Project description

emojislib

Emojis for Python 😄 🐍 😋

Installation

To install the emojislib run:

pip install emojislib

Usage

emojis.Emojis is a dict which contains all emojis available in emojislib.There are two main types of methods in emojislib ,by_ and search_by_.

by_...

by_name

get one emoji by name

import emojislib as emojis

emoji = emojis.by_name('eyes')

print("name:",emoji.name)
print("char:",emoji.char)
print("category:",emoji.category)
print("keywords:",emoji.keywords)

output:

name: eyes
char: 👀
category: people
keywords: ('look', 'watch', 'stalk', 'peek', 'see')

by_cate

get a list of emoji(s) by category.

emoji = emojis.by_cate('animals_and_nature')
print(emoji)

output:

animals_and_nature [ 🐒, 🐵, 🐭, 🐁, 🍄, 🌑, ⚡]

by_key

get a list of emoji(s) by keywords.

emoji = emojis.by_key('winter')
print("winter:",emoji)
winter: [❄️, ⛄, ☃, 🎿, ⛷, 🏂, 🏔]

search_by_...

Thers are 3 search_by_... methods:

  • search_by_name
  • search_by_key
  • search_by_cate

Just replace get emoji(s) by a exact str with get emoji(s) by a part of a exact str compared with by_....

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

emojislib-0.0.1.tar.gz (34.6 kB view hashes)

Uploaded Source

Built Distribution

emojislib-0.0.1-py3-none-any.whl (35.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page