alptangall commited on
Commit
54f4fe8
·
verified ·
1 Parent(s): efe0ba3

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +4 -2
main.py CHANGED
@@ -1,8 +1,10 @@
1
  import requests
2
  import time
 
3
 
4
  def ping(url):
5
- print(url)
6
  return requests.get(url)
7
 
8
-
 
 
 
1
  import requests
2
  import time
3
+ from random import randrange
4
 
5
  def ping(url):
 
6
  return requests.get(url)
7
 
8
+ while True:
9
+ ping('https://alptangall-k-e-p-0l1n3.hf.space/')
10
+ time.sleep(randrange(1,5))