gpt4 book ai didi

python - 使用python提交表单

转载 作者:行者123 更新时间:2023-12-01 05:44:49 25 4
gpt4 key购买 nike

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

最佳答案

您可以使用 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()

关于python - 使用python提交表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16425031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com