Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在aws cli我们可以将输出格式设置为json或table。现在我可以从那里得到 json 输出,json.dumps无论如何可以实现表格格式的输出?我试过pretty table但没有成功
aws cli
json
table
json.dumps
pretty table
Python Boto3 不以表格格式返回数据。您将需要解析数据并使用另一个 python 库以表格格式输出数据。Pretty table 对我很有用,阅读 pretty table lib 文档并调试您的代码。