I am using beautifulsoup to parse all img tags which is present in \'www.youtube.com\'
The code is
import urllib2 from BeautifulSoup import Beautiful
Explicitly using soup.findAll(name='img') worked for me, and I don't appear to be missing anything from the page.
soup.findAll(name='img')