pandas to_html using the .style options or custom CSS?

前端 未结 3 1802
眼角桃花
眼角桃花 2020-11-29 01:10

I was following the style guide for pandas and it worked pretty well.

How can I keep these styles using the to_html command through Outlook? The documentation seems

3条回答
  •  情歌与酒
    2020-11-29 01:33

    It's not an extravagant / pythonic solution. I inserted the link to a direct css file before the html code made by the to_html () method, then I saved the whole string as an html file. This worked well for me.

    dphtml = r'' + '\n'
    dphtml += dp.to_html()
    
    with open('datatable.html','w') as f:
        f.write(dphtml)
        f.close()
        pass
    

提交回复
热议问题