Python 图片下载器

我有时候需要用相关的壁纸或者图片,想偷懒,有了这东西,哈哈哈,后面有点想做成一个工具箱。

下载链接:https://lanzous.com/icwt5gj

环境

Python 3.7.1

依赖包

import requests
from urllib.parse import urlencode
import os
from threading import Thread
from multiprocessing.pool import Pool
from tkinter.messagebox import *
import logging
from tkinter import *
from tkinter.filedialog import askdirectory
import re

主要技术

图片下载:百度用的ajax,壁纸用request正则,多线程

界面:tkinter,布局用的place

猜你喜欢

转载自www.cnblogs.com/Mayfly-nymph/p/12940631.html