Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
njain
/
custchurnwebapp
like
0
Sleeping
App
Files
Files
xet
Community
3
Fetching metadata from the HF Docker repository...
refs/pr/1
custchurnwebapp
/
app.py
njain
Update app.py
9fc2cfc
over 2 years ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
os
from
subprocess
import
Popen
command = [
"panel"
,
"serve"
,
f"njain-custchurn.hf.space:
{os.environ.get(
'PORT'
,
7860
)}
"
]
worker = Popen(command)
worker.wait()