CodeHelper.API.NYTimes 1.2.2

dotnet add package CodeHelper.API.NYTimes --version 1.2.2
NuGet\Install-Package CodeHelper.API.NYTimes -Version 1.2.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CodeHelper.API.NYTimes" Version="1.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodeHelper.API.NYTimes --version 1.2.2
#r "nuget: CodeHelper.API.NYTimes, 1.2.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CodeHelper.API.NYTimes as a Cake Addin
#addin nuget:?package=CodeHelper.API.NYTimes&version=1.2.2

// Install CodeHelper.API.NYTimes as a Cake Tool
#tool nuget:?package=CodeHelper.API.NYTimes&version=1.2.2

CodeHelper.API.NYTimes

CodeHelper.API.NYTimes is a lightweight and simple .NET Wrapper to get links and metadata for Times' articles as soon as they are published on NYTimes.com. The Times Newswire API provides an up-to-the-minute stream of published articles. You can filter results by source (all, nyt, inyt) and section (arts, business, ...).

Info + Question?

Support

You can support the work if you want:

Dependencies

Version

  • 1.2.2 : Get Movie critic names, Get Crtics Picks, Search Movie Reviews
  • 1.1.0 : Get Best Seller Lists, Get Books on a specific list, Get NYT Book reviews by author¦isbn¦title
  • 1.0.0 : Get Sections, Get Latest Articles, Get Top Stories, Get Most Popular, Article Search, Article Archives

Methods

  • NYTimesArticlesHelper.GetSections() : Returns the available sections, like Arts, Business,...

  • NYTimesArticlesHelper.GetLatestArticles(string source = SourceTypes.All, string section = "all") : Get links and metadata for NY Times' articles as soon as they are published on NYTimes.com.

  • NYTimesArticlesHelper.GetTopStories(string section = "home") : Returns an array of articles currently on the specified section (arts, business, ...).

  • NYTimesArticlesHelper.GetMostPopularArticles(string resourceType = "", int period=1, string sharedType = "") : Returns the most popular articles on NYTimes.com based on emails, shares, or views for specified period of time (1 day, 7 days, or 30 days).

  • NYTimesArticlesHelper.ArticleSearch(string qurey, int page = 0) : Look up articles by keyword.

  • NYTimesArticlesHelper.GetArticleArchive(int year, int month) : Returns an array of NYT articles for a given month, going back to 1851.

  • NYTimesBooksHelper.GetBestSellerLists() : Returns a list of all the NYT Best Sellers Lists.

  • NYTimesBooksHelper.GetBookReviews(string reviewByType, string reviewByValue) : Returns a list NYT book review by author, ISBN, or title.

  • NYTimesMoviesHelper.GetCriticNames() : Returns a list of movie critic names

  • NYTimesMoviesHelper.GetCriticsPicks() : Returns a list of movie reviews that are critics' picks

  • NYTimesMoviesHelper.Search(string query, string dateFrom, string dateTo) : Returns a list of movie reviews bases on words in the titke (query)

Use of Code

using CodeHelper.API.NYTimes;
using CodeHelper.API.NYTimes.Articles;

NYTimesArticlesHelper _helper = new() { ApiKey = "YOUR_NYTIMES_API_TOKEN"" };
var _articles = _helper.GetTopStories("arts");

NYTimesBooksHelper _helperBooks = new() { ApiKey = "YOUR_NYTIMES_API_TOKEN"" };
var _lists = await _helperBooks.GetBestSellerLists();
var _books = await _helperBooks.GetBooksOnList("hardcover-fiction");
var _reviews = await _helperBooks.GetBookReviews(ReviewByTypes.Author, "Stephen King");

NYTimesMoviesHelper _helperMovies = new() { ApiKey = "YOUR_NYTIMES_API_TOKEN"" };
var _critics = _helperMovies.GetCriticNames();

Authentication

NY Times API uses API key to authenticate requests. You can view and manage your API keys in the My Apps page https://developer.nytimes.com/my-apps

Usage

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.2 414 9/23/2022
1.2.1 361 8/29/2022
1.2.0 352 8/29/2022
1.1.0 361 8/29/2022
1.0.0 361 8/29/2022