Skip to content

TaceyWong/emojislib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

9 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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_....

About

Emojis for Python πŸ˜„ πŸπŸ˜‹

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages