From b9683f46687e4c33915d54208cf1353200ea5cde Mon Sep 17 00:00:00 2001 From: 622ff545dfef6c4fdb84ccec <622ff545dfef6c4fdb84ccec@devide> Date: Mon, 8 May 2023 08:18:54 +0000 Subject: [PATCH] UPDATE --- main.py | 35 +---------------------------------- stui.py | 13 +++++++++++++ 2 files changed, 14 insertions(+), 34 deletions(-) create mode 100644 stui.py diff --git a/main.py b/main.py index 543c0ee..93c0f19 100644 --- a/main.py +++ b/main.py @@ -1,38 +1,5 @@ -# 使用urllib来获取百度首页的源码 -import urllib.request - - -# (1)定义一个url 就是你要访问的地址 -url = 'http://www.baidu.com' - -# (2)模拟浏览器向服务器发送请求 response响应 -response = urllib.request.urlopen(url) - -# (3)获取响应中的页面的源码 content 内容的意思 -# read方法 返回的是字节形式的二进制数据 -# 我们要将二进制的数据转换为字符串 -# 二进制--》字符串 解码 decode('编码的格式') -content = response.read().decode('utf-8') - -# (4)打印数据 -print(content) - -import streamlit as st - -# 创建一个标题 -st.title('My First Streamlit App') - -# 创建一个文本框并接收用户输入 -user_input = st.text_input('Enter your name') - -# 判断用户是否有输入,并输出一句问候语 -if user_input != '': - st.write('Hello,', user_input, '!') -else: - st.write('Please enter your name.') - import subprocess -subprocess.run(["streamlit", "run", "main.py"]) +subprocess.run(["streamlit", "run", "stui.py"]) diff --git a/stui.py b/stui.py new file mode 100644 index 0000000..6cc56d1 --- /dev/null +++ b/stui.py @@ -0,0 +1,13 @@ +import streamlit as st + +# 创建一个标题 +st.title('My First Streamlit App') + +# 创建一个文本框并接收用户输入 +user_input = st.text_input('Enter your name') + +# 判断用户是否有输入,并输出一句问候语 +if user_input != '': + st.write('Hello,', user_input, '!') +else: + st.write('Please enter your name.') -- GitLab