3 releases (breaking)

0.2.0 Nov 11, 2022
0.1.0 Nov 11, 2022
0.0.0 Nov 10, 2022

#324 in Email

31 downloads per month

MPL-2.0 license

12KB
289 lines

Find Github Email

Find github user email.

API

https://docs.github.com/en/rest/activity/events

Online

Rust

#[tokio::test]
async fn find_email() {
    use github_email::{parse_queries, Authors};
    let mut authors = Authors::default();
    let url = r#"
    https://github.com/oovm/
    https://github.com/oovm/get-github-email
    "#;
    for query in parse_queries(url) {
        authors.query(query).await.ok();
    }
    println!("{authors}")
}

Dependencies

~4–18MB
~262K SLoC