gpt4 book ai didi

python - HTTPResponse 对象没有属性 json

转载 作者:行者123 更新时间:2023-12-01 21:35:38 26 4
gpt4 key购买 nike

我正在从输出一些 json 内容的 API 中检索数据。但是,当我尝试使用以下代码将数据存储到一个简单的文本文件中时:

import urllib3
import json

http = urllib3.PoolManager()
url = 'http://my/endpoint/url'
myheaders = {'Content-Type':'application/json'}
mydata = {'username':'***','password':'***'}
response = http.request('POST', url, body=json.dumps(mydata).encode('UTF-8'), headers=myheaders)
print(response.status_code)
data = response.json()

with open('data.json', 'w') as f:
json.dump(data, f)

我收到以下错误:

AttributeError: 'HTTPResponse' object has no attribute 'json'

因此,我还尝试将 response.text 与以下代码一起使用:

file = open('data.json', 'w')
file.write(response.text)
file.close()

但是我也得到这个错误:

AttributeError: 'HTTPResponse' object has no attribute 'text'

为什么我不能将我的回复存储到一个简单的文本文件中?

最佳答案

您似乎将模块 requests 的代码与模块 urllib3 的代码混合使用了

requestsstatus_code.text, .content, .json()urllib3 没有

请求

import requests

url = 'https://httpbin.org/post'

mydata = {'username': '***', 'password': '***'}

response = requests.post(url, json=mydata)
print(response.status_code)

data = response.json()
print(data)

with open('data.json', 'wb') as f:
f.write(response.content)
#json.dump(data, f)

urllib3

import urllib3
import json

http = urllib3.PoolManager()

url = 'https://httpbin.org/post'
myheaders = {'Content-Type': 'application/json'}
mydata = {'username': '***', 'password': '***'}

response = http.request('POST', url, body=json.dumps(mydata).encode('UTF-8'), headers=myheaders)
#print(dir(response))
print(response.status)

data = json.loads(response.data)
print(data)

with open('data.json', 'wb') as f:
f.write(response.data)

关于python - HTTPResponse 对象没有属性 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61998724/

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