bench_scraper

Crates.iobench_scraper
lib.rsbench_scraper
version0.4.1
sourcesrc
created_at2022-11-16 05:57:13.447057
updated_at2022-12-03 21:15:33.994945
descriptionA library for grabbing browser cookies from a filesystem
homepage
repositoryhttps://github.com/goakley/bench_scraper/
max_upload_size
id716180
size129,882
Glen Oakley (goakley)

documentation

https://docs.rs/bench_scraper

README

Bench Scraper

Bench Scraper is a library for grabbing browser cookies from a filesystem.

Different browsers store their cookies in different locations, with different encryption methods, in different ways across operating system. Bench scraper abstracts this complexity into a few easy-to-use functions.

use bench_scraper::find_cookies;

fn main() {
    let browser_cookies = find_cookies().unwrap();
    for browser_cookie in browser_cookies.iter() {
        println!("Cookies for '{:?}'", browser_cookie.browser);
        for cookie in browser_cookie.cookies.iter() {
            println!("    '{:?}'", cookie);
        }
    }
}

The reqwest feature on this crate allows you to turn an iterator of cookies into a reqwest cookie jar. This lets you make web requests using the same state as a browser.

let browser_cookie = bench_scraper::find_cookies().unwrap().into_iter().next().unwrap();
let jar: reqwest::cookie::Jar = browser_cookie.cookies.into_iter().collect();

Browser Support

This library maintains a list of known browsers that can be used with the wildcard find_cookies() function. If you are using a non-standard browser or installation, other functions are available which allow for custom browser settings.

If you use a common browser that isn't supported, please file an issue with details on the browser!

Operating System Support

This library attempts to support a wide range of operating systems and browsers. Different functionality is gated based on the target for which the project using the library is compiled.

Currently, the library supports Windows, MacOS ("Darwin"), and Linux. If you have another operating system you'd like supported, please file an issue with details on how the implementation might look.

Commit count: 34

cargo fmt