统一使用start.sh启动

两个demo页面
This commit is contained in:
leo
2023-12-31 17:57:17 +08:00
parent e3dabed229
commit c3b1983b30
8 changed files with 94 additions and 64 deletions

8
pages/test.py Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import streamlit as st
st.write('Hello World!')
for i in range(1, 13):
st.write(f"{i}. this is line {i}")