user2399453
user2399453

Reputation: 3081

plot.ly python graph url

I am using plot.ly to plot some graphs on some data. The graph is shown correctly but I would like to get a url to the graph that is hosted on plot.ly/username/xxx. Is there a way to get the url programmatically? I checked the plot.ly documentation but did not come across this option.

Upvotes: 5

Views: 2321

Answers (1)

The6thSense
The6thSense

Reputation: 8335

By default when creating plot. The URL are passed by the function

import plotly.plotly as py
url = py.plot(fig, filename='stacked-bar')

Upvotes: 7

Related Questions