Generate QR codes for your personal information quickly and easily with this simple Python script.
QR (Quick Response) codes are two-dimensional barcodes that can store a variety of data types, including text, URLs, contact information, and more. This project demonstrates how to use the qrcode library to create a QR code from your information and visualize it using matplotlib.
- Simple and easy-to-use QR code generation.
- Customize the QR code version, box size, and border.
- Supports various types of data, including text, URLs, and contact information.
To run this script, you will need:
- Python 3.x
qrcodelibrarymatplotliblibrary
You can install the required libraries using pip:
pip install qrcode==6.1 matplotlib==3.3.2- Clone this repository to your local machine:
git clone https://github.com/shukur-alom/QR-code-Generator.git- Edit the 'data' variable in the script to include your information:
data = "Your information goes here"- Run the script to generate the QR code image:
python generate_qr_code.py