Tinder Bot: Automate your likes and dislikes. Increase match level!
This bot will help you automate giving likes and dislikes. The bot will also likely increase your matcha amount. It gives like/dislike depending on the chance given in the config in percent on like. You can set how much you want from 0 to 100 percent. It works randomly, the bot does not rate photos. That program can save log with Instagram and Snapchat nicks which those are downloaded from Tinder user description.
- Install Firefox. Link: https://www.mozilla.org
- Install Python environment. Link: https://www.python.org
- Add Python path to your system environment variables.
- Install Selenium for Python. Link: https://selenium-python.readthedocs.io/installation.html
pip install selenium
- Download driver for your Firefox version. Link: https://github.com/mozilla/geckodriver/releases and put it to source files.
- Open and edit
config.json.
In your config.json file have to change following things:
- Change your login method. You can login via Facebook or Google.
- To login via Google set
"login_method": "google" - To login via Facebook set
"login_method": "facebook"
- Set your password to Facebook account or Google account.
#...
"google": {
"login": "your_google_login",
"password": "your_google_password"
},
"facebook": {
"login": "your_facebook_login",
"password": "your_facebook_password"
}
#...- To send message after match set your
match_message. Ifmatch_messageis empty it won't send message. Not implemented yet. - Set your chance to like in percent.
- If
chance_to_likeis 0 It will give only dislikes. - If
chance_to_likeis 100 It will give only likes. - Default is 90.
- To set wait time between give next like or dislike you have to change
max_wait_time_between_action_in_secfor maximal time delay andmin_wait_time_between_action_in_secfor minimal time delay. Defaultmax_wait_time_between_action_in_secis 10 andmin_wait_time_between_action_in_secis 4. - Only if you log in through Google. This option
amount_of_login_attemptssets the number of attempts after which if you don't log in It will error occurs. Default is 15. - This option
amount_of_avoid_errorssets the number of attempts that after program will show error message and exit. Default is 5. - If you want to save Instagram nick from description set
allow_to_save_igto true. Default is true. - Choose path to your file with Instagram nicknames so change
ig_file_path. Default is "instagram.txt". - If you want to save Snapchat nick from description set
allow_to_save_snapto True. Default is true. - Choose path to your file with Snapchat nicknames so change
snap_file_path. Default is "snap.txt".
Open your terminal/CMD in Tinder-Bot directory and call: python executable.py or python3 executable.py. If you want find only Instagram/Snapchat nicknames you will call: python executable-finder.py or python3 executable-finder.py
Created for scientific purposes only. This is not intended to harm anyone. I am not responsible for any damages resulting from the use of this program.