獲取某個庫的star用戶,並存儲起來,經過GitHub 的開發者API能夠分析出該用戶的潛在價值。python
某些專一於推廣的企業獲取會使用到這個庫git
GitHub Repo:github-emailsgithub
歡迎你們點擊進行關注,你們的鼓勵是我前進最大的動力。shell
the example below:
wechaty
is the owner,python-wechaty
is the name of repo
github: https://www.github.com/wechaty/python-wechaty工具
pip install github-emails
from github_emails import GithubApi github = GithubApi(token='') stargazers = github.stargazers('wechaty', 'python-wechaty') for stargazer in stargazers: github.emails(stargazer)
And you will find that your final email info is stored in .github_info/user-email.txt
file.學習
github-emails --owner=wechaty --repo=python-wechaty --token=your-token
這個小工具是我在實際學習工做當中使用到的,很是歡迎你們來使用和吐槽該工具。ui