You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with open_fs('s3://' + self.bucket + '/') as s3fs:
print(s3fs.exists(path)) ## true
print(s3fs.isfile(path)) ## false
return s3fs.readbytes(path) ## ResourceNotFound
where the path is the full path (minus the bucket) to the file, i.e. a/b/c.txt
I've made sure that my credentials in ~/.aws/credentials are correct, but I'm not sure if there's something else I'm doing wrong, or if readbytes is supported.