Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

st-input-slider

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

st-input-slider

A custom Streamlit component that combines a slider with an input box for more precise value selection

  • 0.1.3
  • PyPI
  • Socket score

Maintainers
1

streamlit-input-slider

A highly customizable Streamlit component that combines a slider with an input box for more precise value selection.

Installation instructions

pip install st-input-slider

Usage instructions

Parameters

  • label (str, default None): The label for the slider component.
  • min_value (float, default 0): The minimum value of the slider.
  • max_value (float, default 100): The maximum value of the slider.
  • value (float, default 50): The initial value of the slider.
  • step (float, default 1): The step size for each slider movement.
  • format (str, default None): A printf-style format string controlling how the interface should display numbers. This follows the d3-format specification. Check d3-format.
  • options (dict, default None): Additional options for the slider component. Options include:
    • color (str, default primary theme color): This sets the color of the slider.
    • marks (bool, default False): Set initial and final marks.
    • disableUnderline (bool, default False): If True, the underline of the input box is disabled.
    • labelPosition (str, default "top"): The position of the label. Can be "top" or "left".
    • labelTextAlign (str, default "left"): The text alignment of the label. Can be "left", "center", "right", "justify", or "inherit".
    • fontSize (float, default 12): The font size.
    • endAdornment (str, default None): The text at the end of the input box.
    • labelWidth (str, default "20%"): The width of the label.
    • sliderWidth (str, default "60%"): The width of the slider.
    • inputWidth (str, default "20%"): The width of the input box.
  • key (str or None, default None): An optional key that uniquely identifies this component. If this is None, and the component's arguments are changed, the component will be re-mounted in the Streamlit frontend and lose its current state.
  • on_change (Callable, default None): A callback function that is called whenever the slider value changes.
  • args (tuple, default None): Additional arguments to pass to the callback function.
  • kwargs (dict, default None): Additional keyword arguments to pass to the callback function.

Function Returns

  • float: The current value of the slider. This is the value passed to Streamlit.setComponentValue on the frontend.

Example

import streamlit as st

from st_input_slider import st_input_slider

st.title("Slider + Input Example!")
options = {
    "color": "#9E9A35",  # Default is the primary theme color
    "disableUnderline": False,  # Default is False
    "marks": False,  # Default is False
    "labelPosition": "left",  # "top" or "left". Default is "top"
    "labelFontSize": 14,  # Default is 14
    "endAdornment": "Hz",  # Default is None (no adornment)
}
slider_value = st_input_slider(
    label="A custom slider", min_value=-100, max_value=200, value=50, step=0.1, options=options)
st.markdown("Value: %s" % (slider_value))

with st.sidebar:
    st.markdown("This is another slider with all default options:")
    slider_value = st_input_slider(
        label="A custom slider1", min_value=-100, max_value=200, value=50, step=0.1)
    st_input_slider(
        label="A custom slider2", min_value=-1000, max_value=20000, value=50, step=0.1, options={"marks": True, "labelPosition": "left"})
    st_input_slider(
        label="A custom slider3", min_value=-0.00001, max_value=0.00002, value=0.000015, step=0.000001, options={"marks": True, "labelPosition": "left"})
    st_input_slider(
        label="Slider :)", min_value=-100, max_value=200, value=50, step=0.1, options={"marks": True, "labelPosition": "left"})
    st_input_slider(
        label=":)", min_value=-100, max_value=200, value=50, step=0.1, options={"labelPosition": "left"})

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc