I am trying to upload the json file to Wasabi s3 bucket but couldn't make it to work goal was to upload the json file to the s3 bucket when spider is finished. I have created the policies with WasabiFullAccess
and AmazonS3FullAccess
and in scrapy settings.py
I have:
FEEDS = (
{
"https://s3.ap-southeast-2.wasabisys.com/bucketname/%(name)s/%(name)s_%(time)s.json": {
"format": "json",
}
},
)
aws_access_key_id = "MY_ACCESS_KEY"
aws_secret_access_key = "MY_SECRET_KEY"
But this is not working can't make it to bucket. I have installed boto
as well. Is there something I am missing here? I have searched almost every search engine but couldn't find any solution or any working example with wasabi s3 scrapy pipeline. Any help or hints would be much appreciated. Thanks!