from requests import get
from bs4 import BeautifulSoup
url = 'https://www.ceda.com.au/Events/Upcoming-events'
response = get(url)
events_container = html_soup.find_all('div', class_ = 'list-bx')
event1name = events_container[0]
print(event1name.a.text)
Eventdate = html_soup.find('div', class_ = ' col-md-4 col-sm-4 side-box well
side-boxTop')
x = Eventdate.div.text
print(x)
I'm trying to print the second span class on the class " col-md-4 col-sm-4 side-box well side-boxTop" But I coud'nt able to print the second span class (Second P tag (Event Date) from the class as there is no unique span name for the each span class