URL = {URL here}
page = requests.get(URL, headers={header here})
soup = BeautifulSoup(page.content, 'html.parser')
container = soup.findAll("div", attrs={"class": "data1", "class": "data2"})"
Warning: Duplicate key 'class' in dictionary pylint(duplicate-key)
I wonder if it is possible to smash together "data1" and "data2" as one attribute?
Thanks in advance!