python mechanize.Browser返回

时间:2011-06-06 23:02:44

标签: python mechanize web-scraping

我已经完成了我的第一个python脚本,也是我的第一个机械化浏览器,非常好。但...

它会将某些字段作为“空字符串”返回,在这种情况下为:“& \ nbsp;” (back-slashe是我的,否则什么都没有出现。)

有没有人在使用mechanize.Browser之前经历过这个?

这是我的代码:

#!/usr/bin/env python

import mechanize
import cookielib
# Browser
br = mechanize.Browser()
# Cookie Jar
cj = cookielib.LWPCookieJar()
br.set_cookiejar(cj)
# Browser options
br.set_handle_equiv(True)
br.set_handle_gzip(True)
br.set_handle_redirect(True)
br.set_handle_referer(True)
br.set_handle_robots(False)
# Follows refresh 0 but not hangs on refresh > 0
br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1)
# Want debugging messages?
#br.set_debug_http(True)
#br.set_debug_redirects(True)
#br.set_debug_responses(True)
# User-Agent (this is cheating, ok?)
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]
r = br.open('https://192.168.2.141/webacs/welcomeAction.do')
br.select_form(nr=0)
br.form['username']='root'
br.form['password']='bla bla bla'
submit = br.submit()
import time
# just in case is about rendering time, which is not. 
time.sleep(10)
wcs_web = br.response().read()
file = open("wcs_web.html",'w')
file.write(wcs_web)
file.close()

在文件wcs_web.html中,我发现了这个:

  <tr>
    <th class="navAlarm" width="92">Malicious AP</th>
    <td id="rogueCritical" class="navAlarmNothing" align="right" width="23">&nbsp;</td>
    <td id="rogueMajor" class="navAlarmNothing" align="right" width="23">&nbsp;</td>
    <td id="rogueMinor" class="navAlarmNothing" align="right" width="23">&nbsp;</td>
  </tr>

它给了我'&amp; \ nbsp;'(同样,反斜杠是我的,或者没有显示),它应该是'0'。

任何人都知道这是为什么?它是如何修复的?

1 个答案:

答案 0 :(得分:0)

javascript可以负责转动&amp; \ nbsp;变成0? Mechanize不执行javascript。