gpt4 book ai didi

python - 将此 curl 命令转换为 Python 3

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

以下 curl 命令完美运行(私有(private)数据已匿名):

curl -X POST 'https://api.twilio.com/2010-04-01/Accounts/abc/SMS/Messages.json' \
-d 'From=%2B14155551234' \
-d 'To=%2B17035551212' \
-d 'Body=This+is+a+test' \
-u foo:bar

如何以正确的 Python3.3 方式发送完全相同的 HTTPS POST 请求?如果可以避免,我不想使用 Python 3.3 的标准库以外的任何东西(换句话说,不使用 twilio python 模块,或“请求”,或 pycurl,或普通 Python 之外的任何东西3.3安装)。

首选的 Python 方法似乎从一个版本到另一个版本不断发展,我通过谷歌搜索找到的片段从未提及他们正在使用哪个版本或不做登录部分,Python 文档充满了“自 3.x 以来不推荐使用”。 x”,但从不包括新的做事方式的代码示例....

如果 curl 可以如此轻松地做到这一点,那么标准 Python 3.3 也可以。但是,现在应该具体如何完成?

最佳答案

这是一个同时适用于 Python 2 和 3 的版本:

import requests # pip install requests

url = 'https://api.twilio.com/2010-04-01/Accounts/abc/SMS/Messages.json'
r = requests.post(url, dict(
From='+17035551212',
To='+17035551212',
Body='This is a test'), auth=('foo', 'bar'))

print(r.headers)
print(r.text) # or r.json()

要在 Python 3.3 上使用基本的 http 身份验证发出 https post 请求:

from base64 import b64encode
from urllib.parse import urlencode
from urllib.request import Request, urlopen

user, password = 'foo', 'bar'
url = 'https://api.twilio.com/2010-04-01/Accounts/abc/SMS/Messages.json'
data = urlencode(dict(From='+17035551212', To='+17035551212',
Body='This is a test')).encode('ascii')
headers = {'Authorization': b'Basic ' +
b64encode((user + ':' + password).encode('utf-8'))}
cafile = 'cacert.pem' # http://curl.haxx.se/ca/cacert.pem
response = urlopen(Request(url, data, headers), cafile=cafile)

print(response.info())
print(response.read().decode()) # assume utf-8 (likely for application/json)

关于python - 将此 curl 命令转换为 Python 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14393339/

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