Unable To Get Correct Link In Beautifulsoup
I'm trying to parse a bit of HTML and I'd like to extract the link that matches a particular pattern. I'm using the find method with a regular expression but it doesn't get me the
Solution 1:
find only returns the first <a> tag. You want findAll.
Post a Comment for "Unable To Get Correct Link In Beautifulsoup"