File size: 230 Bytes
67bb950
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python3

# Hugging Face Space served with FastAPI and Uvicorn:
# https://huggingface.co/spaces/templates/fastapi-uvicorn

import subprocess

subprocess.run("uvicorn main:app --host 0.0.0.0 --port 7860", shell=True)