Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prx/yahoo_content_analysis
Ruby gem to access and parse Yahoo Content Analysis API
https://github.com/prx/yahoo_content_analysis
Last synced: 16 days ago
JSON representation
Ruby gem to access and parse Yahoo Content Analysis API
- Host: GitHub
- URL: https://github.com/prx/yahoo_content_analysis
- Owner: PRX
- License: mit
- Created: 2013-04-09T15:09:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-04T02:04:00.000Z (over 9 years ago)
- Last Synced: 2024-11-15T20:41:20.650Z (about 1 month ago)
- Language: Ruby
- Size: 179 KB
- Stars: 3
- Watchers: 9
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# YahooContentAnalysis
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](http://opensource.org/licenses/MIT)
[![Build Status](https://travis-ci.org/PRX/yahoo_content_analysis.svg?branch=master)](https://travis-ci.org/PRX/yahoo_content_analysis)
[![Code Climate](https://codeclimate.com/github/PRX/yahoo_content_analysis/badges/gpa.svg)](https://codeclimate.com/github/PRX/yahoo_content_analysis)
[![Coverage Status](https://coveralls.io/repos/PRX/yahoo_content_analysis/badge.svg?branch=master)](https://coveralls.io/r/PRX/yahoo_content_analysis)
[![Dependency Status](https://gemnasium.com/PRX/yahoo_content_analysis.svg)](https://gemnasium.com/PRX/yahoo_content_analysis)Use the Yahoo! Content Analysis API to extract topics and entities.
OAuth access is implemented, though not necessary (the docs imply higher limits if requests are signed). This should be a useful example for those wanting to do 2-legged OAuth access to Yahoo APIs using Faraday and the OAuth Faraday Middleware.
(I am not seeing the additional metadata nor related entities returned as the Yahoo docs claim they should, so YMMV.)
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'yahoo_content_analysis'
```And then execute:
```
$ bundle
```Or install it yourself as:
```
$ gem install yahoo_content_analysis
```## Usage
```ruby
require 'yahoo_content_analysis'YahooContentAnalysis.configure{|y|
y.api_key = ENV['YAHOO_API_KEY']
y.api_secret = ENV['YAHOO_API_SECRET']
}# you can query text
text = 'Italian sculptors and painters of the renaissance favored the Virgin Mary for inspiration.'
r = YahooContentAnalysis::Client.new.analyze(text)
names = r.entities.map { |e| e.name }# you can also query a uri
uri = 'http://www.npr.org/2015/06/03/411524156/in-search-of-the-red-cross-500-million-in-haiti-relief'
r = YahooContentAnalysis::Client.new.analyze(uri)
names = r.entities.map { |e| e.name }
```
## Contributing1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request