github-email 0.0.0

Get email from github account
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


```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:#?}")
}
```