Hassie.NET.API.NewsAPI 2.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Hassie.NET.API.NewsAPI --version 2.1.0
NuGet\Install-Package Hassie.NET.API.NewsAPI -Version 2.1.0
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="Hassie.NET.API.NewsAPI" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Hassie.NET.API.NewsAPI --version 2.1.0
#r "nuget: Hassie.NET.API.NewsAPI, 2.1.0"
#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 Hassie.NET.API.NewsAPI as a Cake Addin
#addin nuget:?package=Hassie.NET.API.NewsAPI&version=2.1.0

// Install Hassie.NET.API.NewsAPI as a Cake Tool
#tool nuget:?package=Hassie.NET.API.NewsAPI&version=2.1.0

NewsAPI.NET

Build Status

NewsAPI.NET is a asynchronous API wrapper around News API. It is based on their new v2 API and is a work in progress. At the moment, the top headlines and news sources endpoint has been implemented. It is written in NET Standard 1.1.

NuGet

This library is available on NuGet, under the package name Hassie.NET.API.NewsAPI. The current version is 2.1.0.

Example usage

INewsClient newsClient = new ClientBuilder()
    {
        ApiKey = "Your API Key";
    }
	.Build();

INewsArticles newsArticles = await newsClient.GetTopHeadlines(new TopHeadlinesBuilder()
	.WithCountryQuery(Country.GB)
	.WithLanguageQuery(Language.EN)
	.WithSourcesQuery(Source.BBC_NEWS, Source.BBC_SPORT)
	.Build());

foreach (INewsArticle article in newsArticles)
{
	Console.WriteLine(article.Author);
	Console.WriteLine(article.Description);
	Console.WriteLine(article.ImageURL);
	Console.WriteLine(article.PublishTime);
	Console.WriteLine(article.SourceName);
	Console.WriteLine(article.Title);
	Console.WriteLine(article.URL);
}

License

Copyright ©2018 Hassie.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.1 is compatible.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
2.2.1 1,157 4/2/2018
2.2.0 981 2/11/2018
2.1.0 924 2/4/2018
2.0.1 864 2/3/2018
2.0.0 943 2/1/2018
1.0.2 1,005 1/27/2018
1.0.1 957 1/16/2018
1.0.0 1,059 1/16/2018

Version 2.1.0
* INewsArticles and INewsSources now return a read only list of INewsArticle and INewsSource respectively, you no longer have to use the Articles/Sources property within the interface to retrieve the list.

Version 2.0.1
* Bug fixes.

Version 2.0.0
* Rewrote API wraper to use builder pattern.
* Implemented Sources endpoint.
* Please refer to documentation to see the updated example usages.