simple_google

Crates.iosimple_google
lib.rssimple_google
version0.1.1
created_at2025-08-12 08:29:33.656753+00
updated_at2025-08-12 09:31:02.299345+00
descriptionA search tool that bypasses Google's CAPTCHA verification
homepagehttps://github.com/LeeeSe/simple_google
repositoryhttps://github.com/LeeeSe/simple_google
max_upload_size
id1791653
size62,626
LeeeSe (LeeeSe)

documentation

README

Simple Google

A Rust library and CLI tool for Google search that bypasses CAPTCHA verification.

Installation

cargo install --git https://github.com/LeeeSe/simple_google

CLI Usage

# Basic search
simple_google "rust programming"

# Multiple pages
simple_google "machine learning" --pages 3

Library Usage

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(())
}
Commit count: 0

cargo fmt