我正在尝试使用 Python Mechanize抓取.aspx 网页。ParseError: unexpected '[' char in declaration
但即使我手动删除了 DTD,我也不断收到一个有趣的错误。
这是我的完整代码:
url = 'http://corporate.marksandspencer.com/aboutus/where/international_stores'
browser = mechanize.Browser()
browser.open(url)
browser.select_form(nr=0)
ParseError: unexpected '[' char in declaration
它在最后一行失败。谁能建议可能出了什么问题?