如何处理python中的html POST方法

时间:2017-07-07 16:32:32

标签: python-3.x urllib

我的python脚本不会在具有POST方法的html表单上设置名称和年龄 是否可以在python中处理html表单 HTML脚本:

<html>


	<form action="action.php" method="post">

		<p>Votre Nom : <input type="text" name="nom" /></p>
		<p>Votre Age : <input type="text" name="age" /></p>

		<p><input type="submit" value="OK"></p>
	</form>

</html>

PYTHON脚本:

import urllib.request, urllib.parse, socket
data = urllib.parse.urlencode({"nom":"joe", "age":"17"}).encode('utf-8')
req = urllib.request.Request("http://127.0.0.1/index.html", data=data)
res = urllib.request.urlopen(req).read().decode()

在终端中运行脚本后,我得到的是相同的html代码

0 个答案:

没有答案