gradio-rangeslider
🛝 Slider component for selecting a range of values
What it is and what it does
gradio-rangeslider is a Gradio custom component that extends Gradio's UI toolkit with a range slider—a two-handle slider widget for selecting a minimum and maximum value from a continuous interval. It wraps the standard Gradio dependency and exposes a RangeSlider class that integrates into Gradio Blocks and Interfaces, supporting event listeners (change, input, release) and standard Gradio component properties like labels, visibility, and interactivity.
The component is designed for forms, filtering interfaces, and leaderboard displays where users need to specify a range rather than a single point. It accepts a tuple of two floats as its value, respects minimum and maximum bounds, and can be configured with step increments. Since the project is dormant with no recent updates, it represents a snapshot of functionality from mid-2024 and may not track breaking changes in newer Gradio releases.
Use it for:
- Add a price or score range filter to a Gradio-based web interface or leaderboard.
- Build a form that collects a min–max interval (e.g., age range, salary band) from users.
- Create an interactive demo where users adjust a range parameter to control model behavior or data filtering.
- Prototype a data exploration tool where range selection triggers downstream computations via Gradio events.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Gradio custom component that adds a dual-handle range slider to select minimum and maximum values within a specified interval.
Yes, if you need a range slider in Gradio and can tolerate dormant maintenance. The component is lightweight, has no known vulnerabilities, and works with Python 3.8+. However, verify that your Gradio version is compatible and accept that no active support or updates are forthcoming—test thoroughly before production use, especially if you rely on recent Gradio features.
Install
gradio-rangeslider on PyPI
pip
pip install gradio-rangeslideruv
uv add gradio-rangesliderpoetry
poetry add gradio-rangesliderInstalling gradio-rangeslider
Before you install
Low install friction with a single pure-Python wheel. Maintenance is dormant—last commit was 2024-10-09 and no releases in the past 674 days—so expect no active bug fixes or feature updates.
License in practice
License status is unclear; no SPDX identifier or raw license text is available. Verify the repository license before using in proprietary or copyleft-sensitive projects.
Quickstart
pip install gradio-rangeslider
import gradio as gr
from gradio_rangeslider import RangeSlider
with gr.Blocks() as demo:
range_slider = RangeSlider(minimum=0, maximum=100, value=(20, 80))
output = gr.Markdown()
range_slider.change(lambda s: f"Range: {s[0]} to {s[1]}", range_slider, output)
demo.launch()
Verify before relying
- Whether the component works with all current Gradio versions or only specific releases.
- Whether there are known incompatibilities with recent Gradio updates.
- Community adoption and real-world stability reports beyond the download count.
Package facts
| License | not declared (unclear) |
| Python support | supports the current Python release (>=3.8) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — gradio |
| Maintenance | dormant — 674 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 323,801/month — #7,602 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: gradio_rangeslider-0.0.8-py3-none-any.whl
Keywords: filtering, forms, gradio-custom-component, gradio-template-Slider, leaderboards, slider
Tags
More Scientific/Engineering packages
NumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
pandaspandas provides fast, flexible data structures…
permissive · top 100 on PyPI
scipyscipy provides numerical algorithms for…
permissive · top 100 on PyPI
scikit-learnscikit-learn provides a comprehensive Python…
permissive · top 1,000 on PyPI
dilldill extends Python's pickle module to…
permissive · top 1,000 on PyPI
multiprocessMultiprocess is an enhanced fork of Python's…
permissive · top 1,000 on PyPI
gradio-imagesliderA Gradio component that displays two images…
permissive · top 15,000 on PyPI
gradio-pdfProvides a PDF display component for Gradio…
permissive · top 15,000 on PyPI
streamlit-vertical-sliderAdds a vertical slider widget to Streamlit apps…
unclear · top 15,000 on PyPI
gradioGradio builds web interfaces for machine…
permissive · top 5,000 on PyPI
hf-gradioA CLI tool for discovering endpoints and…
permissive · top 5,000 on PyPI
superqtProvides additional Qt widgets and UI…
permissive · top 15,000 on PyPI
gradio-clientCalls any Gradio app as a Python API with a…
permissive · top 5,000 on PyPI
django-bootstrap-datepicker-plusProvides Bootstrap-styled date, time, and…
permissive · top 15,000 on PyPI
streamlit-antd-componentsProvides Ant Design and Mantine UI components…
unclear · top 15,000 on PyPI
streamlit-image-coordinatesA Streamlit component that displays an image…
permissive · top 15,000 on PyPI