This repository is a collection of various examples and code snippets to help you get started with Streamlit, a powerful framework for building interactive web applications with Python.
Before you can run the examples in this repository, you'll need to have Anaconda or Miniconda installed on your system. Then, you can create a conda environment and install Streamlit along with other required dependencies.
-
Clone the repository:
git clone https://github.com/[your_username]/streamlit-samples.git cd streamlit-samples -
Create a conda environment:
conda create --name [conda_env_name] python=3.9 conda activate [conda_env_name] -
Install the required dependencies:
conda env update --file environment.yml -
Run a sample:
streamlit run 000-basics/[script_name].py
- Basic: Introductory Streamlit examples that demonstrate key features such as widgets, layouts, and displaying data. These examples are ideal for beginners to learn how to create simple, interactive apps with Streamlit.
- TODO...
This repository is licensed under the Apache License. See the LICENSE file for more information.