import requests
import time
import random
# URL of the website you want to visit
url = 'https://your-site.com'
# Number of visits to make
visits = 100
# Time interval between visits in seconds (randomized)
# Using a random range mimics less predictable human behavior
min_interval = 2
max_interval = 10
print(f"Starting bot to visit {url} {visits} times.")
for i in range(visits):
Comments