Hi All,
I am using BS4 on python 2.7, and I try to do the following:
info=soup.find_all('a','mycooltitle')
however, although info contains "mycooltitle", it also seems to find extended tags such as:
<a class="mycooltitle funfor" href="
http://www.thehref"</a>
..how can I enforce BS4 not to extract these "extended" class tags? All I want is to extract the one which have:
<a class="mycooltitle" href="
http://www.thehref"</a>
..Thanks..
JW