Display / Render an HTML file inside Jupyter Notebook on Google Colab platform

前端 未结 3 1370
忘掉有多难
忘掉有多难 2021-02-03 11:03

I am using Google Colab to work create maps with Python 3.0 and I have done so using Basemaps. I am next trying to create similar maps using Google Maps. There are two python pa

3条回答
  •  情深已故
    2021-02-03 12:08

    Please Try Following code:

    from IPython.display import IFrame
    IFrame(src='path/to/your/filename.html', width=900, height=600)
    

    It did work for me. :)

提交回复
热议问题