[][src]Function gleam_finder::google::search

pub fn search(page: usize) -> Vec<String>

Search google for a something and returns result urls.
See Google Advanced Search for more information about request syntax.
Only one page is loaded.

Examples

use gleam_finder::google;
 
// get every page mentionning gleam.io in the last hour
// note that we only test the first page of google results and that there can be more
let links = google::search(0);