python之小爬虫

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之小爬虫相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python
#抓取网页上的图片保存
import urllib
import urllib.request                                 //python3版本将urllib2分成urllib.request和urllib.error
import re

def gethtml(url):
    page = urllib.request.urlopen(url)
    html = page.read()
    return html

def getImages(html):
    reg = r‘src="(.*?\.jpg)"‘
    imgre = re.compile(reg)
    imglist = re.findall(imgre,html.decode(‘utf-8‘))
    x = 0
    for i in imglist:
        urllib.request.urlretrieve(i,r‘E:\python_practice\%s.jpg‘%(x))
        x = x + 1

html=gethtml("http://www.u148.net/article/35256.html")
getImages(html)

 该小程序是根据某个视频教学中写的,记录下,能跑成功一个小爬虫的程序,很是鸡冻。

以上是关于python之小爬虫的主要内容,如果未能解决你的问题,请参考以下文章

Python之Scrapy安装

引点科技私房菜专栏之第一个Python小爬虫

python爬虫之模拟登录将cookie保存到代码中

Python爬虫从入门到进阶之Python概述

Python爬虫常用之登录 思想

Python2爬虫代码之获取金融品种行情数据