Created
November 17, 2014 05:00
-
-
Save kyu999/e88f3bcaef6d333c47dc to your computer and use it in GitHub Desktop.
save content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
for each_content in whole_dom.cssselect("div.base"): | |
#h1が余分に含まれている場合そのdivは対象外の可能性高し。 | |
if(len(each_content.cssselect("h1")) > 1): | |
continue | |
for each in each_content.iter(): | |
self.get_title(each) | |
self.get_views(each) | |
''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment