-
-
Save duyamin/7e5c08301aec375ec716 to your computer and use it in GitHub Desktop.
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
import requests | |
import lxml.html | |
page = requests.get('http://tieba.baidu.com/p/2166231880').text | |
doc = lxml.html.document_fromstring(page) | |
for idx, el in enumerate(doc.cssselect('img.BDE_Image')): | |
with open('%03d.jpg' % idx, 'wb') as f: | |
f.write(requests.get(el.attrib['src']).content) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
抓图