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/"
c.path = "datatxt/"
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::Request.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::Request.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::Request.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::Request.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:
- Tested using RSpec
- Documented using YARD
- Quality monitored using Travis CI, Code Climate and Coveralls
- Packed using Bundler and Gem
- Distributed over RubyGems as dandelionapi
Here is the complete list of available libraries: Ruby, PHP, Node, Python