使用python提交表单

时间:2013-05-07 17:25:48

标签: python html parsing

我需要在我的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>

1 个答案:

答案 0 :(得分: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()