I am trying to read a txt file from public AWS s3 bucket with open()
f= open(url, "r", encoding="utf8")
I made sure the file is publicly accessible However, I still get the error
FileNotFoundError: [Errno 2] No such file or directory
any suggestions on how to fix it?