Metadata-Version: 2.1
Name: emojis
Version: 0.3.1
Summary: Emojis for Python
Home-page: https://github.com/alexandrevicenzi/emojis
Author: Alexandre Vicenzi
Author-email: pypi@alxd.me
Maintainer: Alexandre Vicenzi
Maintainer-email: pypi@alxd.me
License: MIT
Keywords: python,emoji,emojis,unicode
Platform: 
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Topic :: Utilities

Emojis |Documentation Status| |Build Status| |PyPI| |PyPI - Python Version|
===========================================================================

Emojis for Python

About
-----

This library allows you to emojify content such as:
``This is a message with emojis :smile: :snake:``

See the `Emoji cheat sheet <http://www.emoji-cheat-sheet.com/>`__ for
more aliases.

Emoji database based on `gemoji <https://github.com/github/gemoji>`__.

Example
-------

.. code:: python

    >>> import emojis

    >>> emojis.encode('This is a message with emojis :smile: :snake:')
    'This is a message with emojis 😄 🐍'

    >>> emojis.decode('This is a message with emojis 😄 🐍')
    'This is a message with emojis :smile: :snake:'

    >>> emojis.get('Prefix 😄 🐍 😄 🐍 Sufix')
    {'😄', '🐍'}

    >>> emojis.count('😄 🐍 😄 🐍')
    4

    >>> emojis.count('😄 🐍 😄 🐍', unique=True)
    2

    >>> emojis.db.get_emoji_by_alias('snake')
    Emoji(aliases=['snake'], emoji='🐍', tags=[], category='Nature')

    >>> emojis.db.get_categories()
    ['Activity', 'Flags', 'Foods', 'Nature', 'Objects', 'People', 'Places', 'Symbols']

Installation
------------

Install ``emojis`` with ``pip``.

``pip3 install -U emojis``

Documentation
-------------

`https://emojis.readthedocs.io/ <https://emojis.readthedocs.io/en/latest/>`__

License
-------

MIT

.. |Documentation Status| image:: https://readthedocs.org/projects/emojis/badge/?version=latest
   :target: https://emojis.readthedocs.io/en/latest/?badge=latest
.. |Build Status| image:: https://travis-ci.org/alexandrevicenzi/emojis.svg?branch=master
   :target: https://travis-ci.org/alexandrevicenzi/emojis
.. |PyPI| image:: https://img.shields.io/pypi/v/emojis.svg
   :target: https://pypi.org/project/emojis/
.. |PyPI - Python Version| image:: https://img.shields.io/pypi/pyversions/emojis.svg
   :target: https://pypi.org/project/emojis/


