【Python实战】用Python制作动态微信二维码qrcode

Python完整代码

# https://github.com/sylnsfar/qrcode#common-qr-code
from MyQR import myqr
import os

version, level, qr_name = myqr.run(
    # Just input a URL or a sentence, then get your QR-Code named 'qrcode.png' in the current directory.
    words="https://blog.csdn.net/qq_43827595",
    version=10,  # length:1-40
    level='H',
    picture="jienigui.gif",  # background jpg png bpm gif(less than 2MB)
    colorized=True,
    contrast=1.0,
    brightness=1.0,
    save_name=None,  # output name
    save_dir=os.getcwd()
)

# Output “line 16: mode: byte" means successful

生成动态微信二维码

如果想设置动态微信二维码,因为没有直接的链接,所以我们需要借助草料二维码这个平台把微信的二维码解析成链接即可

【Python实战】用Python制作动态微信二维码qrcode_第1张图片
类似地可以设置QQ动态二维码,微博动态二维码


注意:在VScode运行时,要把terminal目录切换到当前py程序所在目录,这样生成的二维码也会保存在这个目录
【Python实战】用Python制作动态微信二维码qrcode_第2张图片


如果只是想生成最普通的二维码只需要3 行代码

import qrcode

image = qrcode.make("https://blog.csdn.net/qq_43827595")
image.save("qr.png")

你可能感兴趣的:(Python)