Untitled

 avatar
unknown
plain_text
2 years ago
313 B
8
Indexable
import requests

url = "https://profile-counter.glitch.me/%7Bjustineagcanas%7D/count.svg"
total_requests = 5020

for _ in range(total_requests):
    response = requests.get(url)
    print(f"Request {_ + 1}/{total_requests} - Status Code: {response.status_code}")

print("Total requests:", total_requests)
Editor is loading...