A Django web application that allows users to upload and decode QR code images.
- Upload QR code images through a web interface
- Decode QR codes using the pyzbar library
- Store QR code images and decoded content in a database
- Display decoded QR code content to users
- Clone the repository:
git clone https://github.com/snipher-marube/qr-code-decoder.git cd qr-code-decoder - Create and activate a virtual environment:
python3 -m venv venv
source venv/bin/activate - Install the required packages:
pip install -r requirements.txt- Run the Django server:
python manage.py runserver- Access the web application at http://127.0.0.1:8000/
- Upload a QR code image by clicking the "Choose File" button and selecting an image file.
- Click the "Upload" button to decode the QR code.
- View the decoded content below the upload form.
This project is licensed under the MIT License - see the LICENSE file for details.