├── .gitignore ├── LICENSE ├── README.md ├── gen_gh_urls.py ├── gh_downloader.py ├── gh_enhancer.py ├── gh_investigator.py ├── gh_scraper.py └── lib ├── classes.py └── functions.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/README.md -------------------------------------------------------------------------------- /gen_gh_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/gen_gh_urls.py -------------------------------------------------------------------------------- /gh_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/gh_downloader.py -------------------------------------------------------------------------------- /gh_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/gh_enhancer.py -------------------------------------------------------------------------------- /gh_investigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/gh_investigator.py -------------------------------------------------------------------------------- /gh_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/gh_scraper.py -------------------------------------------------------------------------------- /lib/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/lib/classes.py -------------------------------------------------------------------------------- /lib/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlospolop/github_archive_scraper/HEAD/lib/functions.py --------------------------------------------------------------------------------