zoukankan      html  css  js  c++  java
  • pandas to_html

    如何将表格数据以图片的形式展现,主要目的则是为了防止爬虫。

    为了解决这个问题,刚开始选择的是matplotlib.pyplot.table,但由于随着数据的字段长短不一,且matplotlib实际落地的过程中存在许许多多的坑,最终还是没有采用。

    import numpy as np
    import pandas as pd
    import matplotlib.pyplot as plt
     
     
    df = pd.DataFrame(np.zeros((10,3)),columns=["c1","c2","c3"])
     
    fig, axs = plt.subplots()
    clust_data = df.values
    collabel = df.columns
    axs.axis('tight')
    axs.axis('off')
    the_table = axs.table(cellText=clust_data,colLabels=collabel,loc='center')
    plt.show()
    

      

    目前的解决方案:

    1. 生成html table代码

    2. chrome 屏幕大小调整后截屏

    寻寻觅觅到头来发现pandas 有一个叫做to_html的方法,DataFrame数据流直接生成表单html。

    截屏代码:

    from selenium import webdriver
    
    driver = webdriver.Chrome()
    driver.set_window_size(1000, 680)
    driver.get('file:///C:/Users/KC10/Desktop/data%20clearn/table.html')
    driver.save_screenshot('table.png')
    driver.quit()
    

      

      

  • 相关阅读:
    进程与线程的区别与联系
    c 指针兼容性问题
    柔性数组
    Makefile之wildcard
    shell编程笔记1
    linux下gcc编译的参数详细说明
    的理解
    URL与URI的区别
    Log4J积累
    linux 查看磁盘、文件夹、文件大小(df du)
  • 原文地址:https://www.cnblogs.com/zenan/p/10319990.html
Copyright © 2011-2022 走看看