Create a bucket
import boto
import time
import sys
import logging
import boto.s3.connection
import ConfigParser
host = '192.168.9.230'
s3 = boto.connect_s3(
host = host,
is_secure = false,
calling_format = boto.s3.connection.OrdinaryCallingFormat(),
)
bucket = s3.create_bucket("bucket_name") 1
bucket.delete() 2
1 Create a Vault called bucket_name.
2 Delete the bucket_name Vault.