数据框窗口中的Python Boto3列表实例

数据框窗口中的Python Boto3列表实例,python,pandas,Python,Pandas,我正试图用Boto3在表中列出我的EC2实例 instances = ec2.instances.filter( Filters=[{'Name': 'instance-state-name', 'Values': ['running']}]) instance_count = sum(1 for _ in instances.all()) RunningInstances = [] for instance in instances: id = instance.id

我正试图用Boto3在表中列出我的EC2实例

instances = ec2.instances.filter(
    Filters=[{'Name': 'instance-state-name', 'Values': ['running']}])
instance_count = sum(1 for _ in instances.all())
RunningInstances = []
for instance in instances:
    id = instance.id
    name = self.get_name_tag(instance)
    type = instance.instance_type
    mylist = {"name":name,"id":id,"type":type}
    RunningInstances.append(mylist.copy())
import numpy as np
import pandas as pd
table = pd.DataFrame.from_dict(RunningInstances)
print(table)
这将创建一个表-这是伟大的!我的问题是,即使列可以容纳在当前窗口中,列也会溢出到另一行:

                 id                                           name  \
0            i-56b243ge                                       My Really Long Name for my Instance
1            i-89b789ga                                       My 2nd Really Long Name for my Instance

                 type
0            t2-micro
1            t2-small

我刚刚了解到熊猫现在已经存在,所以我还没有完全掌握造型。请记住,名称列标题位于名称值的右侧-由于堆栈的格式,我无法将其放在那里。如何将一个数据帧/表的所有内容放在一个视图中

欢迎来到熊猫世界,您会喜欢它在数据帧上执行操作的方式,而不希望您迭代这些值。我对你的解析做了一些修改,以展示它的一些能力

import boto3
import pandas as pd
client=boto3.client('ec2')
response = client.describe_instances()
df=pd.io.json.json_normalize(
    pd.DataFrame(
        pd.DataFrame(
            response['Reservations']
        )\
        .apply(lambda r: r.str[0])\. # Get only the first element of the list
        .Instances\
        .values
        )[0]
    )[['ImageId','InstanceType','Tags']]
df['Name']=df.Tags.apply(lambda r: r[0]['Value']) # Get the name from the tags dict
df.drop(['Tags'], axis=1, inplace=True)
df
将为您提供:

    ImageId InstanceType Name
0   ami-123 t2.2xlarge   name1
1   ami-234 t2.large     name2
2   ami-345 m5.12xlarge  name3