@@ -9,24 +9,28 @@ QR code, or quick response code, is a trademark for a type of 2 dimensional barc
*QR Tools:* A suite of tools for handling QR codes.
-->qrtools contains a class QR, for which we must initially create an object. The object takes the following arguments
1.data
2.pixel_size
3.level
4.margin_size
5.data_type
1. data
2. pixel_size
3. level
4. margin_size
5. data_type
**Required Installation modules:**
-->Python:
sudo apt-get update
sudo apt-get install python
-->QR tools:
sudo apt-get update
sudo apt-get install python-qrtools
-->Dependency Installations:
[sudo] pip install pypng
[sudo] pip install zbar
[sudo] pip install pillow
-->Python:
* sudo apt-get update
* sudo apt-get install python
-->QR tools:
* sudo apt-get update
* sudo apt-get install python-qrtools
-->Dependency Installations:
* [sudo] pip install pypng
* [sudo] pip install zbar
* [sudo] pip install pillow
**Code for generating QR code:** klem/QR.py
...
...
@@ -50,7 +54,9 @@ For generating bulk amount of QR codes google spread sheets are used. Proceed wi
Resize the rows and columns to make the QR codes larger or smaller.
**Webpage creation:**
Framework: Flask
languages: Html,CSS,Js,Python
1. Framework: Flask
2. languages: Html,CSS,Js,Python
Flask is considered more Pythonic than the Django web framework because in common situations the equivalent Flask web application is more explicit. Flask is also easy to get started with as a beginner because there is little boilerplate code for getting a simple app up and running.