Wiki.Net
1.0.0
.NET Core 2.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Wiki.Net --version 1.0.0
NuGet\Install-Package Wiki.Net -Version 1.0.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="Wiki.Net" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Wiki.Net --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Wiki.Net, 1.0.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 Wiki.Net as a Cake Addin
#addin nuget:?package=Wiki.Net&version=1.0.0
// Install Wiki.Net as a Cake Tool
#tool nuget:?package=Wiki.Net&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Wiki.Net
Wiki.Net – An unofficial C# Wikipedia API
Features
Searches Wikipedia (duh!) and returns:
- Page ID
- Titles
- Word Count
- Size (bytes?)
- Text Preview
- URL of page
Getting Started
Installation
You can install via NuGet using the package manager command:
Install-Package Wiki.Net -Version 1.0.0
You can also download the binaries from the releases.
Example
string searchString = “Computer”;
WikiSearchResponse response = WikiSearcher.Search(searchString);
Console.WriteLine($"\nResults found ({searchString}):\n");
for (int i = 0; i < response.SearchResults.Length; i++)
{
WikiSearchResult result = response.SearchResults[i];
Console.WriteLine($"\t{result.Title} ({result.WordCount} words, {result.Size} bytes, id {result.PageId}):\t{result.Preview}...\n\tAt {result.Url}\n\tLast edited at {result.LastEdited}\n");
}
Console.ReadLine();
Output
Computer (12154 words)
A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern...
https://en.wikipedia.org/?curid=7878457
Computer science (7267 words)
Computer science (sometimes called computation science or computing science, but not to be confused with computational science or software engineering)...
https://en.wikipedia.org/?curid=5323
*More results*
Authors
EternalClickbait - Initial work - EternalClickbait
License
This project is licensed under the Mozilla Public License 2.0 – see the LICENSE file for details.
Product | Versions 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. |
.NET Core | netcoreapp2.2 is compatible. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 2.2
- Newtonsoft.Json (>= 9.0.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Wiki.Net:
Package | Downloads |
---|---|
VCLua_Framework
Package Description |
|
VB_Extensions
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.