Project

nyt_search

0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby wrapper for the NYTimes Article Search API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.10
~> 10.0
>= 0

Runtime

 Project Readme

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)

Available options:

query
sort(newest, oldest)
page
begin_date(YYYYMMDD)
end_date(YYYYMMDD)
only("headline,web_url") #hash will have only this fields

Limits the fields returned in your search results. By default (unless you include an "only" list in your request), the following fields are returned:

web_url
snippet
lead_paragraph
abstract
print_page
blog
source
multimedia
headline
keywords
pub_date
document_type
news_desk
byline
type_of_material
_id
word_count

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.