plot.ly python graph url

2.2k views Asked by At

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.

1

There are 1 answers

1
The6thSense On BEST ANSWER

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

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