python之qrcode模块生成二维码

2022/6/27 14:20:24

本文主要是介绍python之qrcode模块生成二维码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、准备安装包

  • pip install qrcode

      qrcode 依赖 Image 这个包:

  • pip install Image

 

二、调试代码

import qrcode //模块导入
 //调用qrcode的make()方法传入url或者想要展示的内容
img = qrcode.make('http://www.baidu.com')
 //写入文件
with open('test.png', 'wb') as f:
    img.save(f)

生成的二维码:

 

 

将二维码转为byte 类型

# -*- coding: utf8 -*-

"""
二维码生成器
"""
from io import BytesIO

import qrcode
# 生成二维码
img = qrcode.make(data="你好")
print img
print type(img)
stream = BytesIO()
img.save(stream, 'jpeg')

print stream.getvalue()

 

 

 






这篇关于python之qrcode模块生成二维码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程