Ruby Gem Icon Dandelion API Ruby Gem

Code Climate Travis CI Gem Version Coverage Status

Installation

Add this line to your application's Gemfile:

gem 'dandelionapi'

And then execute:

$ bundle install

Setup

Setup configuration parameters

Dandelionapi.configure do |c|
  c.token = "your-token-for-dandelionapi-account"
  c.endpoint = "https://api.dandelion.eu/"
end

Usage

Methods references are taken from Dandelion API's documentation.

Entity Extraction API: This is a named entity extraction & linking API that performs very well even on short texts, on which many other similar services do not. It currently works on English, French, German, Italian and Portuguese texts. With this API you will be able to automatically tag your texts, extracting Wikipedia entities and enriching your data.

element = Dandelionapi::EntityExtraction.new
response = element.analyze(text: "This is a test")

Text Similarity API: This API is a semantic sentence similarity API optimized on short sentences. With this API you will be able to compare two sentences and get a score of their semantic similarity. It works even if the two sentences don't have any word in common.

element = Dandelionapi::TextSimilarity.new
response = element.analyze(text1: "This is a test", text2: "This is another test")

Language Detection API: Language Detection API is a simple language identification API; it is a tool that may be useful when dealing with texts, so we decided to open it to all our users. It currently supports more than 96 languages.

element = Dandelionapi::LanguageDetection.new
response = element.analyze(text: "Questo รจ un test")

Sentiment Analysis API: This API analyses a text and tells whether the expressed opinion is positive, negative, or neutral. Given a short sentence, it returns a label representing the identified sentiment, along with a numeric score ranging from strongly positive (1.0) to extremely negative (-1.0).

element = Dandelionapi::SentimentAnalysis.new
response = element.analyze(text: "I'm really disappointed")

About the DandelionAPI project

This library is part of a larger group of libraries used to explore best strategies to build packages among multiple languages. Each library is written using conventions about coding style, filesystem structure, testing, documentation and distribution typical of the language enviroment but preserve the library main concepts. This version use the following conventions for the Ruby environment:


Here is the complete list of available libraries: Ruby, PHP, Node, Python