├── LICENSE ├── MANIFEST.in ├── README.md ├── Text2Emotion.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── Text2Emotion ├── __init__.py └── __pycache__ │ └── __init__.cpython-37.pyc ├── dist ├── Text2Emotion-0.0.1-py3-none-any.whl └── Text2Emotion-0.0.1.tar.gz └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/README.md -------------------------------------------------------------------------------- /Text2Emotion.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/Text2Emotion.egg-info/PKG-INFO -------------------------------------------------------------------------------- /Text2Emotion.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/Text2Emotion.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /Text2Emotion.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Text2Emotion.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | nltk 2 | emoji>=0.6.0 3 | -------------------------------------------------------------------------------- /Text2Emotion.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Text2Emotion 2 | -------------------------------------------------------------------------------- /Text2Emotion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/Text2Emotion/__init__.py -------------------------------------------------------------------------------- /Text2Emotion/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/Text2Emotion/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /dist/Text2Emotion-0.0.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/dist/Text2Emotion-0.0.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/Text2Emotion-0.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/dist/Text2Emotion-0.0.1.tar.gz -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aman2656/text2emotion-library/HEAD/setup.py --------------------------------------------------------------------------------