Spaces:
Running
Running
pareshmishra
commited on
Commit
·
2d023d0
1
Parent(s):
414d5af
changes for python
Browse files- requirements.txt +1 -0
- services/scheduler_service.py +1 -1
requirements.txt
CHANGED
|
@@ -93,5 +93,6 @@ uvicorn==0.34.3
|
|
| 93 |
Werkzeug==3.1.3
|
| 94 |
xxhash==3.5.0
|
| 95 |
yarl==1.20.1
|
|
|
|
| 96 |
flask_cors
|
| 97 |
|
|
|
|
| 93 |
Werkzeug==3.1.3
|
| 94 |
xxhash==3.5.0
|
| 95 |
yarl==1.20.1
|
| 96 |
+
schedule==1.2.1
|
| 97 |
flask_cors
|
| 98 |
|
services/scheduler_service.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import logging
|
| 2 |
import threading
|
| 3 |
import time
|
| 4 |
-
|
| 5 |
from datetime import datetime, timedelta
|
| 6 |
from typing import Dict, Any, List, Callable, Optional
|
| 7 |
|
|
|
|
| 1 |
import logging
|
| 2 |
import threading
|
| 3 |
import time
|
| 4 |
+
import schedule
|
| 5 |
from datetime import datetime, timedelta
|
| 6 |
from typing import Dict, Any, List, Callable, Optional
|
| 7 |
|