For the first time I am using amazon web s3. I want to create bucket with the following code:
import boto
s3 = boto.connect_s3('root', 'root')
bucket = s3.create_bucket('firstbucket')
But I get error of socket.timeout: timed out
For the first time I am using amazon web s3. I want to create bucket with the following code:
import boto
s3 = boto.connect_s3('root', 'root')
bucket = s3.create_bucket('firstbucket')
But I get error of socket.timeout: timed out