KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
streamlit-wizard-form
★ 24
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
webhook-tradingview-bot
:
A Webhook Server for Tradingview Alerts that execute on the Binance Exchange and sends feedback over Telegram
threeport
:
An application platform and platform engineering framework
auth
:
No description available.
web3-copilot
:
Unleashing the programmable blockchain for everyone.(人人都是区块链科学家)
Computer-Network-Notes
:
《计算机网络教程(高传善等编)》读书笔记,结合期末复习ppt提纲,为复旦大学大三上专业课《计算机网络》所写
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
streamlit-wizard-form
?
Download (.md)
## Streamlit Wizard Form A very simple Streamlit wizard form using session state to navigate along steps for data entry and loading. A few practical examples below including Snowflake's Classic Console Load Table wizard, a standard checkout form, and adding a custom animated spinner. While these are the examples I used, the pattern can transfer to almost any use case requiring more complex user input, which is better served from multiple views and a variation of widgets. _For further detail, please refer to the [Streamlit blog](https://blog.streamlit.io/streamlit-wizard-form-with-custom-animated-spinner/) or [Medium article](https://medium.com/streamlit/streamlit-wizard-and-custom-animated-spinner-2dcd52cccc65)_.   ## Setup Instructions **Using Anaconda** ``` bash conda create --name st_wizard_form python==3.8 ``` ``` bash conda activate st_wizard_form ``` --- **Install Dependencies** ```bash pip install -r requirements.txt ``` --- **To Verify Streamlit** ```bash streamlit hello ``` **If verification succeded press CMD+C or CTRL + C to exit.** --- Start your app. ```bash streamlit run app.py ```