An open API service indexing awesome lists of open source software.

https://github.com/andfanilo/streamlit-custom-slider

Streamlit custom slider - Code for the Streamlit Component Tutorial blog post
https://github.com/andfanilo/streamlit-custom-slider

python react streamlit streamlit-component streamlit-custom-slider

Last synced: 8 months ago
JSON representation

Streamlit custom slider - Code for the Streamlit Component Tutorial blog post

Awesome Lists containing this project

README

          

# Streamlit Custom Slider - Blog post

Source code for the [Streamlit Components tutorial](https://streamlit-components-tutorial.netlify.app).

![](./demo.gif)

Checkout the branch you're interested in

```
git checkout partx
```

Install streamlit and custom library:

```
pip install streamlit
pip install -e .
```

Install npm dependencies :

```
cd streamlit_custom_slider/frontend
npm install
```

Run custom components web server :

```
cd streamlit_custom_slider/frontend
npm run start
```

Run Streamlit code :

```
streamlit run app.py
```