Skip to content

ez1sgt/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

31.07.2019 - Version 1.3.0

  • Integration with Jikan API v3.3.
  • Features
    • [Search] Improved searching for manga and anime
      • Order by data (Title, score, etc.)
      • Filter Producer (anime) or Magazine (manga)
      • Improved multiple genre query.
    • [UserList] Advanced User Lists (Anime/Manga) queries
      • Usable by passing UserListAnimeSearchConfig to GetUserAnimeList and UserListMangaSearchConfigto GetUserMangaList methods
        • Order by data: OrderBy, OrderBy2 (Title, score, etc.)
        • Sort by ascending/descending - SortBy
        • Search user list: Query property
        • New Anime filters: Producer, Season, Year, AiringStatus
        • New Manga filters: Magazine, PublishingStatus
        • Paging support: Page property
  • Fixes
    • [AnimeEpisoded] changed Aired property from TimeSpan (a pair of DateTime) to single DateTime

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%