I have a docx file at my aws-s3 bucket. I need to read it use python-docx. I write this:
from docx import Document
document = Document('https://my-first-backup-bucket-v1.s3-ap-southeast-1.amazonaws.com/New+Proposed+Quote.docx')
then, have error.. PackageNotFoundError: Package not found at 'https://my-first-backup-bucket-v1.s3-ap-southeast-1.amazonaws.com/New+Proposed+Quote.docx'
why?
when I tried to access the same file from browser it is opening successfully. for testing purpose I created this file with public access anyone can test this, can anyone please help on this?