Python 下载网页 Jpg 图片以及 Gif 图片实现

该Python脚本演示了如何从网页中下载Jpg和Gif图片。用户输入URL、文件类型和存储目录,脚本将自动抓取并保存指定类型的图片,避免重复下载。
摘要由CSDN通过智能技术生成
#!/usr/bin/python3

import os
import re
import urllib.request
import time
import random

ISOTIMEFORMAT="%Y%m%d%H%M%S"

def getHtml(address):
    """ Get the html source """
    response = urllib.request.urlopen(address)
    page = response.read()
    pageStr = str(page)
    return pageStr

def getFile(page,filetype="jpg"):
    """" Store the File to device """
    reg = re.compile(r"http[s]?://[\S]*\." + filetype)
    imagesUrl = re.findall(reg,page)
    imagesUrl.sort()
    i = 1
    print("Start to download " + filetype + " file") 
    for index in range(len(imagesUrl)):
        filename = filetype.capitalize() + str(time.strftime(ISOTIMEFORMAT)) + "_" + str(random.randint(0,100000)) + "." + filetype
        if index != 0:
            if imagesUrl[index] != imagesUrl[i
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值