python_使用qrcode生成二维码

Posted 笔记是工作中的财富

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_使用qrcode生成二维码相关的知识,希望对你有一定的参考价值。

1.功能

使用qrcode生成二维码

2.代码

#生成二维码:
import qrcode

#根据url生成二维码
def qrcodeWithUrl(url):
    img = qrcode.make(url)
    savePath = "1.png"
    img.save(savePath)

#根据输入的文字生成二维码
def qrcodeWithText(text):
    img = qrcode.make(text)
    savePath = "2.png"
    img.save(savePath)

#输入一句话
content = input("请输入一名话:")
if "http" in content:
    qrcodeWithUrl(content)
else:
    qrcodeWithText(content)

print("二维码已生成完毕,请查看!")

 

以上是关于python_使用qrcode生成二维码的主要内容,如果未能解决你的问题,请参考以下文章

python生成二维码

python qrcode二维码生成与识别

Python qrcode 生成一个二维码

Python3使用qrcode生成二维码教程

python 生成二维码,快速分享自己的博客地址

python-qrcode模块生成二维码