A C# Wrapper for the Booru Image Boards.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
exsersewo fc974c7bab
Create README.md
6 years ago
Booru.Net Oops i done me a goof 6 years ago
.gitattributes Add .gitignore and .gitattributes. 6 years ago
.gitignore Add .gitignore and .gitattributes. 6 years ago
Booru.Net.sln Hello 6 years ago
LICENSE Fixed location of LICENSE 6 years ago
README.md Create README.md 6 years ago

README.md

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 BooruClient = new BooruClient();

var posts = await BooruClient.GetGelbooruImagesAsync("aisha_clanclan", "melfina");

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

List of Methods in Wrapper:

  • GetGelbooruImagesAsync(string[] tags)
  • GetDanbooruImagesAsync(string[] tags)
  • GetRule34ImagesAsync(string[] tags)
  • GetE621ImagesAsync(string[] tags)
  • GetKonaChanImagesAsync(string[] tags)
  • GetYandereImagesAsync(string[] tags)
  • GetRealBooruImagesAsync(string[] tags)