-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
another api endpoint #732
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
another api endpoint #732
Conversation
@chriddyp looking at it now |
CHANGELOG.md
Outdated
@@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). | |||
## [Unreleased] | |||
### Added | |||
- offline embedded plots are now responsive to window resizing when `output_type == "div"` is set in `plotly.offline.iplot()`. | |||
- Beta: Methods were added that wrap the API endpoint for managing Dash objects on plot.ly. The API interface is under `plotly.api.v2.dash_apps` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think present tense sounds better here, so Methods (are added) that wrap the API endpoint ...
.
plotly/api/v2/dash_apps.py
Outdated
|
||
|
||
def retrieve(fid): | ||
"""Retrieve a dashboard from Plotly.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this supposed to say dashboard? Are dash apps just dashboards?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
woops, that's a typo. updated
@@ -0,0 +1,4 @@ | |||
from __future__ import absolute_import | |||
|
|||
from plotly.api.v2 import (dashboards, files, folders, grids, images, plot_schema, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the point of this file? Is this a file for the purpose of testing out our v2 stuff?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
woops didn't meant to commit that
lgtm 💃 |
💃 from me as well - after tests |
No description provided.