WikiClientLibrary
WikiClientLibrary copied to clipboard
/*🌻*/ Wiki Client Library is an asynchronous MediaWiki API client library targeting modern .NET platforms
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 9.0.1 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
I have the following class: ``` internal class WantedPage : WikiPage { internal WantedPage(WikiPage wikiPage) : base(wikiPage.Site, wikiPage.Title) { } } ``` It (and other classes like it) have been...
I used the following code to get log entries via the RecentChangesEnumerator: ``` var generator = new RecentChangesGenerator(wiki) { PaginationSize = 50, EndTime = DateTime.Parse("13:36, 30 October 2021"), TypeFilters =...
Example code: ```c# [Fact] public async Task Test1() { var client = new WikiClient(); var site = new WikiSite(client, "https://warriors.fandom.com/api.php"); await site.Initialization; var result = await new CategoryMembersGenerator(site, "Category:Spotfur's Rebellion")...
WCL users, Thanks for supporting this library during the past 4 years! For now, WCL is supporting .NET Standard platform version as low as 1.1. While this provides great compatibility,...
CSProj files have been updated to enable SourceLink in your nuget --- *[This pull request was created with an automated workflow]* I noticed that your repository and Nuget package are...
I am looking for a way to query an entity using the name and finding the QID for it. Can someone point me to an example? Thanks! Here is what...
For some reason the URL for SIteLink's is always null. ```csharp var entity = new Entity(_wikiDataSite, "Q1022"); await entity.RefreshAsync( EntityQueryOptions.FetchAllProperties ); ```  I also tried around with `EntityQueryOptions` e.g....
c.f. [mw:API:Imageinfo](https://www.mediawiki.org/wiki/API:Imageinfo) Here are some suggestion on what we can do more based on #74 * Some of the `ExtMetadata` are actually well-known so we may consider exposing them in...
My use cause: I'm using geosearch to get all the points in a certain area. For each point I get the extended data I need and store it in the...