mirror of
				https://github.com/h7x4/unofficial_jisho_api_dart.git
				synced 2025-11-04 06:16:25 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			251 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			251 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'dart:convert';
 | 
						|
import 'package:unofficial_jisho_api/api.dart' as jisho;
 | 
						|
final JsonEncoder encoder = JsonEncoder.withIndent('  ');
 | 
						|
 | 
						|
void main() async {
 | 
						|
  await jisho.scrapeForPhrase('谷').then((data) {
 | 
						|
    print(encoder.convert(data));
 | 
						|
  });
 | 
						|
} |