I am trying to scrape the people who have birthdays from this Wikipedia page
Here is the existing code:
hdr = {\'User-Agent\': \'Mozilla/5.0\'} site
Find the Births section:
section = soup.find('span', id='Births').parent
And then find the next unordered list:
births = section.find_next('ul').find_all('li')