Imgflip Logo Icon

already at like 304

already at like 304 | I want to speed run getting 1000 approvals | image tagged in official badlydrawnaxolotl announcement temp | made w/ Imgflip meme maker
75 views 2 upvotes Made by BadlyDrawnAxolotl 2 years ago in MS_memer_group
OFFICIAL badlydrawnaxolotl announcement temp memeCaption this Meme
3 Comments
0 ups, 2y,
1 reply
this python script automatically refreshes the approval queue page. make a new text document, paste the code, save as "whatever.py", open command prompt, and then run "python whatever.py"
once you login it will send you to the approval queue and will automatically refresh it
you can adjust the "refresh_interval" variable to make it slower or faster

from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import time
import threading

login_url = "imgflip.com/login";
queue_url = "imgflip.com/approval-queue?stream=MS_memer_group";

driver = webdriver.Chrome()
driver.get(login_url)

WebDriverWait(driver, 999999).until_not(EC.url_matches(login_url))
driver.get(queue_url)

refresh_interval = 1

refresh_event = threading.Event()
refresh_event.set()

def refresh_loop():
while True:
time.sleep(refresh_interval)
refresh_event.wait()

driver.refresh()

refresh_thread = threading.Thread(target=refresh_loop)
refresh_thread.start()

while True:
command = input()
if command == "p":

print("paused")
refresh_event.clear()
elif command == "up":
print("resumed")
refresh_event.set()
else:
print("invalid cmd - p to pause, up to unpause")
0 ups, 2y,
1 reply
That just sounds like | That just sounds like auto approve but with extra steps | image tagged in that just sounds like | made w/ Imgflip meme maker
0 ups, 2y
nah bro auto approve will make you approve rule breaking shit
this just allows you to approve normal stuff fast
i'm considering using gpt-4 api to make an auto approve/dissaprove system tho
OFFICIAL badlydrawnaxolotl announcement temp memeCaption this Meme
Created with the Imgflip Meme Generator
IMAGE DESCRIPTION:
I want to speed run getting 1000 approvals