https://github.com/nathancordeiro/qr-code-app
Try out my QR Code generator and decoder app in python.
https://github.com/nathancordeiro/qr-code-app
Last synced: 6 months ago
JSON representation
Try out my QR Code generator and decoder app in python.
- Host: GitHub
- URL: https://github.com/nathancordeiro/qr-code-app
- Owner: NathanCordeiro
- Created: 2024-02-24T18:24:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-16T17:26:00.000Z (over 1 year ago)
- Last Synced: 2025-02-07T00:20:20.898Z (8 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QR Code App
## Description
This is a simple QR Code App that allows users to generate QR codes from input text and decode QR codes from image files. It provides a user-friendly graphical interface for easy interaction.
## Features
- Generate QR codes from text input
- Decode QR codes from image files
- User-friendly graphical interface## Installation
1. Clone the repository:
```bash
git clone https://github.com/NathanCordeiro/QR-Code-App.git
```2. Install the required dependencies:
```bash
pip install -r requirements.txt
```3. Run the application:
```bash
python QRcode_app.py
```## Usage
1. Generate QR Code:
- Click on the "Generate QR Code" button.
- Enter the text you want to encode into the QR code.
- Click "OK" to generate the QR code.2. Decode QR Code:
- Click on the "Decode QR Code" button.
- Select an image file containing the QR code.
- The decoded text will be displayed in a message box.## Requirements
- Python 3.6+
- opencv-python
- pillow
- qrcode
- pyzbar
- pyperclip