我正在编写一些使用mechanize访问网站的代码,但有时候,当我运行Python代码时,它会无限期地停在我使用mechanize.ParseResponse
的一行。它没有给我一个错误,而是我必须通过CTRL+C
打断它。另外,我相信我正在使用该方法的正确参数。但是,我很困惑为什么我的程序会突然停止运行。有什么想法吗?
作为额外的背景,我在Mac上运行。
非常感谢任何帮助!
修改:以下是我的代码
注意:我已拨打python bikes.py
并偶尔停在以下一行:
form = mechanize.ParseResponse(response, backwards_compat=False)
有时,它也会停在:
text = response.read()
# bikes.py
import re
import webbrowser
import mechanize
import urllib
brands = ["cannondale", "felt", "fuji", "giant", "specialized", "trek"]
keywords = ["52", "53", "54", "shimano", "sora", "tiagra", "105", "ultegra", \
"road", "allez", "defy"]
avoid = ["bmx", "mountain", "kids", "fixie", "jacket", "clothing", "fixed gear", \
"hybrid", "mtb"]
def openLink(text):
text = text.lower()
open = False
for word in avoid:
if word in text:
return False
for word in keywords:
if word in text:
open = True
return open
def scourPage(text, fileRead, fileWrite):
links = re.findall(r'class="row".+?href="(.+?)"', text)
for link in links:
if "http:" in link:
url = link
else:
url = homePage + link
page = urllib.urlopen(url)
pageText = page.read()
title = re.search(r'"postingtitle">.{0,10}<span.+?>[\s\'"]+(.+?)[\s\'"]{0,10}</h2>', \
pageText, re.DOTALL)
body = re.search(r'"postingbody">(.+?)</section>', pageText, re.DOTALL)
openBody = False
openTitle = False
if body != None:
body = body.group(1)
openBody = openLink(body)
if title != None:
title = title.group(1)
openTitle = openLink(title)
if (openTitle and openBody) and (url not in fileRead) and (title not in fileRead):
fileWrite.write(title + "\n" + url + "\n")
fileWrite.close()
homePage = "http://sfbay.craigslist.org"
request = mechanize.Request(homePage)
response = mechanize.urlopen(request)
forms = mechanize.ParseResponse(response, backwards_compat=False)
form = forms[0]
request = form.click()
response = mechanize.urlopen(request)
emptySearch = response.geturl()
request = mechanize.Request(emptySearch)
response = mechanize.urlopen(request)
forms = mechanize.ParseResponse(response, backwards_compat=False)
form = forms[0]
form["catAbb"] = ["bik"]
form["maxAsk"] = "500"
form.find_control("hasPic").items[0].selected = True
for brand in brands:
form["query"] = brand
request = form.click()
response = mechanize.urlopen(request)
text = response.read()
fileR = open('bikes.txt', 'r').read()
fileA = open('bikes.txt', 'a')
scourPage(text, fileR, fileA)
fileA.close()
next = re.findall(r'class="nplink next".{0,50}<a href=\'(.+?)\'>', text, re.DOTALL)
while len(next) != 0:
text = urllib.urlopen(next[0]).read()
fileR = open('bikes.txt', 'r').read()
fileA = open('bikes.txt', 'a')
scourPage(text, fileR, fileA)
fileA.close()
next = re.findall(r'class="nplink next".{0,50}<a href=\'(.+?)\'>', text, re.DOTALL)
此代码梳理Craigslist广告,试图清除那些我不想要的广告。在这种情况下,我正在寻找一辆公路自行车,并避开任何山地自行车和其他列表。
更新
等了很长时间后,我终于用键盘中断了跑步,并在form = mechanize.ParseResponse(response, backwards_compat=False)
线停了下来。我尝试再次运行它并得到了这个错误:
Traceback (most recent call last):
File "bikes.py", line 97, in <module>
forms = mechanize.ParseResponse(response, backwards_compat=False)
File "build/bdist.macosx-10.8-intel/egg/mechanize/_form.py", line 945, in ParseResponse
File "build/bdist.macosx-10.8-intel/egg/mechanize/_form.py", line 981, in _ParseFileEx
File "build/bdist.macosx-10.8-intel/egg/mechanize/_form.py", line 758, in feed
File "build/bdist.macosx-10.8-intel/egg/mechanize/_sgmllib_copy.py", line 110, in feed
File "build/bdist.macosx-10.8-intel/egg/mechanize/_sgmllib_copy.py", line 192, in goahead
File "build/bdist.macosx-10.8-intel/egg/mechanize/_form.py", line 654, in handle_charref
File "build/bdist.macosx-10.8-intel/egg/mechanize/_form.py", line 149, in unescape_charref
ValueError: unichr() arg not in range(0x10000) (narrow Python build)
答案 0 :(得分:0)
你的while
循环可能无限,这解释了行为。你检查不是吗?
您CTRL-C
代码时遇到的运行时错误并不一定意味着代码已损坏。