Metadata-Version: 2.0
Name: repustate
Version: 1.1.0
Summary: A Python client to the Repustate text analytics API
Home-page: https://bitbucket.org/repustate/repustate-clients/
Author: Repustate Inc.
Author-email: info@reputate.com
License: MIT
Keywords: text analytics sentiment
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Linguistic
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: requests

===============================
Python Client for Repustate API
===============================

This is a Python client to the Repustate API. You must first get an API key from `repustate.com <http://www.repustate.com>`_. 

Here's a simple example of how to use the Python client:

.. code block:: python
    >>> import repustate
    >>> client = repustate.Client(api_key='YOUR_API_KEY')
    >>> client.score(text='I want the sentiment for this lovely text')
    {"status":"OK", "score":0.3782}

You can use the Repustate API to perform text analytics in multiple languages including:

- Arabic
- Chinese
- English
- French
- German
- Italian
- Russian
- Spanish
- More coming soon ...


