flask的Blueprint,前后台蓝图注册

flask的Blueprint,前后台蓝图注册

文件结构创建一个shizhan文件夹,根据flask的文件结构,在shizhan里面创建app文件夹,其他如下的结构├── app│   ├── __init__.py│   ├── admin│   │   ├── __init__.py│   │   └── views.py│   ├── home│   │   ├── __init_...
python实现生成验证码的逻辑

python实现生成验证码的逻辑

 假设我们有一个fonts的文件夹,里面有1.ttf,2.ttf,3.ttf三个字体文件具体代码实现代码codes.py:# coding:utf8from PIL import ImageDraw, ImageColor, ImageFile, ImageFont, ImageFilter, Imageimport randomimport os...
python获取bing中国站每日的背景图

python获取bing中国站每日的背景图

每天获取的结果我都放在这个网站上面了[aru_41]https://bing.iicats.com接口https://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1脚本# -*- coding: utf-8 -*-import requestsimport jsonimport urllibim...