我想從使用Python Boto的服務器下載特定的S3文件,並得到「403禁止」和「訪問被拒絕」錯誤消息。它說錯誤發生在第24行(get_contents命令)。我曾嘗試過,在源文件路徑開始處沒有「aws s3 cp」,兩次都收到相同的錯誤消息。我的代碼在下面,任何建議都會有幫助。Python S3亞馬遜代碼與'訪問被拒絕'錯誤
# Code to append csv:
import csv
import boto
from boto.s3.key import Key
keyId ="key"
sKeyId="secretkey"
srcFileName="aws s3 cp s3://...."
destFileName="C:\\Users...."
bucketName="bucket00001"
conn = boto.connect_s3(keyId,sKeyId)
bucket = conn.get_bucket(bucketName, validate = False)
#Get the Key object of the given key, in the bucket
k = Key(bucket, srcFileName)
#Get the contents of the key into a file
k.get_contents_to_filename(destFileName)
謝謝!我改變了你所說的一切,現在我得到一個錯誤,說「botocore.exceptions.DataNotFoundError」。這是否意味着它無法訪問該文件夾? – deathrow821
@ deathrow821我從來沒有遇到過這個錯誤,但是一個快速的搜索讓我相信它可能是你的版本的boto3的錯誤https://github.com/boto/boto3/issues/849 – PrestonM