shinyhub-bookmarks
Selective view links for Python Shiny apps running in ShinyHub, built on Shiny's URL-bookmarking API.
The package registers the filters an app author considers meaningful. ShinyHub then adds a Link to this view control to its app switcher. Visitors can copy the exact view immediately or use Change to choose which registered values follow the link. Unselected values return to the app's defaults when the link opens. The visible UI says “link”; package and API names retain “bookmark” to match Shiny's native lifecycle.
uv add shinyhub-bookmarks
# or: python -m pip install shinyhub-bookmarks
from shiny import App, render, ui
from shinyhub_bookmarks import ChoiceRestore, Field, bookmarking_dependency, register
def app_ui(request):
return ui.page_fluid(
bookmarking_dependency(),
ui.input_select("region", "Region", ["Europe", "Americas", "Asia"]),
ui.input_slider("year", "Year", 2020, 2026, 2026),
ui.output_text_verbatim("summary"),
)
def server(input, output, session):
register(
session=session,
input=input,
fields={
"region": Field("Region", baseline="Europe"),
"year": Field("Year", baseline=2026),
},
)
@render.text
def summary():
return f"{input.region()} · {input.year()}"
app = App(app_ui, server, bookmark_store="url")
Both pieces are required: bookmarking_dependency() installs the tiny browser
bridge, and register() publishes the allow-list and creates links through
Shiny's native bookmarking API. The UI must be a function accepting request
so Shiny can restore URL state before rendering it. Call register() exactly
once from the top-level server session. Module inputs can be included by their
resolved IDs in that top-level field mapping; module-scoped registration is
rejected because selective exclusion is owned by the root bookmark session.
After a registered filter changes, the bridge also updates the current address after a short debounce. The live address contains only values that differ from their baselines. It replaces the current browser-history entry, so a refresh or ordinary browser bookmark reopens the same view without filling the Back button with every intermediate slider or text-input value. The explicit Link to this view action remains the exact, selective sharing control.
Declare stable baselines with Field(baseline=...). This is comparison
metadata; it does not set the Shiny control's initial value. On a clean page,
the helper logs a mismatch without logging either value and safely retains the
current value until it reaches the declaration. Without a declaration, it
learns the first materialized value—even for a dynamically rendered input.
Declare baseline= when later initialization code changes that first value.
Baseline comparison is semantic. Meaningful falsy values such as False, 0,
and an empty selection remain in the URL when they differ from the baseline.
ChoiceRestore.default has a separate job: it is only the fallback for an
unavailable saved choice. A field restored before its baseline is known remains
in later live URLs for refresh safety.
The live URL is minimal; the explicit Copy link action is exact and includes every checked field, even one at baseline. An opened exact link stays full until a registered value changes, after which live synchronization minimizes it.
View links that outlive the app
Native Shiny restoration ignores a removed input, but a retired choice can otherwise become empty or fall back differently across widgets. Declare current choices when a bookmark should remain dependable across app releases:
register(
session=session,
input=input,
legacy_fields={"segment": "Market segment"},
fields={
"region": Field(
"Region",
restore=ChoiceRestore(choices=REGIONS, default="Europe"),
renamed_from={"territory": "Territory"},
),
"product": Field(
"Product",
restore=ChoiceRestore(
choices=lambda: PRODUCTS,
default="All products",
aliases={"Legacy planning": "Planning"},
control="select",
),
),
},
)
ChoiceRestore validates the saved value, applies aliases, and updates the
current Shiny choice input. Supported controls are select, selectize, and
radio. Multiple selections retain every choice that still exists, use the
current display order, and preserve an empty selection. Whether a field takes
one value or several follows the live control, not the saved link: a saved list
restores into a single choice only when it holds exactly one item (otherwise
the field falls back), and a saved single value restores into a multiple
selection as a one-item selection. A missing declared
default falls back to the valid value Shiny already selected. Dynamically
rendered choice inputs are validated once they materialize.
renamed_from maps an old input ID to its former label and requires a
ChoiceRestore policy so the saved value can actually be applied to the new
control. legacy_fields names removed inputs that should be reported as
ignored. The helper adds no package-specific schema or version metadata to the
URL. Shiny may still include application-owned bookmark values when an app
adds them through its own callbacks.
For a custom input whose live Python value differs from its JSON bookmark
representation, pass an idempotent normalizer= to Field. It is applied to
both sides before comparison; it does not change the value Shiny serializes or
restores.
When anything changes, the switcher marks the link action and presents a plain-language Opened with changes receipt. It labels saved and opened values for migrated, unavailable, renamed, and removed fields, then offers Copy link to current view. The app still opens; stale state is never promoted into a blocking error.
An input that is neither registered nor declared as renamed or removed is shown with its URL-provided ID and saved value, labelled Not recognized. Both are rendered as bounded plain text. At most three unknown inputs are listed before a compact overflow summary. Copying the updated link drops every unknown setting, so the warning clears on the next visit.
Privacy and behaviour
- The browser-local ShinyHub switcher receives the registered display values and generated URL so it can show the receipt and copy the link. ShinyHub has no dedicated bookmark-state API or store. The URL query still follows the browser, proxy, and Shiny request path and may appear in browser history, deployment logs, analytics, or referrer data.
- Every registered field is selected by default, including values equal to the app's current defaults. The receipt makes that scope explicit before copying.
- Helper-created links exclude unregistered Shiny inputs. App-owned bookmark
callbacks may still add
state.values, which Shiny preserves as_values_. - A view link with no selected fields cannot be created.
- URLs over 8 KiB are rejected by default. Raise
max_url_lengthonly when the complete delivery path is known to accept longer URLs. - The control stays absent when the bridge is not installed, so unsupported apps never show a dead action.
Release files for shinyhub-bookmarks 0.5.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| shinyhub_bookmarks-0.5.2.tar.gz | 27.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| shinyhub_bookmarks-0.5.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 47.4 kB
Release files / shinyhub_bookmarks-0.5.2.tar.gz
| Download URL | shinyhub_bookmarks-0.5.2.tar.gz |
|---|---|
| Size | 27.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e020809a0f4360aea2931ff74806df072170c2d138caf3d7e7ff4513156215b0
|
|
BLAKE2b-256 checksum How to use checksums |
e6e641c8ef8501f49fd85095ab307a349dda3fbc4af284f1109a23ca7ef60206
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / shinyhub_bookmarks-0.5.2-py3-none-any.whl
| Download URL | shinyhub_bookmarks-0.5.2-py3-none-any.whl |
|---|---|
| Size | 19.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
50a04d910193cdbfdeebd5a98f722d3648df9358159b16569285fc7047fb76ef
|
|
BLAKE2b-256 checksum How to use checksums |
ea810dfbb2cd2e1e56b7731f427c1b04c0be0734bfaced9bb300d32380863d4e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log