4

我正在尝试使用 pandas.read_html() 函数通过Transfetmarkt网站从各种 html 表格中抓取英国足球统计数据。

例子:

import pandas as pd
url = r'http://www.transfermarkt.co.uk/en/premier-league/gegentorminuten/wettbewerb_GB1.html'
df = pd.read_html(url)

但是,此代码会生成“ValueError:无效 URL”错误。

然后我尝试使用 urllib2.urlopen() 函数解析同一个网站。这次我得到一个“HTTPError:HTTP Error 404:Not Found”。在通常的试错故障查找之后,urllib2 标头向网络服务器提供了一个类似 python 的代理,我认为它无法识别。

现在,如果我修改 urllib2 的代理并使用 beautifulsoup 读取其内容,我可以毫无问题地读取表格。

例子:

from BeautifulSoup import BeautifulSoup
import urllib2
opener = urllib2.build_opener()
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
url = r'http://www.transfermarkt.co.uk/en/premier-league/gegentorminuten/wettbewerb_GB1.html'
response = opener.open(url)
html = response.read()
soup = BeautifulSoup(html)
table = soup.find("table")

如何修改 pandas 的 urllib2 标头以允许 python 抓取该网站?

谢谢

4

1 回答 1

6

目前你不能。相关代码:

if _is_url(io): # io is the url
    try:
        with urlopen(io) as url:
            raw_text = url.read()
    except urllib2.URLError:
        raise ValueError('Invalid URL: "{0}"'.format(io))

如您所见,它只是传递urltourlopen并读取数据。您可以提出请求此功能的问题,但我假设您没有时间等待它解决,因此我建议使用 BeautifulSoup 解析 html 数据,然后将其加载到 DataFrame 中。

import urllib2

url = 'http://www.transfermarkt.co.uk/en/premier-league/gegentorminuten/wettbewerb_GB1.html'
opener = urllib2.build_opener()
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
response = opener.open(url)
tables = pd.read_html(response.read(), attrs={"class":"tabelle_grafik"})[0]

或者,如果您可以使用requests

tables = pd.read_html(requests.get(url,
                                   headers={'User-agent': 'Mozilla/5.0'}).text,
                      attrs={"class":"tabelle_grafik"})[0]
于 2013-09-22T00:57:31.233 回答