Metadata-Version: 2.1
Name: twitter-sentiment
Version: 0.0.1
Summary: Twitter sentiment is a Python library leveraging NLP and the Twitter API to determine the emotion of a tweet
Home-page: https://github.com/TeddyCr/twitter-sentiment
Author: Teddy Crepineau
Author-email: teddy.crepineau@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Other Audience
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/markdown

Python library to Explore Emotions Behind Tweets
================================================

|license| |python_version| |coverage| |test|

python-sentiment is a Python package leveraging NLP algorithm and the Twitter API to score the sentiment of a tweet.

Installation 
------------ 
Installing twitter-sentiment is simple, you just have to use pip.
::

    pip install twitter-sentiment


Documentation
-------------  
Documentation is available at `twitter-sentiment.readthedocs.io <https://twitter-sentiment.readthedocs.io/en/latest/index.html>`_

twitter-sentiment in a nutshel  
------------------------------
twitter-sentiment let you score a tweet/list of tweets on a scale of -1 to 1. A score below 0 represents a negative tweet, while a score greater than 0 represents a positive tweet. To score a tweet, twitter-sentiment levereage TextBlob Naive Byaise NLP library. More information can be find at `textblob.readthedocs.io <https://textblob.readthedocs.io/en/dev/advanced_usage.html#sentiment-analyzers>`_

.. |license|  image:: https://img.shields.io/packagist/l/doctrine/orm.svg?style=flat-square   :alt: Packagist
.. |python_version| image:: https://img.shields.io/badge/Python-3-yellow.svg?style=flat-square
.. |test| image:: https://img.shields.io/teamcity/codebetter/bt428.svg?style=flat-square   :alt: TeamCity CodeBetter
.. |coverage| image:: https://img.shields.io/teamcity/coverage/bt428.svg?style=flat-square   :alt: TeamCity CodeBetter Coverage



