Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oovm/get-github-email
Find github email
https://github.com/oovm/get-github-email
email finder github github-api github-pages
Last synced: about 2 months ago
JSON representation
Find github email
- Host: GitHub
- URL: https://github.com/oovm/get-github-email
- Owner: oovm
- License: mpl-2.0
- Created: 2022-11-10T08:15:34.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-11T04:14:23.000Z (about 2 years ago)
- Last Synced: 2023-03-06T20:53:43.956Z (almost 2 years ago)
- Topics: email, finder, github, github-api, github-pages
- Language: Rust
- Homepage: https://oovm.github.io/get-github-email/
- Size: 1.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: License.md
Awesome Lists containing this project
README
# Find Github Email
Find github user email.
### API
https://docs.github.com/en/rest/activity/events
### Online
### Rust
```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}")
}
```