search_with_google 0.2.0

A simple library to crawl the google search page
docs.rs failed to build search_with_google-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: search_with_google-0.5.0

Search With Google

Usage

extern crate search_with_google;

fn main() {
use search_with_google::search;

let results = search("rust", 3, None);
if let Ok(result_list) = results{
println!("Title: {}", result_list[0].title);
}
}