Skip to main content

A package for converting streamlit apps to stlite apps to remove the need for hosting

Reason this release was yanked:

Missing dependency

Project description

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.

With stlitepack, you can:

  • 📦 Pack your Streamlit app into a stlite-ready format
  • 🗂️ Include additional resources like config.toml
  • 🚀 Generate GitHub Actions workflows to (almost) auto-deploy your app to GitHub Pages

📦 Installation

pip install stlitepack

🚀 Usage

from stlitepack import pack

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

This will create an index.html file in the same folder as your app file with all of the required stlite additions, which you can then serve as a static file using a hosting platform such as github pages.

If you're not familiar with Github pages, you can also use the setup_github_pages() function to help generate all the key files that will get your app up and hosted for users in moments.

from stlitepack import setup_github_pages

setup_github_pages(mode="gh-actions")

This will generate

  • a github workflow file
  • a .nojekyll file (to prevent post-processing by github)
  • a custom 404 page to make users redirect smoothly when your app is refreshed or shared
  • a PAGES_SETUP.md file with instructions of how to enable github pages on your repository

Once you have followed the instructions in PAGES_SETUP.md, head over to the 'about' section of your repostiory and click on the cog.

Tick 'Use your GitHub Pages website' - your will likely take the form 'https://your-username.github.io/your-repository-name'

Then click 'save changes'

You can then click the link to head to your hosted app.

If the app has built successfully, there will be a green tick next to your last commit message:

⚠️ Heads Up!

Opening index.html directly in your browser may show navigation or media errors if you use session state in multi-page apps or if you are loading in external file. This is normal — it only happens when using file:// URLs.

Fix: Serve the app over HTTP (e.g., python -m http.server) or deploy to GitHub Pages.

Everything will work correctly once served via a web server!

For local testing prior to deployment, try running

python -m http.server 8000

from the root of your local repository.

Then open http://localhost:8000/index.html (or change the path to reflect the final location of your created index.html file - e.g. http://localhost:8000/docs/index.html)

Alternatively, you can try setting run_preview_server=True in your pack() function call - this will try to spin up a server that points at the right document automatically, though this can be a bit temperamental with complex folder structures.

📖 Documentation

Check out the quickstart guide at hsma-tools.github.io/stlitepack/stlitepack_docs/stlitepack_quickstart.

You can also find the full reference for each function at hsma-tools.github.io/stlitepack/reference/.

The two key functions are

🔮 Roadmap

  • ✅ v0.1.0: Single-page app packing
  • ✅ v0.2.0: Helper functions for GitHub Pages auto-deploy (via GitHub Actions workflow generation)
  • ✅ v0.3.0: Multi-page app support (for pages/ subfolder method) and simple additional file inclusion
  • ✅ v0.4.0: Lots of improvements!
    • Better support for resource bundling (images, CSVs, assets, config files etc.) of local or web-based file, also leading to multi-page app support via st.navigation() method
    • Starting to automate changes of known stlite/streamlit differences (e.g. await asyncio.sleep(1) being required when using st.spinner)
    • Optional automatic spinning up of a preview server for the deployed app
    • Support for material icons
  • ✅ v0.4.1: Bugfix for asyncio code
  • ✅ v0.4.2: Automatic creation of a 404 redirect page
  • ✅ v0.4.3: Change the default to a version of stlite to one known to work reliably (0.80.5)
  • ✅ v0.4.4: Docstring fixes
  • v0.4.5: Better documentation and testing of v0.4 features
  • v0.5.0: Further auto-handling of stlite-specific required changes
  • v0.6.0: Add support for generating the required package.json for desktop app bundling
  • v0.7.0: Add helpers for generating files for additional deployment options e.g. Docker, Caddy, Nginx, Apache
  • v0.8.0: TOML or YAML file support as optional alternative to the packing function
  • v1.0.0: Full toolkit for packaging, deploying, and managing stlite apps

📋 Examples of Use

While these examples use a fork of the repository, there's nothing to stop you using stlite as part of your original repository - it's designed to keep all of your actual streamlit files untouched, so you can serve both a streamlit app and a streamlit community cloud hosted version from within the same repository

eFIT-tool

An example with an app in the root directory which uses the 'pages' subfolder methods for a multipage streamlit app, and outputs the html file to the docs/ subfolder

All credits go to Peter Saiu and collaborators for the original repository!

Non-elective Flow Simulation

An example with an app in an 'apps' subfolder, which uses the 'st.navigation' method for a multipage streamlit app, and outputs the html file to the root of the repository

All credits go to Helena Robinson and collaborators for the original repository!

Treatment Centre Simulation Model

Another example with an app in the root directory which uses the 'pages' subfolder methods for a multipage streamlit app, and outputs the html file to the docs/ subfolder

All credits go to Tom Monks and Amy Heather for the original repository!

🤝 Contributing

Contributions, feature requests, and feedback are welcome!

Open an issue or submit a pull request to help improve stlitepack.

🧪 Running Tests

To run tests, use

pytest

To generate a code coverage report, run

pytest --cov-report xml:cov.xml --cov .

📜 License

Apache 2.0 License. See LICENSE for details.

🙏 Acknowledgements

↪️ Alternatives

Towards the end of the initial phase of development, I stumbled across a mention of Luke Fullard's script2stlite

Check that out if stlitepack doesn't meet your needs (or if you just want to see which approach you prefer!)

It's got some really nice features like support for embedding more types of files rather than requiring linking out to them on the web, and an approach using a config file instead of a packing function.

🤖 Generative AI Use Disclosure

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stlitepack-0.4.4.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

stlitepack-0.4.4-py3-none-any.whl (21.1 kB view details)

Uploaded Python 3

File details

Details for the file stlitepack-0.4.4.tar.gz.

File metadata

  • Download URL: stlitepack-0.4.4.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for stlitepack-0.4.4.tar.gz
Algorithm Hash digest
SHA256 97195188843b2c8e5904592cc6f56751141b973ee5d32f0cd0edb26b7934a997
MD5 7c74846bca3e3e003892760d85978127
BLAKE2b-256 d1c772c50f5b582db828b570c9158b6160b087fa8d53626c82ba28dc31c27722

See more details on using hashes here.

File details

Details for the file stlitepack-0.4.4-py3-none-any.whl.

File metadata

  • Download URL: stlitepack-0.4.4-py3-none-any.whl
  • Upload date:
  • Size: 21.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for stlitepack-0.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1c7925d9febf4d35f87352f67a17e1048ceb92312045fc2e1cc698fb6b2f993c
MD5 7eaaa7f760a2f5c867ddfaa5149fd265
BLAKE2b-256 f56c07d0491b4fa5f478b66c8f132ee6e56508f8dc4f25bbc2fb0722c5a62914

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page