跟随机械化的链接
Posted
技术标签:
【中文标题】跟随机械化的链接【英文标题】:Following links with Mechanize 【发布时间】:2013-01-07 04:53:14 【问题描述】:我想使用 Mechanize python 库来跟踪网站中的某些链接,但我感兴趣的唯一链接是 <div>
标记中的链接。 This 问题是相关的,但他们使用 lxml
解析器实现它,我不熟悉,我更喜欢使用 BeautifulSoup。
我已经使用 BeautifulSoup 找到了相关链接,但我不知道如何使用 Mechanize(或其他东西)来跟踪这些链接。有没有办法将字符串传递给 Mechanize 以便它跟随它?
【问题讨论】:
【参考方案1】:简单的open()
就足够了:
br.open('http://google.com')
【讨论】:
这比我想象的要容易得多!【参考方案2】:import mechanize
response = mechanize.urlopen("http://example.com/")
content = response.read() #The content is the code of the page (html)
或者,如果您想添加诸如标题之类的内容:
import mechanize
request = mechanize.Request("http://example.com/")
response = mechanize.urlopen(request)
content = response.read() #The content is the code of the page (html)
【讨论】:
以上是关于跟随机械化的链接的主要内容,如果未能解决你的问题,请参考以下文章