16 lines
487 B
Dart
16 lines
487 B
Dart
import 'package:http/http.dart' as http;
|
|
import 'dart:convert';
|
|
import 'package:unofficial_jisho_api/parser.dart' as jisho_parser;
|
|
|
|
final encoder = JsonEncoder.withIndent(' ');
|
|
|
|
const SEARCH_EXAMPLE = '保護者';
|
|
final SEARCH_URI = jisho_parser.uriForPhraseScrape(SEARCH_EXAMPLE);
|
|
|
|
void main() async {
|
|
|
|
await http.get(SEARCH_URI).then((result) {
|
|
final parsedResult = jisho_parser.parsePhrasePageData(result.body, SEARCH_EXAMPLE);
|
|
print(encoder.convert(parsedResult));
|
|
});
|
|
} |