This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
一个基于 Streamlit 的示例应用,展示各种数据可视化和交互功能。
# 安装依赖 uv sync # 运行应用 uv run streamlit run app.py
# 创建虚拟环境 python -m venv .venv source .venv/bin/activate # Windows: .venv\Scripts\activate # 安装依赖 pip install -r requirements.txt # 运行应用 streamlit run app.py
test_good/ ├── app.py # 主应用文件 ├── main.py # 入口文件 ├── pyproject.toml # 项目配置 ├── justfile # 任务自动化 ├── Dockerfile # Docker 配置 ├── .dockerignore # Docker 忽略文件 └── README.md # 项目文档
项目使用 justfile 进行任务管理:
# 查看所有可用命令 just --list # 运行应用 just run # 代码格式化 just fmt # 代码检查 just lint
# 构建镜像 docker build -t test-good . # 运行容器 docker run -p 8501:8501 test-good
MIT License
Deleting the wiki page "API文档" cannot be undone. Continue?