gpt4 book ai didi

python - 通过 post 请求传输字典

转载 作者:太空狗 更新时间:2023-10-29 20:44:21 25 4
gpt4 key购买 nike

我正在使用 Python 并尝试通过 HTTP-Post 请求向服务器发送字典(包含动态数据)。最有效的实现方式是什么?

最佳答案

使用 urllib.urlencode 将字典编码为 POST。

import urllib
import urllib2

mydict = {'key1': 'value1', 'key2': 'value2'}
encoded_dict = urllib.urlencode(mydict)

request = urllib2.Request(myurl, encoded_dict)
# now make the request
response = request.urlopen().read()

关于python - 通过 post 请求传输字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4163263/

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