1. 添加captcha完成后,如果直接使用会报错:
报错原因:captcha 框架, 需要依赖 Pillow 这个包
在虚拟环境–安装 Python 处理图片的库 Pillow:
# 注意: 需要安装:
pip install Pillow -i https://pypi.tuna.tsinghua.edu.cn/simple
# text 文本验证码
# image 验证码图片二进制流
text, image = captcha.generate_captcha()
获取图形验证码:
uuid
—— 使用该uuid
作为key在redis中存储生成的验证码。captcha
拓展包来生成验证码图片注意,
captcha
包的使用需要提前安装依赖模块Pillow
,如下安装:
pip install Pillow -i https://pypi.tuna.tsinghua.edu.cn/simple
编写一个demo,研究研究captcha
包的使用。