Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mwtuni
/
avatar
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
avatar
/
server.py
mwtuni
server.py
1cb6f0d
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
232 Bytes
import
traceback
print
(
"=== Starting server ==="
)
try
:
from
app
import
app
print
(
"Loaded app successfully."
)
except
Exception
as
e:
print
(
"=== ERROR DURING IMPORT ==="
)
traceback.print_exc()
raise
e