From c1ec877e449aa32ade51fd8c15008c76e1e10d11 Mon Sep 17 00:00:00 2001 From: fzorb Date: Mon, 26 May 2025 20:56:47 +0300 Subject: [PATCH] add 6 and 7 digit ids --- scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape.py b/scrape.py index 24fda7a..6103a67 100644 --- a/scrape.py +++ b/scrape.py @@ -18,7 +18,7 @@ proxies = { running = True while True: - attempt = "".join(random.choices(string.ascii_lowercase + string.digits, k=5)) + attempt = "".join(random.choices(string.ascii_lowercase + string.digits, k=random.randint(5, 7))) if config['proxyEnabled']: r = requests.get(f"https://prnt.sc/{attempt}", proxies=proxies, headers=headers) else: