Skip to main content

a python library that imagify emoji-unicode

Project description

IMOJIFY

a python library that maps almost every emoji to its color image

it's used to get visual representation of emoji unicode

imojify can be used to solve the problem of plotting emojis as labels in python plotting libraries

Installation

    pip install imojify

Quickstart

Get emoji Image

from PIL import Image

from imojify import imojify

Image.open(imojify.get_img_path('😂'))

output

multiple emoji is also supported

from PIL import Image

from imojify import imojify

Image.open(imojify.get_img_path('😂😂😂😂'))

output

Plotting emojis in matplotlib

from imojify import imojify

from matplotlib import pyplot as plt 

from matplotlib.offsetbox import OffsetImage,AnnotationBbox

def offset_image(cords, emoji, ax):

    img = plt.imread(imojify.get_img_path(emoji))

    im = OffsetImage(img, zoom=0.08)

    im.image.axes = ax

    ab = AnnotationBbox(im, (cords[0], cords[1]),  frameon=False, pad=0)

    ax.add_artist(ab)







emjis = ['😂', '🤣', '😔', '😏','😍', '🥰', '😘']

values =[30, 50, 15, 29, 15, 50, 12]



fig, ax = plt.subplots(figsize=(12,8))

ax.bar(range(len(emjis)), values, width=0.5,align="center")

ax.set_xticks(range(len(emjis)))

ax.set_xticklabels([])

ax.tick_params(axis='x', which='major', pad=26)

ax.set_ylim((0, ax.get_ylim()[1]+10))



for i, e in enumerate(emjis):

    offset_image([i,values[i]+5], e, ax)

output

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

imojify-0.1.1.tar.gz (141.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

imojify-0.1.1-py3-none-any.whl (142.1 MB view details)

Uploaded Python 3

File details

Details for the file imojify-0.1.1.tar.gz.

File metadata

  • Download URL: imojify-0.1.1.tar.gz
  • Upload date:
  • Size: 141.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.7

File hashes

Hashes for imojify-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9f714ebe56082fd744a44e8414be0db6e4f3db369baded1918bafeb90476cf61
MD5 8b4d0c3959f8bbe7fb7a85764b3da54f
BLAKE2b-256 a39d677c7833193fdae949803ccb10ff8388b0de1a51c03718c5ffac43eedc73

See more details on using hashes here.

File details

Details for the file imojify-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: imojify-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 142.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.7

File hashes

Hashes for imojify-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 51897408a2ca1b6b603f31c20db99505f5c58fffa754e4b51253d99c6db679e0
MD5 82f913f3e810b3e65e0af9ae7786698f
BLAKE2b-256 9510d5680b4a0eb7e980b8367b6da179a516eeb8adbc1a2019e421253d6d63fb

See more details on using hashes here.

Supported by

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