OP 25 October, 2019 - 03:13 PM
ABOUT:
Just made an easy single threaded checker for Spotify.
Great example when you want to start making a big checker.
At the moment its running single threaded so that means that it does every account in your list one by one.
Which also means that it runs one chrome in headless mode at a time.
So overall its not the fastest.
I will be updating this checker often and will be making it multi threaded.
If anyone has suggestion you can always hit me up or post in this thread
This checker is made for Linux but can be switched to Windows really easily just by changing the Path’s needed for your google chrome and file.
INSTALLATION:
It runs in python3 and with headless chrome
You have to install all the dependencies tho:
Download chromedriver 77.0 for your platform and add it to /usr/bin/
Also install google-chrome unstable version if unstable doesn’t work try stable and change it to stable in the code.
[/code]
If I forgot dependencies please let me know when installing
If you have errors post below.
CODE:
Just made an easy single threaded checker for Spotify.
Great example when you want to start making a big checker.
At the moment its running single threaded so that means that it does every account in your list one by one.
Which also means that it runs one chrome in headless mode at a time.
So overall its not the fastest.
I will be updating this checker often and will be making it multi threaded.
If anyone has suggestion you can always hit me up or post in this thread
This checker is made for Linux but can be switched to Windows really easily just by changing the Path’s needed for your google chrome and file.
INSTALLATION:
It runs in python3 and with headless chrome
You have to install all the dependencies tho:
Code:
[code]
pip3 install selenium
Code:
Code:
pip3 install chromedriver
Code:
Code:
pip3 install ipython
Download chromedriver 77.0 for your platform and add it to /usr/bin/
Also install google-chrome unstable version if unstable doesn’t work try stable and change it to stable in the code.
[/code]
If I forgot dependencies please let me know when installing
If you have errors post below.
CODE: