Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -390,15 +390,15 @@ def clear_fn():
|
|
390 |
|
391 |
def itt(url):
|
392 |
out=[]
|
393 |
-
for i in range(0,
|
394 |
print (i)
|
395 |
-
for d in range(0,
|
396 |
print (d)
|
397 |
r = requests.get(f'{url}.{i}.{d}')
|
398 |
if r.status_code == 200:
|
399 |
out.append(f'{url}.{i}.{d}')
|
400 |
yield out
|
401 |
-
for p in range(0,
|
402 |
print(p)
|
403 |
r = requests.get(f'{url}.{i}.{d}_{p}')
|
404 |
if r.status_code == 200:
|
|
|
390 |
|
391 |
def itt(url):
|
392 |
out=[]
|
393 |
+
for i in range(0,1500):
|
394 |
print (i)
|
395 |
+
for d in range(0,50):
|
396 |
print (d)
|
397 |
r = requests.get(f'{url}.{i}.{d}')
|
398 |
if r.status_code == 200:
|
399 |
out.append(f'{url}.{i}.{d}')
|
400 |
yield out
|
401 |
+
for p in range(0,10):
|
402 |
print(p)
|
403 |
r = requests.get(f'{url}.{i}.{d}_{p}')
|
404 |
if r.status_code == 200:
|