/aylien_textapi_python

AYLIEN's officially supported Python client library for accessing Text API

Primary LanguagePythonOtherNOASSERTION

About

This is the Python client library for AYLIEN's APIs. If you haven't already done so, you will need to sign up.

Installation

To install, simply use pip:

$ pip install --upgrade aylien-apiclient

See the Developers Guide for additional documentation.

Example

from aylienapiclient import textapi
c = textapi.Client("YourApplicationID", "YourApplicationKey")
s = c.Sentiment({'text': 'John is a very good football player!'})

Third Party Libraries and Dependencies

The following libraries will be installed when you install the client library:

  • httplib2

For development you will also need the following libraries:

  • httpretty
  • unittest2
  • nose