コード例 #1
0
ファイル: s3.py プロジェクト: mathmodave/s3python
def listAllBuckets():
    size = 0
    bucketList = s3commands.doListAllBuckets()
    for bucket in bucketList:
        print bucket.name
        keyList = s3commands.doGetBucket(bucket.name)
        for key in keyList:
            print "",
            key.dump()
            size += key.size
    print "\nTotal Usage: %s" % human(size)
コード例 #2
0
ファイル: s3.py プロジェクト: mathmodave/s3python
def listBucket(theBucket):
    keyList = s3commands.doGetBucket(theBucket)
    for key in keyList:
        print "",
        key.dump()