pandas html table,Converting html table to a pandas dataframe

该博客讨论了如何从一个网页中导入HTML表格并将其转换为Pandas DataFrame。由于目标网页上的表格是通过JavaScript渲染的,直接使用`pd.read_html()`无法获取数据。解决方案是引入dryscrape库,创建一个会话,访问网页,然后利用`pd.read_html()`的返回结果来抓取表格。示例代码展示了如何实现这一过程。
摘要由CSDN通过智能技术生成

问题

I have been trying to import a html table from a website and to convert it into a pandas DataFrame. This is my code:

import pandas as pd

table = pd.read_html("http://www.sharesansar.com/c/today-share-price.html")

dfs = pd.DataFrame(data = table)

print dfs

It just displays this:

0 S.No ...

But if I do;

for df in dfs:

print df

It outputs the table..

How can I use pd.Dataframe to scrape the table?

回答1:

HTML table on the given url is javascript rendered. pd.read_html() doesn't supports javascript rendered pages. You can try with dryscrape like so:

import pandas as pd

import dryscrape

s = dryscrape.Session()

s.visit("http://www.sharesansar.com/c/today-share-price.html")

df = pd.read_html(s.body())[5]

df.head()

Output:

来源:https://stackoverflow.com/questions/42128760/converting-html-table-to-a-pandas-dataframe

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值