I'm using beautifulsoup to extract the start dates and end dates of events on a variety of different domains that all have different html tags where the start dates and end dates are located. So initially I've been doing this manually for each different domain but this will take forever.
So I'm wondering if I can search strings based off of datetime structure, something like:
find_string = soup.body.findAll('%B %d, %Y')
Obviously this doesn't work. but I'm wondering if there is any code I could use to locate February 14, 2018 for example.
Example: https://www.marketfairmall.com/event/Athleta-Semi-Annual-Sale/2145510733/
How can I extract 7/30/18 by searching for %m/%d/%y