boto3.client(';s3&39;)返回什么?
问题描述
我可以看到:
s = boto3.client('s3')
print(type(s))
打印
<class 'botocore.client.S3'>
但如果我尝试
print(botocore.client.S3)
我收到
AttributeError: module 'botocore.client' has no attribute 'S3'
为什么?
附注: 我的最终目标是返回一个特定于botocore.client.S3必须提供的模拟,但是返回内容的技术方面暗示我已经有一段时间了,知道了这一点,我可能就知道如何回答我的最终问题了。解决方案
通过一点试错,找出了可以使用的实例类型:
>>> import boto3
>>> import botocore
>>> isinstance(boto3.client('s3'), botocore.client.BaseClient)
True
相关文章