From 898e272235552638d30f9c90817516016498a03b Mon Sep 17 00:00:00 2001 From: hea7hen <88628074+hea7hen@users.noreply.github.com> Date: Sat, 8 Jul 2023 18:33:30 +0530 Subject: [PATCH 1/2] Create README.md --- QR Code/README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 QR Code/README.md diff --git a/QR Code/README.md b/QR Code/README.md new file mode 100644 index 00000000..25a871c5 --- /dev/null +++ b/QR Code/README.md @@ -0,0 +1,41 @@ +# QR CODE GENERATOR + + +This is a Python program that generates QR codes using the pyqrcode library. It provides a simple graphical user interface (GUI) for entering the content and generating QR codes. + +## Installation + +To run this program, you need to have Python installed on your system. You also need to install the '**pyqrcode**' library. You can install it using '**pip**' by running the following command: + + $ pip install pyqrcode + +# Usage + +To start the program, execute the following command: + + $ python qr_code_generator.py + +The program will launch a GUI window with a text field and two buttons. Here's a brief explanation of the interface elements: + +* **Enter the content :** This is a text field where you can enter the content for the QR code. +* **Generate** : Clicking this button will generate the QR code for the entered content and display it in the window. +* **Save** : Clicking this button will save the generated QR code as a PNG image file. The file name will be based on the current timestamp to ensure uniqueness. + +# Dependencies + +The program relies on the following dependencies: + +* Python 3.x +* pyqrcode +* tkinter + +Make sure you have these dependencies installed before running the program. + +# About the Author +This program was created by DJ Harshit. Feel free to reach out to the author for any questions or suggestions. + +# License +This program is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information. + +# Acknowledgments +The author would like to acknowledge the developers of the pyqrcode library for providing an easy-to-use interface for generating QR codes. From 7db968117e02590a61ee20382551dc0a44d76d1b Mon Sep 17 00:00:00 2001 From: hea7hen <88628074+hea7hen@users.noreply.github.com> Date: Sat, 8 Jul 2023 18:35:12 +0530 Subject: [PATCH 2/2] Create LICENSE --- QR Code/LICENSE | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 QR Code/LICENSE diff --git a/QR Code/LICENSE b/QR Code/LICENSE new file mode 100644 index 00000000..3bfa7198 --- /dev/null +++ b/QR Code/LICENSE @@ -0,0 +1,11 @@ +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.