0
我使用Python來劃分this webpage。但是當你點擊上一個按鈕時,我無法獲取這些項目。我想用硒來達到這個目標,但是我沒有成功讓它變得沒有頭緒。如何使用python在網頁中刮取表格?
下面我的代碼刮比賽環節:
import urllib2
import re
site_url = 'http://us.soccerway.com'
national_league_div_sub_matches_url = 'http://us.soccerway.com/national/england/premier-league/20132014/regular-season/r21322/'
national_league_div_sub_matches_url_source = urllib2.urlopen(national_league_div_sub_matches_url).read()
match_links = re.findall('(/matches/[0-9][0-9][0-9][0-9]/.*?ICID.*?)">', national_league_div_sub_matches_url_source)
match_links = map(lambda x: ''.join([site_url, x]), match_links)
for x in match_links:
print x
向我們展示你到目前爲止所擁有的。 –
使用phantomjs與硒 –
幾個月前我嘗試了phantomjs,無法使它工作。如果有問題,我正在窗戶上。 – GiannisIordanou