Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mihaiii
/
TimeStampBuddy
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8efce19
TimeStampBuddy
/
app.py
Mihaiii
Update app.py
8efce19
verified
3 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
import
subprocess
subprocess.run([
"python3"
,
"./cron_processor.py"
])
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}