There is such a html code https://pastebin.com/wvuRtqzi
I want to pull out the first small tag from the img tag, but my attempts fail
For starters, I tried to get the img tag myself. I got it
find("img") Then I started looking for small in the img tag.
find("img").find("small") But then they started popping up errors like this (errors because I tried other methods like ['small'] or trimming [: 1]
AttributeError: 'NoneType' object has no attribute 'find'