I am trying to connect amazon s3 bucket using python as follows
import boto
from boto.s3.connection import S3Connection
from boto.s3.key import Key
conn = S3Connection(settings.AWS_S3_ACCESS_KEY_ID, settings.AWS_S3_SECRET_ACCESS_KEY)
pb = conn.get_bucket(settings.AWS_STORAGE_BUCKET_NAME)
but i am receiving the following error
S3ResponseError: 403 Forbidden
i followed the below link http://www.techchorus.net/writing-python-script-send-files-amazon-s3
Please help me to solve this.