Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mahiatlinux
/
test1234
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
64c5a0f
test1234
/
app.py
mahiatlinux
Create app.py
34c4057
verified
9 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
import
subprocess
def
main
():
# Run the command
subprocess.run([
"node"
,
"./src/index.js"
])
if
__name__ ==
"__main__"
:
main()