aylien/textapi

Client library for AYLIEN Text API


Keywords
machine-learning, natural-language-processing, nlp, php, text-analysis
License
Apache-2.0

Documentation

About

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

Installation

To install, simply add it to your composer.json:

{
  "require": {
    "aylien/textapi": "0.7.*"
  }
}

See the Developers Guide for additional documentation.

Example

$textapi = new AYLIEN\TextAPI("YourApplicationId", "YourApplicationKey");
$sentiment = $textapi->Sentiment(array('text' => 'John is a very good football player!'));