unofficial_jisho_api_dart/lib/parser.dart

11 lines
544 B
Dart
Raw Normal View History

2020-06-25 23:40:54 +02:00
/// This library provides parsing functions for html pages from Jisho.org,
/// and the associated URI-producing functions.
///
/// This might be useful for using a CORS proxy, or if you have your own system/library
/// for providing HTML.
2020-06-25 22:42:16 +02:00
library unofficial_jisho_parser;
2020-06-26 00:20:58 +02:00
export './src/exampleSearch.dart' show uriForExampleSearch, parseExamplePageData;
2020-06-26 01:59:23 +02:00
export './src/kanjiSearch.dart' show uriForKanjiSearch, parseKanjiPageData;
export './src/phraseScrape.dart' show uriForPhraseScrape, parsePhrasePageData;
export './src/phraseSearch.dart';