--- id: dtale version: "3.22.0" license: LGPL license_treatment: copyleft maintenance: active --- # dtale — Web Client for Visualizing Pandas Objects License: copyleft · Maintenance: active · Downloads: 79.6K/mo ## What it is and what it does D-Tale wraps Pandas data structures in an interactive web UI, letting you explore and manipulate data without writing code. It combines a Flask backend with a React frontend to provide filtering, sorting, column statistics, correlation analysis, and chart generation directly in your browser. The tool integrates with Jupyter notebooks and Python terminals, spawning a local web server on demand. You invoke it by passing a DataFrame to dtale.show(), which returns a handle to the running process. From there you can modify the underlying data programmatically, access metadata about the session, or kill the process when done. The 46 runtime dependencies include pandas, numpy, matplotlib, plotly, and Dash for visualization, plus Flask and related web libraries for the server. Use it for: - Quickly inspect and filter a DataFrame in a notebook without writing display code. - Generate summary statistics and correlation heatmaps for exploratory data analysis. - Share a live data-browsing session with colleagues by opening the browser interface. - Debug data quality issues by sorting, searching, and visualizing columns interactively. - Export filtered or transformed views to PNG charts or Excel files via the web UI. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. D-Tale is a Flask-backed web interface for viewing, exploring, and analyzing Pandas DataFrames and Series interactively in a browser, with built-in filtering, sorting, visualization, and data manipulation tools. Yes, with caution regarding the security advisory. D-Tale is a solid choice for interactive data exploration in development and analysis workflows—low install friction, active maintenance, and a large dependency tree that is well-established. However, review PYSEC-2024-117 before using in production, and be aware that the copyleft LGPL license requires sharing modifications to the library itself. Best suited for data scientists and analysts who want a GUI without building one. ## Install pip install dtale uv add dtale poetry add dtale ## Installing dtale Before you install: Installation is straightforward with low friction—a pure Python wheel with no compiled dependencies. The project is actively maintained with a recent commit history and moderate popularity (79645 monthly downloads), though one known security vulnerability (PYSEC-2024-117) should be reviewed before deployment. License in practice: D-Tale is licensed under LGPL (copyleft), which requires that any modifications to the library itself be shared under the same license, but does not restrict use in proprietary applications that merely call it as a dependency. Quickstart: pip install dtale import dtale import pandas as pd df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]}) d = dtale.show(df) d.open_browser() Requires a web browser to view the interface; Flask server will bind to a local port and open automatically if Python's webbrowser module can reach your default browser. Verify before relying: - Whether PYSEC-2024-117 affects the current 3.22.0 release or has been patched. - Exact Python version support (classifiers list 2.7 through 3.14, but requires_python is unspecified). - Performance characteristics with very large DataFrames (millions of rows). ## Package facts - License: LGPL (copyleft) - Python support: unspecified - Install friction: low - Maintenance: active - Downloads: 79.6K/month (top 15,000 on PyPI) - Known vulnerabilities: 1 ## Tags pandas dataframe web viewer, interactive data exploration gui, pandas data analysis dashboard, flask-based data browser, exploratory data analysis tool, pandas visualization interface, dataframe inspection web app, data-exploration, jupyter-compatible, web-ui [View on SkillFed](https://skillfed.io/packages/dtale) · [View on PyPI](https://pypi.org/project/dtale/)