gpt4 book ai didi

python - typeerror 'bytes' 对象不可调用

转载 作者:太空宇宙 更新时间:2023-11-03 13:42:41 31 4
gpt4 key购买 nike

我的代码:

import psycopg2
import requests
from urllib.request import urlopen
import urllib.parse
uname = " **** "
pwd = " ***** "
resp = requests.get("https://api.flipkart.net/sellers/skus/SKUID/listings", auth=(uname, pwd))
con_page = resp.content()
print (con_page)

我收到此错误:

Traceback (most recent call last):

File "C:\Users\Prime\Documents\NetBeansProjects\Fp_API\src\fp_api.py", line 18, in <module>

con_page = resp.content()

TypeError: 'bytes' object is not callable

最佳答案

基于documentationrequests.get() 的返回值是一个 requests.Response,它有一个 content 字段,类型为 bytes,而不是 content() 方法。

试试这个:

con_page = resp.content

关于python - typeerror 'bytes' 对象不可调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27499836/

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