mirror of
https://github.com/uhIgnacio/github-views-botter.git
synced 2024-08-14 21:47:03 +00:00
15 lines
321 B
Python
15 lines
321 B
Python
import requests, threading
|
|
|
|
url = input('raw link: ')
|
|
amount = input('enter the amount of threads (go for 300): ')
|
|
|
|
def thread():
|
|
sent = 0
|
|
while True:
|
|
requests.get(url)
|
|
sent += 1
|
|
print(f'Views sent: %s' % sent)
|
|
|
|
for _ in range(int(amount)):
|
|
t = threading.Thread(target=thread)
|
|
t.start()
|