Like post in threads.net. Work with Python 3.7.2 and Selenium.
Install neccessary dependencies by running
pip install -r requirements.txt
python main.py <your-username> <your-password> <number-of-post-to-like>make an exe file by running below code
pip install pyinstaller
pyinstaller --onefile main.py Edit run.bat file with your instagram credentials and the number of posts you want to like.
main.exe <your-username> <your-password> <number-of-post-to-like> Double-click the run.bat file to like the post
you should using python3, pip3 instead of python, pip in every command
pip3 install -r requirements.txt
python3 main.py <your-username> <your-password> <number-of-post-to-like>
pip3 install pyinstaller
python3 -m PyInstaller main.pymake run.command file with following content
cd "$(dirname "$0")"
./main username password 10Open terminal where the run.command file exists and give the run.command file to neccessary permission
chmod +x ./run.commandDouble-click the run.command file to like the post