>>> import boto
>>> c = boto.connect_s3()
>>> b=c.get_bucket('beaubeaubeau')
>>> from boto.s3.key import key
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name key
我是boto的新手 知道我为什么会收到这个错误吗?
答案 0 :(得分:2)
我想你想要:
from boto.s3.key import Key
boto.s3.key
是一个Python模块,Key
是该模块中包含的一个类。