c1e7e93ed7784bf04e8ef19036d25a6a183e3be9
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
Releases
6
Release: 2.0.5
Latest
Languages
C#
100%