BeautifulSoup not finding xml tag, how do i fix this? – Shopify
Tried using beautifulsoup to scrape a shopify site, using findAll('url') returns an empty list. How do I retrieve the desired content? import requests from bs4 import BeautifulSoup as soupify import lxml webSite = requests.get('https://launch.toytokyo.com/sitemap_pages_1.xml') pageSource = webSite.text webSite.close() pageSource =…