Skip to content

A dotnet wrapper for Jikan REST API.

License

Notifications You must be signed in to change notification settings

ThomasAunvik/jikan.net

 
 

Repository files navigation

Build status build status build status License: MIT GitHub issues open

jikan.net

Jikan.net is a .NET wrapper for Jikan RESTful API for parsing data from MyAnimeList. Main objective of the wrapper is to simplify utilization of Jikan API, as strongly typed languages are not-so-easy to use with elastic json (sure we can go use dynamics in .NET, but let's think about performance).

Main attributes

  • Written in .Net Standard 2.0, compatible with .Net Framework (4.6.1 or newer) and .Net Core (2.0 or newer).
  • Fully asynchromous request fetching (can be forced to synchromous if needed).
  • Can handle both SSL encrypted and non-SSL encrypted requests.
  • Light on dependencies (require only Newtonsoft.Json for parsing).
  • Usable with Dependency Injection.

List of features

  • Anime
    • Basic information
    • Characters & Staff
    • Episode
    • News
    • Videos/PV/Episodes
    • Pictures
    • Stats
    • Forum Topics
    • More Info
    • Reviews
    • Recommendations
    • User Updates
  • Manga
    • Basic information
    • Characters
    • News
    • Pictures
    • Stats
    • Forum Topics
    • More Info
    • Reviews
    • Recommendations
    • User Updates
  • People
    • Basic information
    • Pictures
  • Characters
    • Basic information
    • Pictures
  • Search (Anime/Manga/Character/Person)
    • Basic query
    • Filters (Advanced Search)
    • Pagination Support
    • No.# of pages
  • Seasonal Anime
    • Season + Year
    • Undefined airing date
  • Season Archive
  • Anime Scheduling (for current season)
    • Filtering by day of the week.
  • Top
    • Anime
    • Manga
    • People
    • Characters
    • Sub Types & Pagination Support
  • Genre
    • Anime genres
    • Manga genres
  • Producer
  • Magazine
  • User
    • Profile
    • Friends
    • History
      • Filter by Anime/Manga.
    • Anime list
      • Filter by status (watching, completed, etc.)
      • Advanced filters
      • Pagination support
    • Manga list
      • Filter by status (reading, completed, etc.)
      • Advanced filters
      • Pagination support
  • Clubs
    • Profile
    • Member list
      • Pagination support
  • Meta
    • API status

Installation

Package manager

PM> Install-Package JikanDotNet

.NET CLI

>dotnet add package JikanDotNet

Then restore dependencies:

>dotnet restore

Changelog

10.04.2020 - Version 1.3.3

  • Fixes
    • [Search] Fix pagination.
  • Fixes Features
    • [AnimeSearch] Remove SearchAnime(string query, int page AnimeSearchConfig searchConfig) method - MAL does not support pagination for search phrase with advanced filter.
    • [AnimeSearch] Add SearchAnime(AnimeSearchConfig searchConfig) and SearchAnime(AnimeSearchConfig searchConfig, int page) - it does support pagination for advanced filters without search phrase.
    • [MangaSearch] Remove SearchManga(string query, int page MangaSearchConfig searchConfig) method - MAL does not support pagination for search phrase with advanced filter.
    • [MangaSearch] Add SearchManga(MangaSearchConfig searchConfig) and SearchManga(MangaSearchConfig searchConfig, int page) - it does support pagination for advanced filters without search phrase.

Read More

Documentation & Usage example

See project wiki.

About

A dotnet wrapper for Jikan REST API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%