2020-06-25 23:01:38 +02:00
|
|
|
import 'dart:convert';
|
2020-06-26 01:59:23 +02:00
|
|
|
import 'package:http/http.dart' as http;
|
2020-06-25 23:01:38 +02:00
|
|
|
import 'package:unofficial_jisho_api/parser.dart' as jisho_parser;
|
|
|
|
|
2020-06-26 01:59:23 +02:00
|
|
|
final JsonEncoder encoder = JsonEncoder.withIndent(' ');
|
2020-06-25 23:01:38 +02:00
|
|
|
|
2020-06-26 01:59:23 +02:00
|
|
|
const String searchKanji = '車';
|
|
|
|
final String searchURI = jisho_parser.uriForKanjiSearch(searchKanji);
|
2020-06-25 23:01:38 +02:00
|
|
|
|
|
|
|
void main() async {
|
2020-06-26 01:59:23 +02:00
|
|
|
await http.get(searchURI).then((result) {
|
|
|
|
final parsedResult = jisho_parser.parseKanjiPageData(result.body, searchKanji);
|
2020-06-25 23:01:38 +02:00
|
|
|
print('JLPT level: ${parsedResult.jlptLevel}');
|
|
|
|
print('Stroke count: ${parsedResult.strokeCount}');
|
|
|
|
print('Meaning: ${parsedResult.meaning}');
|
|
|
|
});
|
|
|
|
}
|