I am trying to use python and beautiful soup to extract the content part of the tags below:
&l
You could grab the content inside the meta tag with gazpacho:
from gazpacho import Soup html = """\ """ soup = Soup(html) soup.find("meta", {"property": "og:title"}).attrs['content']
Which would output:
'Super Fun Event 1'