Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ideonate/streamlit-launchpad
Browse a folder containing multiple streamlit apps and launch them immediately
https://github.com/ideonate/streamlit-launchpad
Last synced: 4 days ago
JSON representation
Browse a folder containing multiple streamlit apps and launch them immediately
- Host: GitHub
- URL: https://github.com/ideonate/streamlit-launchpad
- Owner: ideonate
- License: apache-2.0
- Created: 2020-02-10T16:11:00.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-28T09:58:14.000Z (over 3 years ago)
- Last Synced: 2025-01-01T08:15:03.506Z (11 days ago)
- Language: Python
- Size: 313 KB
- Stars: 148
- Watchers: 4
- Forks: 25
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Streamlit Launchpad
Web launchpad to browse a folder containing multiple Streamlit applications (py files), with a central launchpad listing available apps so you can run them (if not already running) and view each in its own tab.
This is a very basic alpha version. Windows is now supported. For Windows, torando >= 6.1 is required
## Install and Run
Install using pip.
```
pip install streamlit-launchpad
```Serves *.py as separate Streamlit applications from the folder supplied on the command line:
```
streamlit-launchpad ./examples
```Then go to http://localhost:8888/ in your browser:
![Launchpad screenshot](screenshots/Launchpad.png)
To run on a different port use:
```
streamlit-launchpad --port 8000 ./examples
```To provide a title (default is "Streamlit Apps"):
```
streamlit-launchpad --title="My Title" ./examples
```## Development install
```
git clone https://github.com/ideonate/streamlit-launchpad.git
cd streamlit-launchpadpip install -e .
streamlit-launchpad ./examples
```To run directly in python: `python -m launchpad.main ./examples/`