Chilkat2-Python
Chilkat2-Python
Example: Http.S3_FileExists method
Demonstrates theS3_FileExists method.
Chilkat Chilkat2-Python Downloads
import sys
import chilkat2
http = chilkat2.Http()
# Insert your AWS keys here:
http.AwsAccessKey = "AWS_ACCESS_KEY"
http.AwsSecretKey = "AWS_SECRET_KEY"
bucketName = "chilkat.ocean"
objectName = "seahorse.jpg"
http.AwsRegion = "us-west-2"
http.AwsEndpoint = "s3-us-west-2.amazonaws.com"
retval = http.S3_FileExists(bucketName,objectName)
if (retval < 0):
print("Failed to check for the S3 object existence")
print(http.LastErrorText)
sys.exit()
if (retval == 0):
print("The S3 object does not exist.")
sys.exit()
print("The S3 object exists.")