Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# chart-studio

> **This project is deprecated as of October 2025.**

The chart-studio Python package contains utilities for interfacing with Plotly's Chart Studio service (both Chart Studio cloud and Chart Studio On-Prem).

Prior to plotly.py version 4, these Chart Studio utilities were included in the `plotly` package under the `plotly.plotly` module. As part of plotly.py version 4, the Chart Studio functionality was removed from the `plotly` package and released in this `chart-studio` package.
Expand Down
7 changes: 7 additions & 0 deletions chart_studio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
from __future__ import absolute_import
from chart_studio import plotly, dashboard_objs, grid_objs, session, tools
import warnings

warnings.warn(
"This package is deprecated as of October 2025.",
DeprecationWarning,
stacklevel=2
)
15 changes: 9 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@ def readme():

setup(
name="chart-studio",
version="1.1.0",
version="2.0.0",
author="Chris P",
author_email="chris@plot.ly",
maintainer="Jon Mease",
maintainer_email="jon@plot.ly",
url="https://plot.ly/python/",
project_urls={"Github": "https://github.com/plotly/chart-studio"},
description="Utilities for interfacing with plotly's Chart Studio",
maintainer="Plotly Libraries Team",
maintainer_email="community@plot.ly",
url="https://plot.ly/",
project_urls={
"Deprecated": "https://github.com/plotly/chart-studio/blob/main/README.md",
"Github": "https://github.com/plotly/chart-studio"
},
description="DEPRECATED: utilities for interfacing with Plotly's Chart Studio",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
Expand Down
Loading