--- id: gradio-rangeslider version: "0.0.8" license: unclear license_treatment: unclear maintenance: dormant --- # gradio-rangeslider — 🛝 Slider component for selecting a range of values License: unclear · Maintenance: dormant · Downloads: 323.8K/mo ## 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 above — 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 pip install gradio-rangeslider uv add gradio-rangeslider poetry add gradio-rangeslider ## Installing 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_current - Install friction: low - Maintenance: dormant - Downloads: 323.8K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags gradio range slider component, dual handle slider input, min max value selector, range selection widget, gradio custom slider, interval picker gradio, range filter component, gradio-component, ui-widget, range-input [View on SkillFed](https://skillfed.io/packages/gradio-rangeslider) · [View on PyPI](https://pypi.org/project/gradio-rangeslider/)