三条代码 搞定 python 生成验证码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三条代码 搞定 python 生成验证码相关的知识,希望对你有一定的参考价值。
C:\Users\DELL>python
Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import qrcode # 导入模块
>>> imgs = qrcode.make("http://sdsca.blog.51cto.com/") #输入要生成验证码的地址
>>> imgs.save("blog.png") #保存图片的位置
查看验证码
本文出自 “sdsca” 博客,请务必保留此出处http://sdsca.blog.51cto.com/10852974/1964473
以上是关于三条代码 搞定 python 生成验证码的主要内容,如果未能解决你的问题,请参考以下文章