python 生成二维码

Posted tuijin

tags:

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

pip install qrcode (pip/pip3

pip install Image

命令行:

qr ‘http://www.ziqiangxuetang.com‘ > test.png

代码:

import qrcode

img = qrcode.make(‘http://www.tuweizhong.com‘)

with open(‘test.png‘, ‘wb‘) as f:

    img.save(f)

 

pip install git+git://github.com/ojii/pymaging.git#egg=pymaging

pip install git+git://github.com/ojii/pymaging-png.git#egg=pymaging-png

命令行:

qr --factory=pymaging "Some text" > test.png

代码:

import qrcode

from qrcode.image.pure import PymagingImage

img = qrcode.make(‘Some data here‘, image_factory=PymagingImage)

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

用python生成二维码

怎样用python解析二维码?

用Python生成二维码

python 生成二维码

python qrcode二维码生成与识别

python之二维码生成