Metadata-Version: 2.4
Name: stlitepack
Version: 0.2.0
Summary: A package for converting streamlit apps to stlite apps to remove the need for hosting
Project-URL: Homepage, https://github.com/Bergam0t/stlitepack
Project-URL: Bug Tracker, https://github.com/Bergam0t/stlitepack/issues
Author-email: Sammi Rosser <s.j.rosser@exeter.ac.uk>
License-Expression: Apache-2.0
License-File: LICENCE.md
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# stlitepack

[<img src="https://img.shields.io/pypi/v/stlitepack?label=pypi%20package">](https://pypi.org/project/stlitepack/)

stlitepack is a Python utility that helps you turn your existing Streamlit apps into [stlite apps — lightweight, browser-only Streamlit apps that run entirely in the client without a server](https://github.com/whitphx/stlite).

With stlitepack, you can:

- 📦 Pack your Streamlit app into a stlite-ready format (current functionality).
- 🚀 (Upcoming) Generate GitHub Actions workflows to auto-deploy your app to GitHub Pages.
- 🗂️ (Planned) Add support for multi-page apps, external resources, and more.

## 📦 Installation

```bash
pip install stlitepack
```

## 🚀 Usage

```python
from stlitepack import pack

# Pack your Streamlit app (e.g., "app.py") into a stlite bundle
pack("app.py", output_dir="docs")
```

This will create a docs/ folder containing your stlite-ready app files, which you can serve as static files.

## 🔮 Roadmap

- v0.1: Single-page app packing
- v0.2: Helper functions for GitHub Pages auto-deploy (via GitHub Actions workflow generation)
- v0.3: Multi-page app support (for [`pages/` subfolder](https://webapps.hsma.co.uk/multipage.html#method-2-pages-subfolder) method)
- v0.4: Resource bundling (images, CSVs, assets, etc.)
- v0.5: Multi-page app support (for [`st.navigation()`](https://webapps.hsma.co.uk/multipage.html#method-1-st.page-and-st.navigation) method)
- v0.6: Auto-handling of stlite-specific features (e.g. asyncio vs sleep)
- v0.7: TOML or YAML file support as optional alternative to the packing function
- v1.0: Full toolkit for packaging, deploying, and managing stlite apps

## 🤝 Contributing
Contributions, feature requests, and feedback are welcome!
Open an issue or submit a pull request to help improve stlitepack.

## 📜 License
Apache 2.0 License. See LICENSE for details.

## Acknowledgements

- [whitphx](https://github.com/whitphx) for creating the amazing [stlite](https://github.com/whitphx/stlite) framework!

## Generative AI Use Disclosure

This package was developed with the assistance of ChatGPT (OpenAI’s GPT-5 model) as a coding and documentation partner.
All code and design decisions were reviewed and finalized by a human, and ChatGPT’s output was used as a foundation rather than a final product.
