Just trying to grab the titles of events from a website and I have most of them, but It won't pick up one title. The missing result is:
AFL U16’s Championships
Can someone tell me what I need to change in my Regex to find this?
from re import *
from urllib.request import urlopen
Website = 'https://thegabba.com.au/what-s-on.aspx'
print('Now Gathering Results from URL: ' + Website)
html_source = urlopen(Website).read().decode("UTF-8")
EventMatches = findall('<h6 class="event-title">([A-Za-z0-9\'\\s]+)</h6>',html_source)
print('There are ' + str(len(EventMatches)) + ' Events.')
for EventNames in EventMatches:
print(EventNames)