Korean Dictionary Manager for Rust
See CHANGELOG
Crawl Standard Korean Dictionary and save as TSV file:
```rust extern crate kodict;
use kodict::{crawler, fs}; use std::path::Path;
fn main() { let words = crawler::getstandarddictionarywords(); fs::writeas_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:
```rust extern crate kodict;
use kodict::{Dictionary, parser}; use std::path::Path;
fn main() { let words = parser::parseopendictionary_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:
bash
xls2tsv input_dir/ output.tsv
Convert a dictionary file to TSV file:
bash
xls2tsv input.xls output.tsv
Install with cargo.
Clone the repo:
bash
git clone https://github.com/Astro36/kodict.git
See API
```text 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.