Metadata-Version: 2.1
Name: streamlit-slides
Version: 0.0.1
Summary: Streamlit component to present streamlit files as slides
Home-page: 
Author: Sebastian Flores
Author-email: sebastiandres@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: devel
License-File: LICENSE

# README

You want to use streamlit to present slides? Search no more. Just follow these steps:

* Install: 
```bash
pip install streamlit-slides
```

* Import it on your main file
```python
import streamlit-slides as ss
ss.set_slide_config() # Same properties as st.set_page_config()
```

* Put all your streamlit files in a slides/ folder

* Run as usual
```bash
streamlit run my_slide_example.py
```

# Live example
You can use the example repository as a starting point: 

* Live example on streamlit cloud

# Known bugs
- Cannot use st.echo
