I am reading an XML file from a URL, but when I try to locate elements in it, it doesn't work and finds nothing.
url = "https://www.aeroprecisionusa.com/media/sitemap_en.xml"
response = requests.get(url)
root = ET.fromstring(response.content)
for elm in root.findall('.//loc'):
print(elm)
here is the XML I am working with: https://www.aeroprecisionusa.com/media/sitemap_en.xml how to parse this XML from this URL and locate all loc tags or elements?