| Crates.io | github-email |
| lib.rs | github-email |
| version | 0.2.0 |
| created_at | 2022-11-10 10:30:07.079743+00 |
| updated_at | 2022-11-11 04:10:25.905559+00 |
| description | Get email from github account |
| homepage | |
| repository | https://github.com/oovm/sub_projects |
| max_upload_size | |
| id | 709876 |
| size | 13,332 |
Find github user email.
https://docs.github.com/en/rest/activity/events
#[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}")
}