Skip to content

Myuuiii/KanjiNET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KanjiNET

KanjiNET


API Wrapper for the Jisho API (v1)

Nuget Downloads GitHub Open Issues GitHUb Latest Version

This wrapper makes it easy to get the definition of a kanji character and or find words that make use of it kanjiapi.dev


Downloads

Stable builds can be found here: NuGet


Usage

To get a definition from the Kanji API here's what you should do:

Create an instance of the KanjiClient

KanjiClient client = new KanjiClient();

Using this client you can start interacting with the API.

Get a kanji's definition

KanjiDefinition result = client.GetKanjiDefinition("").Data;

Get a list of kanji by grade

String[] results = client.GetKanjiByGrade(Grade.Grade_1).Data;

Get a list of kanji by reading

KanjiReading result = client.GetKanjiByReading("あり").Data;

Get a list of words that make use of the given kanji

KanjiWord[] results = client.GetKanjiWords("").Data;



Information

If anything's not working feel free to create an issue and I'll take a look at it! I'll try to keep this wrapper working if the API updates.