Django-Qr-Generator is a Django project that allows you to generate QR code images and download them.
Follow these steps to run the project on your local machine.
git clone https://github.com/Ansarimajid/Django-QR.git
cd Django-QR
pip install virtualenv
virtualenv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Open your browser and go to http://127.0.0.1:8000/
. To access the admin page, navigate to http://127.0.0.1:8000/admin
and log in with the superuser credentials you created.
-
After accessing the admin page, you can use the provided forms to create QR codes by entering the required information.
-
Click on the "Generate QR Code" button.
-
You can download the generated QR code image.
If you want to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and submit a pull request.
This project is licensed under the MIT License.
- Thank you to the Django community and contributors.
- QR code generation is powered by qrcode library.