txaws
txaws copied to clipboard
S3 client cannot retrieve objects for keys starting with /
>>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="baz").get_encoded_url()
'http://foo/bar/baz'
>>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="/baz").get_encoded_url()
'http://foo/bar/baz'
>>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="//baz").get_encoded_url()
'http://foo/bar//baz'
>>>