Hi,
Thank you for the efforts on this package - I appreciate your work! I've got feature proposal because I stumbled about this today and dont think it is implemented.
AWS sometimes has the option of "Requester pays" e.g. on access of public datasets. You'll have to pass the credentials and additionally the keyword args RequestPayer='requester' in boto3.
Documentation: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ObjectsinRequesterPaysBuckets.html
As far as I see this option is not included yet in the codebase of cloudpathlib.
It should be integrated to the bucket.objects.filter() function of boto3, e.g.
bucket.objects.filter(Prefix=prefix, RequestPayer='requester')
What do you think?
Best regards,
Johannes
Hi,
Thank you for the efforts on this package - I appreciate your work! I've got feature proposal because I stumbled about this today and dont think it is implemented.
AWS sometimes has the option of "Requester pays" e.g. on access of public datasets. You'll have to pass the credentials and additionally the keyword args
RequestPayer='requester'in boto3.Documentation: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ObjectsinRequesterPaysBuckets.html
As far as I see this option is not included yet in the codebase of cloudpathlib.
It should be integrated to the bucket.objects.filter() function of boto3, e.g.
What do you think?
Best regards,
Johannes