twitter-scraper

Crates.iotwitter-scraper
lib.rstwitter-scraper
version0.3.0
sourcesrc
created_at2022-08-16 15:02:03.209901
updated_at2022-08-17 17:44:53.599955
descriptionTwitter scraper, no login required. FOR EDUCATIONAL PURPOSES ONLY
homepage
repositoryhttps://github.com/MegaHotel/twitter-scraper
max_upload_size
id646714
size46,019
(MegaHotel)

documentation

README

twitter-scraper

FOR EDUCATIONAL PURPOSES ONLY

Usage example:

use twitter_scraper::{run, TwitterResults};

fn main() {
    let query: String = "#Trump".to_string();
    let results: TwitterResults = run(query, None, None, None).unwrap();
    println!("{:?}", results);
}

FOR EDUCATIONAL PURPOSES ONLY

Commit count: 12

cargo fmt