我是靠谱客的博主 优美发夹,最近开发中收集的这篇文章主要介绍一个Python 爬虫程序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一个简单的实现煎蛋网妹子图片爬取的Python脚本

# -*- coding:utf-8 -*-
'''
version:Python 2.6
standard libs: urllib
author:Dead_morning
system: cetos 6.5
'''
import re
import urllib

def get_content(html_page):
'''html downladd'''
    html = urllib.urlopen(html_page)
    content = html.read()
    html.close()
    return content

def get_images(info):
'''html parser'''
    regex = r'href="//wx(.+?.(?:gif|jpg|jpeg|png))" ' # download original picture
    #使用正则表达式为了下载原图,这里可使用 soupbeautiful 模块替代正则表达式
    pat = re.compile(regex)
    image_code = map(lambda x: 'http://wx'+ x , re.findall(pat,info))
    return image_code

def Download_image():
''' image download'''
    for image_url in get_images(info):
        print image_url
        image_name = image_url.split('/')[-1]
        # 给文件命名 
        urllib.urlretrieve(image_url,image_name)

def html_pages():
''' URl list'''
#因为煎蛋网的网址比较有规律,所以就用了一个简单的List替代了从网页里解析
    b = []
    for a in range (1 ,95):
        url= 'http://jandan.net/ooxx/page-%s#comments' %a
        b.append(url)
    return b

if __name__ == '__main__':   
    for html_page in html_pages():
        info = get_content(html_page)
        print Download_image()

最后

以上就是优美发夹为你收集整理的一个Python 爬虫程序的全部内容,希望文章能够帮你解决一个Python 爬虫程序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部