The secrets.py file contains the username and password, to run the tinder_bot.py file you need to first update it.
username = <"Enter your email"> password = <"Enter your password">
The tinder swipe bot using selenium and time module
to install selenium
pip install selenium or pip3 install selenium
At the ned it will also print the total number of right swipes you made in the python shell.
To install chrome driver and web driver
pip install webdriver-manager #to install web-driver
from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(ChromeDriverManager().install())