This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This will be using Python3 to generate the QR codes, which will be saved in the same directory as the script. We will then use FFMPEG to turn the .png files into a GIF | |
1. Create a new folder and virtualenv as you usually would with Python. | |
python3 -m venv virtualenv | |
source virtualenv/bin/activate | |
2. Install dependencies. We will be using qrcode for generating qrcodes and pillow for creating the images |