看下生成验证码是怎样的,这里我们使用 Python 的 captcha 库来生成即可,这个库默认是没有安装的,所以这里我们需要先安装这个库,另外还需要安装 pillow 库
$ pip install captcha pillow
安装模块可以通过这样的方式来一次性安装多个
编写生成验证码的代码:
from captcha.image import ImageCaptcha
from PIL import Image
text = 'hello'
image = ImageCaptcha()
captcha = image.generate(text)
captcha_image = Image.open(captcha)
captcha_image.show()
这样就通过captcha 生成了一张验证码图片了。
更多请转到崔大博客:https://cuiqingcai.com/5709.html