Skip to content

NPodlozhniy/qrcode-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Qrcode In Terminal

The simple tool to generate QR codes

Getting started

$ git clone https://github.com/NPodlozhniy/qrcode-generator
$ cd qrcode-generator
$ pip install -r requirements.txt
$ python app.py

Image Size

If you need a specific QR size use the following code

from PIL import Image
p = Image.open('temp.png')
p.resize((1024, 1024)).save('QR.png')