tabelog-searcher

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

Usage

```rust extern crate tabelogsearcher; use tabelogsearcher::TabelogClient;

fn main() {

let result = TabelogClient.search("渋谷", "ラーメン");

match result.is_empty() {
    true  => println!("not found."),
    false =>
        for url in result {
            println!("{}", url);
        }
}

} ```

Support area

License

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