Skip to content

returns anime covers from sites like myanimelist and anilist

License

Notifications You must be signed in to change notification settings

Ruffythemonkey/AnimeCoverImage

Repository files navigation

AnimeCoverImage 👀

.NET Core Desktop

Is a library for searching anime covers from various sources in .net8

How to use it

Lets Start

using AnimeCoverImage.Services;

IAnimeCoverImage myAnimeList = new MyAnimeListCom();

// x returns a Dictionary<string, string>
// Key = name of the Anime
// Value = url to the Image
var x = await myAnimeList.GetAnimeCoverAsync("Dragon ball");

Note

The first result is always the best.

All results in one overview

Debug.WriteLine(string.Join("\n", x.ToArray()));

Supported Services

MyAnimeList
AniList

coded in

dotnetcore logo csharp logo