1

我需要在我的 python 脚本中解析 HTML。但是,要在浏览器中访问我需要的页面,请单击单选按钮并提交表单。那么,如何使用 python 提交表单并返回呈现的 html 呢?谢谢,我会很感激任何帮助。

我说的表格:

<form id="ac" method="post">
      <input type="radio" id="a" name="a" value="2" onchange="document.getElementById('ac').submit();" checked="checked">
      <input type="radio" id="aa" name="a" value="1" onchange="document.getElementById('ac').submit();">
      <input type="radio" id="aaa" name="a" value="0" onchange="document.getElementById('ac').submit();">
</form>
4

1 回答 1

2

您可以为此使用 urllib:http: //docs.python.org/2.7/library/urllib.html

单选按钮将其数据作为 name=value 发送,在本例中为 a=2。

来自Python URLLib / URLLib2 POST的修改示例:

import urllib
import httplib

server='myserver.com'
get_data='/link/with/get/data.php?test=1'

data = urllib.urlencode({'a': 2})
h = httplib.HTTPConnection('enfenion.com')
headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
h.request('POST', get_data, data, headers)
r = h.getresponse()
print r.read()
于 2013-05-07T17:29:27.600 回答