Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,8 +10,6 @@ List of Tools:
|
|
| 10 |
- Ads Checker - Shows the links of possible paid ads. To use, type the domain without 'https://www'.
|
| 11 |
"""
|
| 12 |
|
| 13 |
-
results = []
|
| 14 |
-
results.append(['Website','Speed in Seconds'])
|
| 15 |
vLogDate = datetime.today().strftime('%Y/%m/%d')
|
| 16 |
|
| 17 |
websites = [
|
|
@@ -75,6 +73,8 @@ def check_site_speed(url):
|
|
| 75 |
return None
|
| 76 |
|
| 77 |
def runchecks(message,history):
|
|
|
|
|
|
|
| 78 |
if message == 'run now' or message == 'Run Now':
|
| 79 |
for site in websites:
|
| 80 |
print(f"Checking site speed for {site}...")
|
|
|
|
| 10 |
- Ads Checker - Shows the links of possible paid ads. To use, type the domain without 'https://www'.
|
| 11 |
"""
|
| 12 |
|
|
|
|
|
|
|
| 13 |
vLogDate = datetime.today().strftime('%Y/%m/%d')
|
| 14 |
|
| 15 |
websites = [
|
|
|
|
| 73 |
return None
|
| 74 |
|
| 75 |
def runchecks(message,history):
|
| 76 |
+
results = []
|
| 77 |
+
results.append(['Website','Speed in Seconds'])
|
| 78 |
if message == 'run now' or message == 'Run Now':
|
| 79 |
for site in websites:
|
| 80 |
print(f"Checking site speed for {site}...")
|