| Crates.io | simple_google |
| lib.rs | simple_google |
| version | 0.1.1 |
| created_at | 2025-08-12 08:29:33.656753+00 |
| updated_at | 2025-08-12 09:31:02.299345+00 |
| description | A search tool that bypasses Google's CAPTCHA verification |
| homepage | https://github.com/LeeeSe/simple_google |
| repository | https://github.com/LeeeSe/simple_google |
| max_upload_size | |
| id | 1791653 |
| size | 62,626 |
A Rust library and CLI tool for Google search that bypasses CAPTCHA verification.
cargo install --git https://github.com/LeeeSe/simple_google
# Basic search
simple_google "rust programming"
# Multiple pages
simple_google "machine learning" --pages 3
use simple_google::{search_and_parse, SearchResult};
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let query = "rust programming language";
let pages = 1;
let results = search_and_parse(query, pages).await?;
for result in results {
println!("Title: {}", result.title);
println!("URL: {}", result.link);
println!("Snippet: {}", result.snippet);
}
Ok(())
}