Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

LucBerge/github_email_collector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

17 Commits

Repository files navigation

Github Email Collector

Collect the email address of users affiliated to a given repository

Installation

From PyPi

pip install github-email-collector

As a submodule

git submodule add https://github.com/LucBerge/github_email_collector.git
git submodule update --init

Usage

From your python script

from github_email_collector import EmailCollector

email_collector = EmailCollector("MY_GITHUB_TOKEN", "owner/repo")
emails = email_collector.get_emails()
print(emails)