From fc974c7bab9c1608e03fef4571c0e9669dd09c8b Mon Sep 17 00:00:00 2001 From: exsersewo Date: Mon, 24 Sep 2018 17:07:57 +0100 Subject: [PATCH] Create README.md Finally added a readme.md --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b5c9da --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# 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 + +```cs +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)`