Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 614 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 614 Bytes

QR Code Generator

This project demonstrates how to generate QR codes using Python. By utilizing the qrcode library along with PIL (Python Imaging Library), it creates a QR code containing the text "hello guys" and saves it as an image file.

Features

  • Generate QR codes with customizable settings (e.g., error correction, box size, border).
  • Customize QR code color.
  • Save the generated QR code as an image file.

Requirements

  • Python 3.x
  • qrcode library
  • Pillow library (for image handling)

Installation

  1. Install the required libraries:
    pip install qrcode[pil] Pillow