├── .gitignore ├── README.md ├── nthn_followers.txt ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-follower-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-follower-scraper/HEAD/README.md -------------------------------------------------------------------------------- /nthn_followers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-follower-scraper/HEAD/nthn_followers.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-decouple 2 | selenium==2.4.0 3 | webdriver_manager 4 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-follower-scraper/HEAD/run.py --------------------------------------------------------------------------------