kodict 0.2.0

Provides Korean Dictionary Implements and Crawler for Rust
docs.rs failed to build kodict-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: kodict-0.2.1

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);
}

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.