Spaces:
Runtime error
Runtime error
apscheduler import deleted
Browse files- .gitignore +80 -0
- app.py +0 -1
.gitignore
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / optimized / DLL files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
|
| 6 |
+
# Distribution / packaging
|
| 7 |
+
.Python
|
| 8 |
+
build/
|
| 9 |
+
develop-eggs/
|
| 10 |
+
dist/
|
| 11 |
+
downloads/
|
| 12 |
+
eggs/
|
| 13 |
+
.eggs/
|
| 14 |
+
lib/
|
| 15 |
+
lib64/
|
| 16 |
+
parts/
|
| 17 |
+
sdist/
|
| 18 |
+
var/
|
| 19 |
+
wheels/
|
| 20 |
+
share/python-wheels/
|
| 21 |
+
*.egg-info/
|
| 22 |
+
.installed.cfg
|
| 23 |
+
*.egg
|
| 24 |
+
MANIFEST
|
| 25 |
+
|
| 26 |
+
# IDEs and editors
|
| 27 |
+
.idea/
|
| 28 |
+
.vscode/
|
| 29 |
+
*.sublime-project
|
| 30 |
+
*.sublime-workspace
|
| 31 |
+
|
| 32 |
+
# Installer logs
|
| 33 |
+
pip-log.txt
|
| 34 |
+
pip-delete-this-directory.txt
|
| 35 |
+
|
| 36 |
+
# Unit test / coverage reports
|
| 37 |
+
htmlcov/
|
| 38 |
+
.tox/
|
| 39 |
+
.nox/
|
| 40 |
+
.coverage
|
| 41 |
+
.coverage.*
|
| 42 |
+
.cache
|
| 43 |
+
nosetests.xml
|
| 44 |
+
coverage.xml
|
| 45 |
+
*.cover
|
| 46 |
+
*.py,cover
|
| 47 |
+
.hypothesis/
|
| 48 |
+
.pytest_cache/
|
| 49 |
+
cover/
|
| 50 |
+
|
| 51 |
+
# Sphinx documentation
|
| 52 |
+
docs/_build/
|
| 53 |
+
|
| 54 |
+
# Jupyter Notebook
|
| 55 |
+
.ipynb_checkpoints
|
| 56 |
+
|
| 57 |
+
# pyenv
|
| 58 |
+
# For a library or package, you might want to ignore these files since the code is
|
| 59 |
+
# intended to run in multiple environments; otherwise, check them in:
|
| 60 |
+
.python-version
|
| 61 |
+
|
| 62 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
| 63 |
+
__pypackages__/
|
| 64 |
+
|
| 65 |
+
# Environments
|
| 66 |
+
.env
|
| 67 |
+
.venv
|
| 68 |
+
env/
|
| 69 |
+
venv/
|
| 70 |
+
ENV/
|
| 71 |
+
env.bak/
|
| 72 |
+
venv.bak/
|
| 73 |
+
|
| 74 |
+
# mkdocs documentation
|
| 75 |
+
/site
|
| 76 |
+
|
| 77 |
+
# Other
|
| 78 |
+
*.log
|
| 79 |
+
*.swp
|
| 80 |
+
.DS_Store
|
app.py
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
from apscheduler.schedulers.background import BackgroundScheduler
|
| 2 |
import datetime
|
| 3 |
import os
|
| 4 |
from typing import Dict, Tuple
|
|
|
|
|
|
|
| 1 |
import datetime
|
| 2 |
import os
|
| 3 |
from typing import Dict, Tuple
|