Metadata-Version: 1.2
Name: emotlib
Version: 1.0.0
Summary: Python emoji + emoticon Library
Home-page: https://github.com/steven5538/emotlib
Author: steven5538
Author-email: steven5538@gmail.com
License: MIT License
Description: # emotlib: Python emoji + emoticon Library
        
        [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/emotlib.svg)](https://pypi.org/project/emotlib/)
        [![PyPI](https://img.shields.io/pypi/v/emotlib.svg)](https://pypi.org/project/emotlib/)
        [![Travis branch](https://img.shields.io/travis/steven5538/emotlib/master.svg)](https://travis-ci.org/steven5538/emotlib)
        [![Coveralls github](https://img.shields.io/coveralls/github/steven5538/emotlib.svg)](https://coveralls.io/github/steven5538/emotlib)
        [![Read the Docs](https://img.shields.io/readthedocs/emotlib.svg)](http://emotlib.readthedocs.io/en/latest/)
        ![PyPI - License](https://img.shields.io/pypi/l/emotlib.svg)
        
        Installation
        ------------
        
        To install emotlib, simply use [pipenv](http://pipenv.org/) (or pip, of course):
        ```
        $ pipenv install emotlib
        🍩🎉
        ```
        Satisfaction guaranteed.
        
        Example
        -------------
        
        Note: In python2.x, your string need to be unicode. Ex: u'I\'m :elf:'
        ``` python
        >> import emotlib
        >> print(emotlib.emoji())
        🧙‍
        >> print(emotlib.emoji(category='food-fruit'))
        🍉
        >> print(emotlib.emoji(num=3))
        👨‍🚀👨‍🚀👨‍🚀
        >> print(emotlib.emoji(num=3, sep= ' ~ '))
        🤸 ~ 🤸 ~ 🤸 ~ 
        >> print(emotlib.emojify('I\'m :man_technologist:'))
        I'm 👨‍💻
        >> print(emotlib.emojify('I\'m :man~technologist:', alias='~'))
        I'm 👨‍💻
        >> print(emotlib.demojify('I\'m 👨‍💻'))
        I'm :man_technologist:
        >> print(emotlib.demojify('I\'m 👨‍💻', alias='~'))
        I'm :man~technologist:
        
        
        >> print(emotlib.emoticon())
        ( ´ ▽ ` )ﾉ
        >> print(emotlib.emoticon(feel='confused'))
        (´−｀) ﾝｰ
        >> print(emotlib.emoticon(num=3))
        ┌（★ｏ☆）┘┌（★ｏ☆）┘┌（★ｏ☆）┘
        >> print(emotlib.emoticon(num=3, sep=' ~ '))
        (´∇ﾉ｀*)ノ ~ (´∇ﾉ｀*)ノ ~ (´∇ﾉ｀*)ノ ~ 
        >> print(emotlib.emoticonify('I\'m a happy developer.'))
        I'm a happy developer. *(*´∀｀*)☆
        ```
        
        Check categories & feels
        ```python
        >> import emotlib
        >> emotlib.emoji_categories
        >> emotlib.emoticon_feels
        ```
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: Chinese (Traditional)
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Communications
Classifier: Topic :: Communications :: BBS
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Communications :: Internet Phone
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
