Comment on Use Node.js to Extract Data from the WebComments−level0913yhere is how I like to do it : from pyquery import PyQuery as pq doc = pq('http://google.com') print doc('#hplogo')
Comments
here is how I like to do it :