Skip to content

Instantly share code, notes, and snippets.

View RickRedSix's full-sized avatar

Rick Smith RickRedSix

View GitHub Profile
@RickRedSix
RickRedSix / gist:3205e8618e3d16264b621def651ac7ed
Last active October 21, 2023 20:39
Multiple QR Code GIF Generation
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