我试图获得VersionLabel
php-v1
的值,但我的代码无法正常工作,而且我不知道自己做错了什么。
您能否告诉我错误的原因以及如何解析php-v1
?
这是我的错误消息。
TypeError: the JSON object must be str, not 'dict'
这是我的代码。
#!/usr/bin/env python3
import boto3
import json
def get_label():
try:
env_name = 'my-env'
eb = boto3.client('elasticbeanstalk')
response = eb.describe_instances_health(
EnvironmentName=env_name,
AttributeNames=[
'Deployment'
]
)
#print(response)
data = json.loads(response)
print(data['VersionLabel'])
except:
raise
if __name__ == '__main__':
get_label()
这是我在调用print(response)
时从AWS获得的响应。
{
'InstanceHealthList':[
{
'InstanceId':'i-12345678',
'Deployment':{
'DeploymentId':2,
'DeploymentTime':datetime.datetime(2016,
9,
29,
4,
29,
26,
tzinfo=tzutc()),
'Status':'Deployed',
'VersionLabel':'php-v1'
}
}
],
'ResponseMetadata':{
'HTTPStatusCode':200,
'RequestId':'12345678-1234-1234-1234-123456789012',
'RetryAttempts':0,
'HTTPHeaders':{
'content-length':'665',
'content-type':'text/xml',
'date':'Sat, 01 Oct 2016 11:04:56 GMT',
'x-amzn-requestid':'12345678-1234-1234-1234-123456789012'
}
}
}
非常感谢!
答案 0 :(得分:7)
根据boto3 docs [http://boto3.readthedocs.io/en/latest/reference/services/elasticbeanstalk.html?highlight=describe_instances_health#ElasticBeanstalk.Client.describe_instances_health],describe_instances_health方法返回dict而不是json。因此,您无需进行转换。 要从数据中获取VersionLabel,请使用 -
data ['InstanceHealthList'][0]['Deployment']['VersionLabel']
编辑:请注意,上面提取了第一个实例的VersionLabel,可能是多个实例。如果你有多个实例并且它们碰巧有不同的VersionLabel值,那么你需要额外的逻辑来获得你需要的那个。