Metadata-Version: 2.1
Name: emoticon
Version: 1.0.5
Summary: python package to transform any emoticon to text or its meaning
Home-page: UNKNOWN
Author: Ega Febri Dharmawan
Author-email: egafebridh@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: NLTK
Requires-Dist: mtranslate
Requires-Dist: csv

## Emoticon

Emoticon is a Python package to transform or translate emoticon into text or its meaning. Based on list of emotion in wikipedia, i created a library for text mining. This package contain western and eastern emoticon with over 300 emoticon. This package can also translate emoticon into desired language by adding optional argument.

# How to install

```
pip install emoticon
```

# Usage

Following code will show you example how to use this package

From text to emoticon :
```
from emoticon import emoticon

text = ":) :("
emoticon(text)
```

Output : "Smile Sad"

You can also specify the desired language by adding optional argument, for example if you want to return indonesian language, use 'id' as optional parameter.

```
from emoticon import emoticon

text = ":) :("
emoticon(text, 'id')
```

Output : "Senyum Sedih"

if you don't specify, it will return english by default.

From emoticon to text :

```
from emoticon import demoticon

text = "Smile Sad"
demoticon(text)
```

Output : ":) :("

