鱼C论坛

 找回密码
 立即注册
查看: 1328|回复: 1

[作品展示] python爬取gif动图【内涵福利】水平有限待完善

[复制链接]
发表于 2020-4-16 11:33:24 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import urllib.request
import re
import os,sys
import random
import time


def url_open(url):
    headers = {
        'Referer': 'http://bbbt.net/',
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36'
    }
    req = urllib.request.Request(url, headers=headers)
    response = urllib.request.urlopen(req)
    html = response.read().decode('utf-8')
    return html

def get_pages(each):
    html2 = url_open(each)
    t1 = re.search(r'<title>.{1,30}</title>',html2)
    title = t1.group()[7:-8]

    return title
    #print(title)

urllist = ['http://bbbt.net/tag/gif%E5%87%BA%E5%A4%84','http://bbbt.net/tag/%E7%A6%8F%E5%88%A9%E5%90%A7']
url = random.choice(urllist)
html = url_open(url)
urls = re.findall(r'http://bbbt.net/.{1,8}.html',html)
#print(set(urls))

for each in set(urls):
    title = get_pages(each)
    folder = str(title)

    os.chdir('D:/')
    os.mkdir(folder)
    os.chdir(folder)
    count = 1
    html1 = url_open(each)
    name = re.findall(r'<p>.{3,20}</p>', html1)
    print('相关信息:')
    for i in name:
        print(i[3:-4])
    #print(html1)
    img_addrs = re.findall(r'https://tva1.sinaimg.cn/.{1,7}/.{10,80}.gif',str(html1))
    #print(set(img_addrs))
    for each1 in set(img_addrs):

        headers = {
            'Referer': 'http://bbbt.net/',
            'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36'
        }
        req = urllib.request.Request(each1, headers=headers)
        response = urllib.request.urlopen(req)
        mm_img = response.read()

        filename = str(count) + '.gif'
        print('下载第' + str(count) + '张图片')
        with open(filename, 'wb') as f:
            f.write(mm_img)
            count += 1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-16 11:59:27 | 显示全部楼层
我要去补补身体了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 12:13

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表