Assume I am having a html string containing the following code snippet.
... <img class="employee thumb" src="http://localhost/services/employee1.jpg" /> ... 
I want to search whether this tag is available and if so get the src url. <img class="employee thumb" can be used to uniquely identify the tag. 
How to do this in python?
 
     
     
     .
 .