Skip to main content

Bootswatch + Bootstrap 5 themes for Shiny.

Reason this release was yanked:

prerelease version

Project description

shinyswatch

Bootswatch + Bootstrap 5 themes for Shiny.

Installation

pip install shinyswatch

To install the latest development version from this repository:

pip install https://github.com/schloerke/py-shinyswatch/tarball/main

Usage

Add your theme anywhere within your App's UI defintion. For example:

from shiny import App, Inputs, Outputs, Session, render, ui

import shinyswatch

app_ui = ui.page_fluid(
    shinyswatch.theme("darkly"),
    ui.input_slider("num", "Number:", min=10, max=100, value=30),
    ui.output_text_verbatim("slider_val"),
)


def server(input: Inputs, output: Outputs, session: Session):
    @output
    @render.text
    def slider_val():
        return f"{input.num()}"


app = App(app_ui, server)

Examples

There are two examples in the shinyswatch repo. After checking out the repo, you can run them by calling:

python3 -m shiny run examples/basic-darkly/app.py
python3 -m shiny run examples/big-sketchy/app.py

Development

If you want to do development on shinyswatch for Python:

pip install -e ".[dev,test]"

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

shinyswatch-0.1.0.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

shinyswatch-0.1.0-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

Supported by

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