--- id: plotly-express version: "0.4.1" license: MIT license_treatment: permissive maintenance: abandoned --- # plotly-express — Plotly Express - a high level wrapper for Plotly.py License: permissive · Maintenance: abandoned · Downloads: 1.0M/mo ## What it is and what it does Plotly Express is a compatibility layer that re-exports the contents of plotly.express under the plotly_express namespace. It was created as a high-level wrapper for Plotly.py to simplify interactive visualization creation, but has been integrated directly into Plotly.py as of version 4. The package depends on pandas, plotly, statsmodels, scipy, patsy, and numpy to function. This package is now primarily useful only for maintaining legacy code that explicitly imports from plotly_express rather than plotly.express. The repository is archived and the package has not been updated since 2019. For any new projects, importing directly from plotly.express is the recommended approach. Use it for: - Maintaining legacy code that imports from plotly_express without refactoring import statements - Ensuring backward compatibility when migrating older projects to newer Plotly versions - Creating interactive scatter plots, line charts, and other visualizations with minimal code ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Plotly Express is now a compatibility shim that re-exports plotly.express; it provides a high-level wrapper for creating interactive visualizations with Plotly. No. This package is abandoned (last updated 2019, repository archived) and serves only as a deprecated compatibility shim. New projects should install plotly directly and import from plotly.express. Existing code using plotly_express should be refactored to use plotly.express instead. ## Install pip install plotly-express uv add plotly-express poetry add plotly-express ## Installing plotly-express Before you install: Low install friction with pure Python wheels, but the package is abandoned as of 2019 and no longer maintained. New code should import directly from plotly.express instead. License in practice: MIT license permits commercial and private use with minimal restrictions; suitable for most projects. Quickstart: pip install plotly-express==0.4.1 import plotly_express as px import pandas as pd df = pd.DataFrame({'x': [1, 2, 3], 'y': [4, 5, 6]}) fig = px.scatter(df, x='x', y='y') fig.show() Verify before relying: - Whether existing code relying on plotly_express 0.4.1 will work with current plotly versions without modification - Compatibility with modern Python versions (requires_python is unspecified in metadata) ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 1.0M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags interactive plotting library, high-level visualization wrapper, plotly express charts, quick interactive plots, data visualization plotly, deprecated, compatibility-shim [View on SkillFed](https://skillfed.io/packages/plotly-express) · [View on PyPI](https://pypi.org/project/plotly-express/)