1. 时间进度条 class Tiao(object): def __init__(self): self.obj1 = datetime.timedelta(seco ...
1. 时间进度条 class Tiao(object): def __init__(self): self.obj1 = datetime.timedelta(seco ...
1. UserAgent 模块使用 from fake_useragent import UserAgent ua = UserAgent() # 实例化,实例化时需要联网但是网站不太 ...
...
import xlwings as xw from PIL import ImageGrab def excel_save_img(path, sheet=0, img_name="1", ...
1. TemporaryFile 临时文件 TemporaryFile 不在硬盘上的生成真正文件,而是写在内存中 from tempfile import TemporaryF ...
1. 使用 uuid.uuid1 产生一个随机数 2. 在使用 random.sample() 产生一个随机字符串 3. 将两者进行拼接 import uuid import random ...
1. 项目文件结构 2. 接下来看看 文件中的内容 2.1. __init__.py 文件的内容 2.2. notify 模块下的文件 2). wechat.py 3). ema ...
1. xlwt 安装 2. xlwt 操作, 代码 #!/usr/bin/env python3 import xlwt # 只能创建 新的 excel 文件 # 1. ...