I have files in XML format
saved in S3 bucket
and I want to parse them with xml.etree
inside a Sagemaker's Notebook
Instance. I tried the following but it produces FileNotFoundError
:
data_location = `s3://data-bucket/1.xml`
xml.etree.ElementTree.parse(data_location)