WikiClientLibrary icon indicating copy to clipboard operation
WikiClientLibrary copied to clipboard

/*🌻*/ Wiki Client Library is an asynchronous MediaWiki API client library targeting modern .NET platforms

Results 25 WikiClientLibrary issues
Sort by recently updated
recently updated
newest added

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...

dependencies

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...

MediaWiki
bug: by design

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 =...

bug
MediaWiki

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")...

bug
MediaWiki

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,...

Refactor
WCL Meta

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...

question
Wikibase

For some reason the URL for SIteLink's is always null. ```csharp var entity = new Entity(_wikiDataSite, "Q1022"); await entity.RefreshAsync( EntityQueryOptions.FetchAllProperties ); ``` ![image](https://user-images.githubusercontent.com/59543085/100717634-f9a5d980-33c2-11eb-98bf-bac45b0cef0d.png) I also tried around with `EntityQueryOptions` e.g....

bug

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...

enhancement
MediaWiki
grab and go

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...

question
MediaWiki
Wikipedia