Python 爬取 妹子图(技术是无罪的)

...

#!/usr/bin/env python
import urllib.request
from bs4 import BeautifulSoup
 
def crawl(url):
    headers = {'User-Agent':'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6'}
    req = urllib.request.Request(url, headers=headers)
    page = urllib.request.urlopen(req, timeout=20)
    contents = page.read()
    soup = BeautifulSoup(contents)
    my_girl = soup.find_all('img')
    for girl in my_girl:
        link = girl.get('src')
        print(link)
        content2 = urllib.request.urlopen(link).read()
        with open(u'E:\\niu'+'/'+link[-11:],'wb') as code:
            code.write(content2)
page_start = 0
page_stop = 10
for page in range(page_start, page_stop):
    page += 1
    url = 'http://www.dbmeinv.com/?pager_offset=%s' % page
    crawl(url)
 
print("注意身体!!!")

 

posted @ 2018-12-21 17:45  SilentKiller  阅读(255)  评论(0编辑  收藏  举报