Hi @Endogen,
If you’re setup with an account for online plotting (https://plot.ly/python/getting-started/#initialization-for-online-plotting) you can use plotly.plotly.image
to request the image bytes.
from plotly.plotly import image
img_bytes = image.get(fig)
But if you’re working offline, the orca is the best option.
Hope that helps!
-Jon