Can you kindly point me to the code setting up that web server which serves the plots upon using fig.show()
?
Look at plotly.io._base_renderers.py specifically the ExternalRenderer
class and the BrowserRenderer
class. I think that is what you are looking for.
Thanks! Should have guessed itβs the standard python HTTPServer.