2020-06-23 12:46:19 +02:00
|
|
|
import 'dart:convert';
|
2020-06-25 22:42:16 +02:00
|
|
|
import 'package:unofficial_jisho_api/api.dart' as jisho;
|
2020-06-23 12:56:05 +02:00
|
|
|
final encoder = JsonEncoder.withIndent(' ');
|
2020-06-23 12:46:19 +02:00
|
|
|
|
|
|
|
void main() async {
|
|
|
|
await jisho.scrapeForPhrase('谷').then((data) {
|
|
|
|
print(encoder.convert(data));
|
|
|
|
});
|
|
|
|
}
|