索引器:列表索引超出范围API

2024-10-03 13:29:02 发布

您现在位置:Python中文网/ 问答频道 /正文

嗨,我正在基于Opensea API生成随机的data to csv文件。问题是我受到API上列表大小的限制。有没有办法绕过这个问题

这是我的密码:

r = requests.get('https://api.opensea.io/api/v1/assets?collection=bit birds&order_direction=asc&offset=' + (str(x)) + '&limit=1')
jsonResponse = r.json()
            
name = jsonResponse['assets'][0]['name']
description = jsonResponse['assets'][0]['description']
            
print('Name: ' + name)
print('Description: ' + str(description))

我得到了这个错误:

Traceback (most recent call last): File
"d:\generate-bitbirds-main\generate-bitbirds-main\bird_data\bitbird_generation_script_w_csv4.py",
line 1855, in <module>
name = jsonResponse['assets'][0]['name'] IndexError: list index out of range

Tags: csvtonameapidatamaindescriptionjsonresponse
1条回答
网友
1楼 · 发布于 2024-10-03 13:29:02

使用API时,最好先检查请求是否成功,然后再访问响应。您可以先调用r.raise_for_status()并处理错误场景。然后在访问列表之前,首先检查它是否为空

r = requests.get(...)
try:
    r.raise_for_status()  # Check if the request was successful
    jsonResponse = r.json()  # Check if the response is in JSON format
except requests.HTTPError, JSONDecodeError:
    # Handle error scenario
else:
    if jsonResponse['assets']:  # Check first if there are assets returned
        # Proceed as usual
        name = jsonResponse['assets'][0]['name']
        description = jsonResponse['assets'][0]['description']
    else:  # This means that the assets are empty. Depending on your use case logic, handle it accordingly.
        # Handle empty assets scenario

相关问题 更多 >