├── .gitignore ├── .replit ├── LICENSE ├── README.md ├── drivers └── chromedriver ├── main.py ├── modules ├── compare.py ├── file_io.py ├── scraper.py ├── stats.py └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | exports/ 2 | 3 | __pycache__/ 4 | *.pyc 5 | -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/.replit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/README.md -------------------------------------------------------------------------------- /drivers/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/drivers/chromedriver -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/main.py -------------------------------------------------------------------------------- /modules/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/modules/compare.py -------------------------------------------------------------------------------- /modules/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/modules/file_io.py -------------------------------------------------------------------------------- /modules/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/modules/scraper.py -------------------------------------------------------------------------------- /modules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/modules/stats.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonoli/instagram-followers-scraper/HEAD/modules/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.4.3 2 | --------------------------------------------------------------------------------