Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def greet(name):
|
|
31 |
return "Hello " + name + "!!"
|
32 |
|
33 |
# Specify the interval (in seconds)
|
34 |
-
interval_seconds = 60*60*24*
|
35 |
|
36 |
# Create a thread to run the script periodically
|
37 |
script_thread = threading.Thread(target=run_script_periodically, args=(interval_seconds,))
|
|
|
31 |
return "Hello " + name + "!!"
|
32 |
|
33 |
# Specify the interval (in seconds)
|
34 |
+
interval_seconds = 60*60*24*2 # Run run.py every day
|
35 |
|
36 |
# Create a thread to run the script periodically
|
37 |
script_thread = threading.Thread(target=run_script_periodically, args=(interval_seconds,))
|