#dictionary #korean #crawler #hangul

bin+lib kodict

Provides Korean Dictionary Implements and Crawler for Rust

6 releases

0.2.1 Jan 26, 2019
0.2.0 Jan 23, 2019
0.1.3 Nov 29, 2018

#175 in Internationalization (i18n)

MIT license

20KB
411 lines

Kodict

Korean Dictionary Manager for Rust

Crates.io Crates.io

Changelog

See CHANGELOG

Features

  • Crawl words from the online dictionary.
  • Find the given word from a dictionary.
  • Read and write a dictionary file.

Supported online dictionaries available crawling

Crawl Standard Korean Dictionary and save as TSV file:

extern crate kodict;

use kodict::{crawler, fs};
use std::path::Path;

fn main() {
    let words = crawler::get_standard_dictionary_words();
    fs::write_as_tsv(Path::new("./dictionary.tsv"), &words);
}

Notice: Crawling Open Korean Dictionary spends too much time. You can download it here.

Parse dictionary.zip/words0.xls downloaded from Open Korean Dictionary:

extern crate kodict;

use kodict::{Dictionary, parser};
use std::path::Path;

fn main() {
    let words = parser::parse_open_dictionary_xls(Path::new("./words0.xls"));
    let dictionary = Dictionary::new(words);
}

If you want to convert Open Korean Dictionary’s XLS to TSV, use xls2tsv executable.

Convert a dictionary directory to TSV file:

xls2tsv input_dir/ output.tsv

Convert a dictionary file to TSV file:

xls2tsv input.xls output.tsv

Installation

  • Install with cargo.

  • Clone the repo:

git clone https://github.com/Astro36/kodict.git

Usage

API Documentation

See API

License

Copyright (c) 2019 Seungjae Park

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Kodict is licensed under the MIT License.

Dependencies

~25MB
~538K SLoC