利用Python制作百度图片下载器

作者:Python 时间:2021-02-25 09:17:55 

前段时间写了一个百度图片下载器,结果发现有很多人需要使用。说实话之前写的那一款百度图片下载器比较LOW,今天刚好有时间就做了一下升级。

更新了两个BUG,一个是图片下载达到几千张的时候就没有图片可以下载了。另一个是下载进度不能实时的展示出来不知道下载到什么程度了。

利用Python制作百度图片下载器

同样的,我们先把需要的第三方库导入进来。

'''UI界面相关的库'''

from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
from PyQt5.QtGui import *

'''应用操作相关的库'''
import sys
import os

from scripy_images import ScripyImages

UI 界面在原来的基础上面增加了文本浏览器可以实时的查看下载进度,还有增加了每一页下载的图片数量的控制让下载数据更加精确。

def init_ui(self):
       self.setWindowTitle('百度图片下载器2.0  公众号:[Python 集中营]')
       self.setWindowIcon(QIcon('下载.ico'))
       self.setFixedSize(550, 300)

grid = QGridLayout()

self.page_label = QLabel()
       self.page_label.setText('设置爬取页数:')
       self.page_line_text = QLineEdit()
       self.page_line_text.setPlaceholderText('输入整数')
       self.page_line_text.setValidator(QIntValidator(1, 99))
       self.page_line_text.setFocus()

self.page_num_label = QLabel()
       self.page_num_label.setText('每页爬取数量:')
       self.page_num_text = QSpinBox()
       self.page_num_text.setRange(50, 100)
       self.page_num_text.setSingleStep(10)
       self.page_num_text.setWrapping(True)

self.keyword_label = QLabel()
       self.keyword_label.setText('设置图关键字:')
       self.keyword_line_text = QLineEdit()
       self.keyword_line_text.setValidator(QRegExpValidator(QRegExp('[\u4E00-\u9FA5]+')))
       self.keyword_line_text.setMaxLength(6)
       self.keyword_line_text.setPlaceholderText('输入汉字')

self.file_path = QLineEdit()
       self.file_path.setPlaceholderText('自定义文件路径')
       self.file_path.setReadOnly(True)
       self.file_path_button = QPushButton()
       self.file_path_button.setText('自定义路径')
       self.file_path_button.clicked.connect(self.file_path_click)

self.request_button = QPushButton()
       self.request_button.setText('快速开始抓取图片')
       self.request_button.clicked.connect(self.download_image)

self.brower = QTextBrowser()
       self.brower.setPlaceholderText('抓取进度结果展示...')

grid.addWidget(self.page_label, 0, 0, 1, 1)
       grid.addWidget(self.page_line_text, 0, 1, 1, 2)
       grid.addWidget(self.page_num_label, 1, 0, 1, 1)
       grid.addWidget(self.page_num_text, 1, 1, 1, 2)
       grid.addWidget(self.keyword_label, 2, 0, 1, 1)
       grid.addWidget(self.keyword_line_text, 2, 1, 1, 2)
       grid.addWidget(self.file_path, 3, 0, 1, 2)
       grid.addWidget(self.file_path_button, 3, 2, 1, 1)
       grid.addWidget(self.brower, 4, 0, 1, 3)
       grid.addWidget(self.request_button, 5, 0, 1, 3)

self.thread_ = ScripyImages(self)
       self.thread_.trigger.connect(self.update_log)
       self.thread_.finished.connect(self.finished)

self.setLayout(grid)

增加控制向文本浏览器中实时写入数据的槽函数。

def update_log(self, text):
       '''
       槽函数:向文本浏览器中写入内容
       :param text:
       :return:
       '''
       cursor = self.brower.textCursor()
       cursor.movePosition(QTextCursor.End)
       self.brower.append(text)
       self.brower.setTextCursor(cursor)
       self.brower.ensureCursorVisible()

优化了图片的下载过程,使用专门的子线程来处理图片下载的部分。

def download_image(self):
       self.request_button.setEnabled(False)
       self.thread_.start()

来源:https://www.cnblogs.com/lwsbc/p/15844351.html

标签:Python,图片,下载
0
投稿

猜你喜欢

  • Python四大金刚之字典详解

    2022-02-22 23:11:20
  • graphql---go http请求使用详解

    2024-02-07 08:11:56
  • 基于标准的web项目开发模式探索

    2013-12-12 15:05:25
  • vue.js 实现点击展开收起动画效果

    2024-05-29 22:47:44
  • go swagger生成接口文档使用教程

    2023-10-20 12:31:35
  • mssql查找备注(text,ntext)类型字段为空的方法

    2024-01-28 04:13:18
  • MySQL连接时出现2003错误的实现

    2024-01-22 17:17:30
  • 跟老齐学Python之for循环语句

    2021-12-22 04:52:50
  • 基于bootstrop常用类总结(推荐)

    2024-04-17 09:52:42
  • pytorch_detach 切断网络反传方式

    2022-09-25 21:10:50
  • python将二维数组升为一维数组或二维降为一维方法实例

    2023-07-25 07:51:59
  • Python 爬虫批量爬取网页图片保存到本地的实现代码

    2021-06-23 02:12:34
  • Python autoescape标签用法解析

    2023-03-14 06:36:22
  • Python使用random和tertools模块解一些经典概率问题

    2023-03-08 13:11:37
  • 对python中xlsx,csv以及json文件的相互转化方法详解

    2021-01-28 23:24:34
  • 将后台数据从Berkeley的文件DB转到MySQL

    2009-01-04 13:31:00
  • Python 如何实现数据库表结构同步

    2024-01-21 16:38:44
  • 基于Python实现自动扫雷详解

    2023-09-07 23:31:20
  • golang实现http服务器处理静态文件示例

    2024-05-21 10:22:17
  • 用python爬取分析淘宝商品信息详解技术篇

    2022-09-12 23:40:54
  • asp之家 网络编程 m.aspxhome.com