2020-04-04 00:17:28 +01:00
2020-04-04 00:17:28 +01:00
2020-04-04 00:16:18 +01:00
2018-06-05 20:06:07 +01:00
2019-08-13 21:26:21 +01:00
2020-03-28 12:40:29 +00:00

Booru.Net

A C# Wrapper for the Booru Image Boards.

Currently supported Boards are:

  • Safebooru
  • Rule34
  • Realbooru
  • Danbooru
  • Gelbooru
  • Konachan
  • E621
  • Yande.re

How to get started

var GelbooruClient = new GelbooruClient();

var posts = await GelbooruClient.GetImagesAsync("aisha_clanclan", "melfina");

if(posts != null)
{
  ...
}

List<string> tags = new List<string>
{
    "aisha_clanclan",
    "melfina"
};

posts = await GelbooruClient.GetImagesAsync(tags);

if(posts != null)
{
  ...
}

Contributing

If you wish to add more booru's to the wrapper/make the code better/optimise the code, please fork your own version and pull-request it. If you are planning on adding another booru to the wrapper, please do it in a similar style to the currently existing methods.

Description
A C# Wrapper for the Booru Image Boards.
Readme 82 KiB
2020-04-04 01:38:20 +01:00
Languages
C# 100%