Skip to content

Instantly share code, notes, and snippets.

@kyu999
Created November 17, 2014 05:00
Show Gist options
  • Save kyu999/e88f3bcaef6d333c47dc to your computer and use it in GitHub Desktop.
Save kyu999/e88f3bcaef6d333c47dc to your computer and use it in GitHub Desktop.
save content
'''
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