Hello,
In the files I need to work with, I notice that the values in the following meta line can be either lower-case or capitalized.
What would be the right way to convert them to lower-case regardless so that search doesn't miss the others?
Thank you.
In the files I need to work with, I notice that the values in the following meta line can be either lower-case or capitalized.
What would be the right way to convert them to lower-case regardless so that search doesn't miss the others?
1 2 3 4 5 6 |
#could be "Content-Type" or "content-type" meta = soup.head.find( "meta" , { "http-equiv" : "content-type" }) if meta is None : print ( "here1" ) else : print ( "here2" ) |