• 大小: 2.17KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2023-06-29
  • 语言: 其他
  • 标签: 其他  

资源简介


最近在维护自己开设的公众号,偶尔需要需要生成二维码。网上二维码生成都是网页版本。python生成二维码之前也实现过,所以有空闲自己使用pyqt5写个windows工具。

资源截图

代码片段和文件信息

# -*- coding: utf-8 -*-
“““
__title__ = ‘‘
__author__ = ‘zfj‘
__mtime__ = ‘2018/6/4‘
# code is far away from bugs with the god animal protecting
    I love animals. They taste delicious.
              ┏┓      ┏┓
            ┏┛┻━━━┛┻┓
            ┃      ☃      ┃
            ┃  ┳┛  ┗┳  ┃
            ┃      ┻      ┃
            ┗━┓      ┏━┛
                ┃      ┗━━━┓
                ┃  神兽保佑    ┣┓
                ┃ 永无BUG!   ┏┛
                ┗┓┓┏━┳┓┏┛
                  ┃┫┫  ┃┫┫
                  ┗┻┛  ┗┻┛
“““
import os
import sys
import qrcode
from PyQt5.QtWidgets import (QWidget QMessageBox
                             QPushButton QApplication QHBoxLayout QVBoxLayout QLineEdit)
from PyQt5.QtGui import QIcon

def createQR(data filename=‘‘):
    fn = ‘‘
    if filename == ‘‘:
        fn = os.path.join(os.getcwd() ‘qrcode_tmp.png‘)
    else:
        fn = os.path.join(os.getcwd() filename)
    img = qrcode.make(data)
    # img.get_image().sh

评论

共有 条评论