I want to get the text from img alt tag using Python package beautifulsoup. I am using find_all() method to find all img tag on a web page, but not sure how to get the text from the alt tag.
E.g.
From the following HTML code, I want output="hello".
<img src="imgfile.png" alt="hello">