python爬虫获取表情包 助你成为群里最靓的仔

环境准备

python3.9.7

pycharm

import request

import re

首先向目标网址模拟发送Get请求

import requests
import re

url = f"https://fabiaoqing.com/biaoqing/lists/page/{pages}.html"
headers = {
    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240."
                  "198 Safari/537.36"
}
response = requests.get(url=url, headers=headers)

利用re正则表达式挑选想要的 url 和 Title

images = re.findall('<img class="ui image lazy" data-original="(.*?)"', html_data)
title = re.findall('<a href=".*?" title="(.*?)">', html_data)

最后for循环一下利用re.sub替换掉异常字符然后保存数据

for img_url, title in zip(images, title):
    sk = img_url
    if len(title) < 50:
        new_title = re.sub(r'[ \\/:*"?|<>]', '', title)
        response_2 = requests.get(img_url).content
        suffix = img_url.split('.')[-1]
        with open(f'img\\{new_title}.{suffix}', mode='wb')as f:
            f.write(response_2)
        print(new_title, sk)

最后附上图片可以爬取下来,有兴趣的可以试一试,最后记得关注一下UP主,制作不易,蟹蟹支持

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

  ꧁爬虫攻城狮꧂

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值