Skip to content

Instantly share code, notes, and snippets.

@Splinter0
Created April 12, 2020 22:22
Show Gist options
  • Save Splinter0/afc76e03fc101168bb35fe618cd7a1e3 to your computer and use it in GitHub Desktop.
Save Splinter0/afc76e03fc101168bb35fe618cd7a1e3 to your computer and use it in GitHub Desktop.
A script to waste all your Tinder likes... not that they are worth anything anyway.
import os
import time
from pynput.keyboard import Key, Controller
os.system("firefox tinder.com")
keyboard = Controller()
for i in range(100):
keyboard.press(Key.right)
keyboard.release(Key.right)
time.sleep(0.2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment