発行してみます。 import pyqrcode url = "https://sample.com" # QRコードにしたいURL png_file_path = "image/qrcode.png" # PNGとして保存したい任意のファイル名(Pathオブジェクトでも可) code = pyqrcode.create(url) code.png(self.png_file_path, ...
こんばんは。今日はpythonで簡易的なGUIアプリケーションを作成してみましたので、共有していきます。構成はぐちゃぐちゃで正直中身は見れたものではありませんが、何とかそれっぽい動きをするものにできました。 作成したスクリプト全体像 import tkinter ...
The pyqrcode module is a QR code generator that is simple to use and written in pure python. The module can automates most of the building process for creating QR codes. Most codes can be created ...