Crates.io | tabelog_searcher |
lib.rs | tabelog_searcher |
version | 0.1.0 |
source | src |
created_at | 2018-02-07 00:15:48.832101 |
updated_at | 2018-02-07 00:15:48.832101 |
description | tabelog_searcher searchable food shop by area and word. |
homepage | |
repository | https://github.com/atsushi130/tabelog-searcher |
max_upload_size | |
id | 49923 |
size | 22,111 |
tabelog-searcher's searchable area is Japan.
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);
}
}
}
tabelog-searcher is available under the MIT and Apache 2.0 license. See the LICENSE file.