Export pandas Styled table to image file
As mentioned in the comments, you can use the to_html() method to obtain an HTML of the styled table (in old versions it was render()): html = styled_table.to_html() You can then use a package that converts html to an image. For example, IMGKit: Python library of HTML to IMG wrapper. Bear in mind that this … Read more