Last active
July 16, 2022 15:48
-
-
Save james-innes/f4243c28534877a24d8b0055dc81c34f to your computer and use it in GitHub Desktop.
Probably not great for your mental health swiping all day so why not just run a script once a day to max out your swipes if you have unlimited :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.common.action_chains import ActionChains | |
from selenium.webdriver.common.keys import Keys | |
ops = Options() | |
ops.add_argument( | |
"--user-data-dir=/Users/<-- Your Path, Windows uses AppData -->/Library/Application Support/Google/Chrome/") | |
ops.add_argument(r"--profile-directory=Profile 9") # chrome://version will tell you the current profile name | |
# You will encounter a dir lock error if there is already and Chrome instnace using that profile | |
d = webdriver.Chrome(options=ops) | |
# You have to login manually already - Thats why were using your exisitng profile not a guest session | |
d.get('https://tinder.com/app/recs') | |
time.sleep(5) | |
while True: | |
# Will trigger HTTP 429 which resets the next day :) | |
# If you want to simulate normal use then: | |
# time.sleep(1) | |
ActionChains(d).send_keys(Keys.RIGHT).perform() | |
# Using this script will confuse the algorimn and you will start seeing people that aren't really your type |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment