【发布时间】:2017-11-04 11:07:19
【问题描述】:
我正在尝试使用 Requests 和 BeautifulSoup 从本页 http://www.pro-football-reference.com/teams/nwe/2016_roster.htm 上的 games_played_team 表中抓取数据
url = "http://www.pro-football-
reference.com/teams/nwe/2016_roster.htm"
r = requests.get(url)
soup = BeautifulSoup(r.content)
print soup.prettify()
返回
<!DOCTYPE html>
<html data-version="klecko-" data-root="/home/pfr/build"
itemscope="itemscope" itemtype="http://schema.org/WebSite" lang="en" class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0" />
<link rel="dns-prefetch" href="https://d2p3bygnnzw9w3.cloudfront.net/req/201706021" />
<link href="https://d2p3bygnnzw9w3.cloudfront.net" rel="preconnect" crossorigin="crossorigin" />
<link href="http://d9kjk42l7bfqz.cloudfront.net/req/201607120" rel="preconnect" crossorigin="crossorigin" />
<link href="https://www.google-analytics.com/" rel="preconnect" crossorigin="crossorigin" />
<link href="https://www.googletagservices.com" rel="preconnect" crossorigin="crossorigin" />
<script class="allowed">
var sr_is_production = true;
function vjs_ready(e){"loading"!=document.readyState?e():document.addEventListener("DOMContentLoaded",e)}var log_performance=!1,sr_detect_operaMini=navigator.userAgent.indexOf("Opera Mini")>
;-1;if(sr_detect_operaMini){var el=document.querySelector("html");el.className=el.className.concat(" operamini")}var sr_detect_firefox=navigator.userAgent.indexOf("Firefox")>-1;if(sr_detect
_firefox){var el=document.querySelector("html");el.className=el.className.concat(" firefox")}var sr_detect_firefoxMobile=navigator.userAgent.indexOf("Firefox")>-1&&(navigator.userAg
ent.indexOf("Mobile")>-1||navigator.userAgent.indexOf("Tablet")>-1);if(sr_detect_firefoxMobile){var el=document.querySelector("html");el.className=el.className.concat(" firefox-mobile")}
var sr_detect_ie=function(){var e=window.navigator.userAgent;if(e.indexOf("Trident/7.0")>0)return 11;if(e.indexOf("Trident/6.0")>0)return 10;if(e.indexOf("Trident/5.0")>0)return 9;for
(var t=3,n=document.createElement("div"),r=n.getElementsByTagName("i");n.innerHTML="<!--[if gt IE "+ ++t+"]><i></i>
<link rel="shortcut icon" href="https://d2p3bygnnzw9w3.cloudfront.net/req/201706021/favicons/pfr/favicon.ico">
</script>
</head>
</html>
当我查看实际的页面源代码时,看起来我想要的表格位于已注释掉的 HTML 块中。我不完全确定如何进行,如果有任何帮助,我将不胜感激
【问题讨论】:
-
<script class="allowed">我猜这是一个 javascript 加载的表。在 youtube 或其他网站上查找 selenium 和 phantomJS -
您要恢复哪些具体的信息项?
标签: python html beautifulsoup