Streamlit 是可以用于快速搭建Web应用的Python库。
Streamlit 基于tornado框架,封装了大量互动组件,同时也支持大量表格、图表、数据表等对象的渲染,并且支持栅格化响应式布局。
1.Streamlit安装
参考我上一篇文章,在虚拟环境中运行
pip install streamlit
很顺利。
2.展示官方默认的demo
streamlit hello
会要求输入email,其实不用输 直接回车即可自动跳转到网页
在我的电脑上用IE 打开了 http://localhost:8501/ ,无法显示,改用chrome打开,正常。
3.现在已经安装了所有必要的软件,让我们创建一个first_app.py
import streamlit as st # To make things easier later, we're also importing numpy and pandas for # working with sample data. import numpy import pandas
运行:
streamlit run first_app.py
4. 添加标题。首先使用ctrl+c来终止streamlit应用的运行
import streamlit as st # To make things easier later, we're also importing numpy and pandas for # working with sample data. import numpy import pandas st.title('中文乱码吗?')
没有乱码,然而标题显示位置不是我预想的html>title 相同的位置上,而是显示在页面上
5.查看配置选项
streamlit config show
6.魔改标题
st.set_page_config(page_title="中文")
7.获取及显示用户输入
import streamlit as st # To make things easier later, we're also importing numpy and pandas for # working with sample data. import numpy import pandas st.set_page_config(page_title="中文") st.title('中文乱码吗?') st.header('This is a header') title = st.text_input('Movie title', 'Life of Brian') print(title) st.write('The current movie title is', title)
8.st.tabs布局
import streamlit as st # To make things easier later, we're also importing numpy and pandas for # working with sample data. import numpy import pandas st.set_page_config(page_title="中文") st.title('中文乱码吗?') st.header('This is a header') title = st.text_input('Movie title', 'Life of Brian') print(title) st.write('The current movie title is', title) tab1, tab2, tab3 = st.tabs(["Cat", "Dog", "Owl"]) with tab1: st.header("A cat") st.image("https://static.streamlit.io/examples/cat.jpg", width=200) with tab2: st.header("A dog") st.image("https://static.streamlit.io/examples/dog.jpg", width=200) with tab3: st.header("An owl") st.image("https://static.streamlit.io/examples/owl.jpg", width=200)
结尾
使用streamlit我们可以快速构建出可以拿出去给别人看的web demo,但streamlit在我眼中也有个比较大的缺陷,那便是没有区分请求的功能,比如Flask、Fastapi等框架,你可以区分出不同的请求,而streamlit不行,在多人使用时,就会出现,他人在操作页面时,你当前的页面也可能会被影响的情况。
参考:https://www.cnblogs.com/Chilam007/p/16719995.html
http://cw. hubwiz(这也民感?) .com/card/c/streamlit-manual/1/6/33/
https://docs.streamlit.io/ 官方文档
https://zhuanlan.zhihu.com/p/397129447?utm_id=0
https://blog.csdn.net/weixin_30230009/article/details/126684850
标签:入门,title,初识,st,Steamlit,import,streamlit,numpy,pandas From: https://www.cnblogs.com/pu369/p/17222157.html