├── .gitattributes ├── .gitignore ├── README.md ├── [Data] ├── [Results] │ └── removeme.txt ├── combos.txt ├── configs.json ├── proxies.txt └── useragents.txt ├── chromedriver.exe ├── close_chrome.py ├── main.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/README.md -------------------------------------------------------------------------------- /[Data]/[Results]/removeme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Data]/combos.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Data]/configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/[Data]/configs.json -------------------------------------------------------------------------------- /[Data]/proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Data]/useragents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/[Data]/useragents.txt -------------------------------------------------------------------------------- /chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/chromedriver.exe -------------------------------------------------------------------------------- /close_chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/close_chrome.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/SpotifyFollowBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | colorama==0.4.4 3 | --------------------------------------------------------------------------------