将列表转换为字符串时为什么会出现错误?

时间:2019-08-29 00:13:16

标签: python-3.x list

我对Python比较陌生,正在尝试获取命令的输出

aws ec2 describe-images --filters Name=name,Values=Nessus*BYOL*

并获得ImageId的值。但是当我尝试时,出现以下错误:

TypeError: 'int' object is not subscriptable

我试图将其转换为字符串,但是我不知道这是否是正确的方法。我也尝试过对其进行正则表达式,但这似乎也没有解决。

最后,我需要将 ImageId 的值分配给变量以供以后使用。

这是我的代码:

def queries():
    describe_images = subprocess.call("aws ec2 describe-images --filters Name=name,Values=Nessus*BYOL*")
    str(print(describe_images["ImageId"]))

这是运行该命令时得到的输出:

{
    "Images": [
        {
            "Architecture": "x86_64",
            "CreationDate": "2019-06-04T11:50:36.000Z",
            "ImageId": "ami-0d700172aa0395099",
            "ImageLocation": "aws-marketplace/Nessus 8.4.0 (master-193 1558031440.58) BYOL-8e783acf-0dfb-44dc-b080-415aad141bb2-ami-03eadadcd69ef2dbc.4",
            "ImageType": "machine",
            "Public": true,
            "ProductCodes": [
                {
                    "ProductCodeId": "8fn69npzmbzcs4blc4583jd0y",
                    "ProductCodeType": "marketplace"
                }
            ],
            "State": "available",
            "BlockDeviceMappings": [
                {
                    "DeviceName": "/dev/xvda",
                    "Ebs": {
                        "DeleteOnTermination": false,
                        "SnapshotId": "snap-07020d6ea4da33df4",
                        "VolumeSize": 8,
                        "VolumeType": "gp2",
                        "Encrypted": false
                    }
                }
            ],
            "EnaSupport": false,
            "Hypervisor": "xen",
            "ImageOwnerAlias": "aws-marketplace",
            "Name": "Nessus 8.4.0 (master-193 1558031440.58) BYOL-8e783acf-0dfb-44dc-b080-415aad141bb2-ami-03eadadcd69ef2dbc.4",
            "RootDeviceName": "/dev/xvda",
            "RootDeviceType": "ebs",
            "VirtualizationType": "hvm"
        }
    ]
}

1 个答案:

答案 0 :(得分:1)

subprocess.call方法将返回returncode,而不是命令输出。来自documentation

  

subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)

     

运行args描述的命令。等待命令完成,然后返回returncode属性。

也许您想使用.check_output()

  

运行带有参数的命令并返回其输出。

还要注意,输出将是一个字符串。您应该先使用json.loads()将其转换为Python字典。