Which web server does plotly use for showing plots in a regular non-jupyter python environment?

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.