我正在尝试使用 Python 3 提交表单。在 Python 2 中,我执行了以下操作:
br=mechanize.Browser()
br.set_handler_robots(False)
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')]
br.open(url)
br.select_form(nr=0)
br.form['form_name']=entry
br.submit()
有用。在 Python 3 中,我尝试使用以下代码来实现:
data={'form_name':entry}
data=urllib.parse.urlencode(data)
data=data.encode('utf-8')
headers={'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'}
req=urllib.request.Request(url,data,headers)
response=urllib.request.urlopen(req)
但它显示 HTTP 错误 405。谁能解释一下如何在 Python 3 中解决它?