首页 > 编程 > Python > 正文

Python用5行代码写一个自定义简单二维码

2020-01-04 14:16:59
字体:
来源:转载
供稿:网友

python的优越之处就在于他可以直接调用已经封装好的包

首先,下载pillowqrcode包  终端下键入一下命令:

pip3 install pillow  #python2 用pip install pillowpip3 install qrcode

实现代码:

import qrcode# 定义一个类名def qrcodeWithUrl(url):  img = qrcode.make(url)   # 生成一个二维码  savePath = "baidu.png"   # 存储二维码 命名  img.save(savePath)     # 保存二维码def qrcodeWithText(text):  img = qrcode.make(text)  savePath = "2.png"  img.save(savePath)content = input("请输入一句话或者键入一个网址")if "http" in content:      # 如果是网址 则运行 qrcodeWithUrl(url):  qrcodeWithUrl(content)else:              # 如果是文本 则运行 qrcodeWithText(text):  qrcodeWithText(content)print("二维码已经生成好")

运行代码:

/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6 /Users/apple/test1/fork/demo3.py请输入一句话http://www.redporn.com二维码已经生成好Process finished with exit code 0

生成的二维码

Python,代码,二维码

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对VEVB武林网的支持。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表