Skip to content

Latest commit

 

History

History
58 lines (41 loc) · 1.55 KB

readme.md

File metadata and controls

58 lines (41 loc) · 1.55 KB

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.