├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.json ├── data └── example_output.csv ├── github_scraper.py ├── organizations.csv └── requirements.in /.gitignore: -------------------------------------------------------------------------------- 1 | /data/** 2 | .venv 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbaack/github-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbaack/github-scraper/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbaack/github-scraper/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbaack/github-scraper/HEAD/config.json -------------------------------------------------------------------------------- /data/example_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbaack/github-scraper/HEAD/data/example_output.csv -------------------------------------------------------------------------------- /github_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbaack/github-scraper/HEAD/github_scraper.py -------------------------------------------------------------------------------- /organizations.csv: -------------------------------------------------------------------------------- 1 | github_org_name, 2 | -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | aiohttp[speedups] >= 3.8.1 2 | networkx >= 2.8 3 | --------------------------------------------------------------------------------