Skip to content

Instantly share code, notes, and snippets.

@comdet
Created August 16, 2021 09:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save comdet/b865e8074fc675b1f9baf8806aabbbaf to your computer and use it in GitHub Desktop.
Save comdet/b865e8074fc675b1f9baf8806aabbbaf to your computer and use it in GitHub Desktop.
import requests, json, time
import warnings
warnings.filterwarnings("ignore")
url = 'https://www.popdog.click/clicked/v2'
data = { "clicks": 2000,"uuid": "8745407d-0219-406d-ac09-058d2794b4dc","username": None}
for i in range(99999999):
res = requests.post(url, json = data,verify=False)
if res.status_code == 200:
res_data = json.loads(res.text)
print(f"clicks : {res_data['clicks']}")
time.sleep(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment