使用python中的请求发布到html表单?

时间:2012-06-29 19:45:10

标签: python post python-requests

如果我试图搜索某些内容,我该如何发送要搜索的数据进行搜索?我知道你可以把它添加到网址,但我不想这样做。

1 个答案:

答案 0 :(得分:1)

使用请求库。您可以像.get方法一样使用.post方法。将数据作为字典传递给函数的数据参数。

快速入门文档在此处对其进行了描述http://requests.readthedocs.org/en/latest/user/quickstart/#more-complicated-post-requests

如果使用urllib或urllib2,则urlopen函数的data参数将POST数据发送到页面而不是GET

请参阅此处的文档http://docs.python.org/library/urllib.html#urllib.urlopen