如何在HTML文件的特定位置插入Plotly div?

时间:2020-09-21 14:41:22

标签: python beautifulsoup plotly

我有一个HTML模板,我想在HTML文件的特定位置插入图形。我有三个数字,并使用以下代码将这些数字添加到HTML文件:

figures= [fig1, fig2, fig3]
    
with open('test.html', 'a') as f:
    for fig in figures: 
        f.write(fig.to_html(full_html=True))

执行此操作时,它将所有三个图形添加到文件底部,模板中其余代码之后。有谁知道如何在适当的标题后添加三个数字中的每个数字?我想我读过某个地方可以用BeautifulSoup做到这一点?

1 个答案:

答案 0 :(得分:0)

import chart_studio.tools as tls

tls.get_embed('https://plotly.com/~chris/1638')

基于文档[link] https://plotly.com/python/embedding-plotly-graphs-in-HTML/#:~:text=Plotly%20graphs%20can%20be%20embedded,Plotly%20graphs%20with%20the%20plotly。上面的代码应该为您完成。此链接上也有很多示例。[link] https://plotly.com/python/interactive-html-export/