tabelog_searcher

Crates.iotabelog_searcher
lib.rstabelog_searcher
version0.1.0
sourcesrc
created_at2018-02-07 00:15:48.832101
updated_at2018-02-07 00:15:48.832101
descriptiontabelog_searcher searchable food shop by area and word.
homepage
repositoryhttps://github.com/atsushi130/tabelog-searcher
max_upload_size
id49923
size22,111
Atsushi Miyake (atsushi130)

documentation

README

tabelog-searcher

MIT / Apache2.0 dual licensed
tabelog-searcher's searchable area is Japan.

Usage

extern crate tabelog_searcher;
use tabelog_searcher::TabelogClient;

fn main() {

    let result = TabelogClient.search("渋谷", "ラーメン");
    
    match result.is_empty() {
        true  => println!("not found."),
        false =>
            for url in result {
                println!("{}", url);
            }
    }
}

Support area

  • Japan

License

tabelog-searcher is available under the MIT and Apache 2.0 license. See the LICENSE file.

Commit count: 41

cargo fmt