I want to catch some tags with BeautifulSoup: Some <p>
tags, the <title>
tag, some <meta>
tags. But I want to catch them regardless of their case; I know that some sites do meta like this: <META>
and I want to be able to catch that.
I noticed that BeautifulSoup is case-sensitive by default. How do I catch these tags in a non-case-sensitive way?