Valeriy Sinyukov
commited on
Commit
·
ef4294f
1
Parent(s):
628edb0
py-script to run streamlit
Browse files- run_app.py +6 -0
run_app.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
+
|
3 |
+
from streamlit.web.cli import main_run
|
4 |
+
|
5 |
+
if '__main__' == __name__:
|
6 |
+
main_run(['app.py'])
|