繁体   English   中英

使用python抓取隐藏的href

[英]web-scraping hidden href using python

我正在使用 python 从以下网页获取所有可能的 href:

http://www.congresovisible.org/proyectos-de-ley/

例如这两个

href="ppor-medio-de-la-cual-se-dictan-medidas-para-defender-el-acceso-de-los-usuarios-del-sistema-de-salud-a-medicamentos-de-calidad-eficacia-y-seguridad-acceso-de-los-usuarios-del-sistema-de-salud-a-medicamentos/8683">

href="ppor-medio-del-cual-el-congreso-de-la-republica-facultado-por-el-numeral-17-del-articulo-150-de-la-constitucion-politica-de-colombia-y-en-aras-de-facilitar-la-paz-decreta-otorgar-amnistia-e-indulto-a-los-miembros-del-grupo-armado-organizado-al-margen-de-la-ley-farc-ep/8682">

最后有一个包含该页面中所有可能的 href 的列表。

但是,通过单击 ver todos(“查看全部”),可以获得更多的 href。 但是如果您检查源页面,即使您将 /#page=4 或任何页面添加到 url,总的 href 保持不变(实际上页面源并没有改变)。 我怎么能得到所有这些隐藏的hrefs?

预注:我假设您使用 Python 3+。

发生的情况是,您单击“查看全部”,它会请求 API、获取数据、转储到视图中。 这就是所有的 AJAX 过程。

复杂的方法是使用Selenium,但实际上没有必要。 通过在浏览器上进行一些调试,您可以看到它加载数据的位置

这是第一页。 q可能是搜索查询, page正是哪个页面。 每页 5 个元素。 您可以通过urllibrequests并使用json包将其解析为 dict。


一个简单的演示

我想自己尝试一下,似乎我们从中获取数据的服务器需要一个User-Agent标头来处理,否则,它只会抛出403 (禁止)。 我正在尝试使用 Python 3.5.1。

from urllib.request import urlopen, Request
import json

# Creating headers as dict, to pass User-Agent. I am using my own User-Agent here.
# You can use the same or just google it.
# We need to use User-Agent, otherwise, server does not accept request and returns 403.
headers = {
    "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.82 Safari/537.36 OPR/39.0.2256.48"
}

# Creating a Request object.
# See, we pass headers, below.
req = Request("http://www.congresovisible.org/proyectos-de-ley/search/proyectos-de-ley/?q=%20&page=1", headers=headers)

# Getting a response
res = urlopen(req)

# The thing is, it returns binary, we need to convert it to str in order to pass it on json.loads function.
# This is just a little bit complicated.
data_b = res.read()
data_str = data_b.decode("utf-8")

# Now, this is the magic.
data = json.loads(data_str)

print(data)

# Now you can manipulate your data. :)

对于 Python 2.7

  • 您可以使用urllib2 urllib2不像在 Python 3 中那样分离成包。所以,你需要做的就是from urllib2 import Request, urlopen

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM