用于JavaScript生成的URL的Python Web爬网程序

时间:2015-10-08 22:36:57

标签: javascript python web-scraping

我正在尝试使用一些Python网络爬虫从网站下载大约3000个PDF。但是,这些PDF的URL是由JavaScript函数生成的。所以,我想知道是否有任何关于如何实现这一目标的教程?

例如,点击Alberto European Hairspray (Aerosol) - All Variants后会生成链接到onclick="javascript:__doPostBack('ctl00$placeBody$gridView$gridView','DocumentCenter.aspx?did={0}$0&#39的网址。 所以问题是如何让网络抓取工具获取计算出的网址。

function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
<tbody>
    <tr>
        <td>
            <input type="image" src="App_Graphics/PDFDocument.gif" alt="MSDS" onclick="javascript:__doPostBack(&#39;ctl00$placeBody$gridView$gridView&#39;,&#39;DocumentCenter.aspx?did={0}$0&#39;);return false;" />
        </td>
        <td><a href="javascript:__doPostBack(&#39;ctl00$placeBody$gridView$gridView&#39;,&#39;MSDSDetail.aspx?did={0}$0&#39;)">Alberto European Hairspray (Aerosol) - All Variants</a>
        </td>
        <td>Unilever PLC</td>
        <td>8131-01</td>
    </tr>
    <tr class="row-alternate">
        <td>
            <input type="image" src="App_Graphics/PDFDocument.gif" alt="MSDS" onclick="javascript:__doPostBack(&#39;ctl00$placeBody$gridView$gridView&#39;,&#39;DocumentCenter.aspx?did={0}$1&#39;);return false;" />
        </td>
        <td><a href="javascript:__doPostBack(&#39;ctl00$placeBody$gridView$gridView&#39;,&#39;MSDSDetail.aspx?did={0}$1&#39;)">Alberto European Mousse (Aerosol) - All Variants</a>
        </td>
        <td>Unilever PLC</td>
        <td>8132-01</td>
    </tr>
</tbody>

2 个答案:

答案 0 :(得分:1)

你做不到。使用JavaScript解释器(例如SpiderMonkey)来执行代码,然后继续进行HTML解析。使用Qt的WebKit也是一种很好的方法,但可能更慢。

答案 1 :(得分:1)

另一个选择是您可以使用Selenium到execute js并获取计算网址。