Imouto.BooruParser 2.0.6

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

// Install Imouto.BooruParser as a Cake Tool
#tool nuget:?package=Imouto.BooruParser&version=2.0.6

Imouto.BooruParser

NuGet license

The dotnet library for retrieving info from booru sites (chan.sankakucomplex.com, danbooru.donmai.us, yande.re, gelbooru.com). You can get individual posts, tags/notes history, and search by tags. Install as NuGet package:

Install-Package Imouto.BooruParser
<PackageReference Include="Imouto.BooruParser" Version="2.*" />

Version 2.0 released!

The new version of this library has been released. It's a complete rewrite and has a lot of breaking changes. Please don't update unless you're ready to spent some time in refactoring and reading.

The new version has gelbooru as partly supported booru. It doesn't provide a way to get tags or notes history, but you can search and retrieve posts by id or md5. To consume this library you should use IBooruApiLoader interface. The library provides following implementations, one for each booru:

var loader = new DanbooruApiLoader(...);
var loader = new YandereApiLoader(...);
var loader = new SankakuApiLoader(...);
var loader = new GelbooruApiLoader(...);

The recommended way to consume them is to regiter them in your container:

services.AddBooruParsers();

// OPTIONAL
// It'ts nessesary for Sankaku auth management. 
// You can skip it, if you don't plan to access sankaku with authorization.
services.AddMemoryCache();

But you can also register them yourself. You also need to provide configuration for booru if you want to have more relaxed limits:

services.Configure<DanbooruSettings>(Configuration.GetSection("Danbooru"));
services.Configure<GelbooruSettings>(Configuration.GetSection("Gelbooru"));
services.Configure<SankakuSettings>(Configuration.GetSection("Sankaku"));
services.Configure<YandereSettings>(Configuration.GetSection("Yandere"));

Each settings has PauseBetweenRequestsInMs param which defines a pause between requests. 0 means you can run your requests in parallel and any positive number means that all requests would be called with the provided pause in ms between them. It's important to have some reserves to not get banned.

! Sankaku is a difficult case for the authorization. It requires access and refresh tokens (you can extract them from cookies), but refresh token has to be updated. So SankakuSettings has a callback method SaveTokensCallbackAsync that will be called, when it's necessary to update refresh and access tokens. It's you responsibility to store them somewhere and pass on the next application start.

Simplest usage

var loader = new DanbooruApiLoader(
    new PerBaseUrlFlurlClientFactory(), 
    Options.Create(new DanbooruSettings()))
    
var post = await loader.GetPostAsync(5628013);
Console.WriteLine(post.Md5);

Version 1.x.x

Simplest usage

var username = "user";~~~~
var apiKey = "HBArbAk4WcKTSeAfsyBO";
var delayBetweenRequestsInMs = 1240;

var danbooruLoader = new DanbooruLoader(username, apiKey, delayBetweenRequestsInMs);
var post = await danbooruLoader.LoadPostAsync(5628013);
Console.WriteLine(post.Md5);
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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
3.3.0 106 1/25/2024
3.2.10 115 1/9/2024
3.2.9 185 12/6/2023
3.2.8 134 11/24/2023
3.2.7 162 10/29/2023
3.2.6 162 10/13/2023
3.2.5 143 10/3/2023
3.2.4 143 10/3/2023
3.2.3 134 10/2/2023
3.1.0 261 6/18/2023
3.0.2 165 6/5/2023
3.0.1 145 2/17/2023
2.0.6 132 12/28/2022
2.0.4 104 11/2/2022
2.0.3 113 10/30/2022
2.0.2 107 10/29/2022
1.18.1 527 9/17/2022
1.17.6 493 9/15/2022
1.17.5 455 9/15/2022
1.17.4 467 9/15/2022
1.17.3 472 9/15/2022
1.17.2 480 9/15/2022
1.17.1 478 9/15/2022
1.17.0 457 9/15/2022
1.16.1 467 9/8/2022
1.15.0 470 5/30/2022
1.14.1 489 5/2/2022
1.14.0 345 1/13/2022
1.13.0 325 1/11/2022
1.12.0 523 1/3/2021
1.11.0 622 5/2/2020
1.10.0 532 4/25/2020
1.9.0 742 2/7/2020
1.8.0 576 1/30/2020
1.7.0 619 12/3/2019
1.6.0 657 8/25/2019
1.5.0 603 8/25/2019
1.4.0 605 8/25/2019
1.3.0 687 3/16/2019
1.2.0 1,182 3/26/2018
1.1.0 1,068 3/25/2018
1.0.1 1,060 1/22/2018
1.0.0 1,116 9/15/2017