Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yashdubey
/
multilingual-translator
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
64af902
multilingual-translator
/
app.py
yashdubey
Upload 14 files
64af902
verified
21 days ago
raw
Copy download link
history
blame
Safe
202 Bytes
import
os
from
translator.app
import
app
# For Hugging Face Spaces deployment
if
__name__ ==
"__main__"
:
port =
int
(os.environ.get(
"PORT"
,
7860
))
app.run(host=
"0.0.0.0"
, port=port, debug=
False
)