opener.py (377B)
1 import pyautogui as pag 2 import os 3 import time 4 import random 5 6 itr = 0 7 8 while True: 9 10 if itr % 10 == 0: 11 os.system('protonvpn connect > /dev/null 2>&1') 12 itr += 1 13 print('Iteration: ' + str(itr)) 14 os.system('librewolf --private-window "https://duckduckgo.com/?q=\\imbue%20ai%20vet&ia=web" &') 15 time.sleep((random.random() * 6) + 4) 16 pag.click(4035, 740)