NytSearch

A ruby wrapper for the Article Search API v2 - The New York Times

Get your API key here.

Installation

Add this line to your application's Gemfile:

gem 'nyt_search', :git => 'https://github.com/Frylock13/nyt_search.git'

And then execute:

$ bundle

Or install it yourself as:

$ gem install nyt_search

Configuration

NytSearch::Api.key("your_api_key")

If rails, set it in config/environments/

Usage

@search = NytSearch::Article.search(query: "obama", sort: "newest", page: 2)['response']['docs']

Available options: [ query, sort(newest, oldest), page, begin_date(YYYYMMDD), end_date(YYYYMMDD) ]

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Frylock13/nyt_search. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.