We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffae83 commit 0c719eaCopy full SHA for 0c719ea
QrCodeGen/README.md
@@ -0,0 +1,21 @@
1
+Generating QRs using python.
2
+
3
+All you need is an IDE(pycharm)
4
+pip install qrcode
5
+and paste the code in [qr.py](https://github.com/larymak/Python-project-Scripts/blob/main/QrCodeGen/qr.py)
6
7
+This with this code you can be able to generate QR code for urls,
8
+example:
9
+```python
10
+code = qrcode.make("paste url here")
11
+```
12
13
+You can also input your own message and it will still be generated:
14
15
16
+image = qrcode.make(input("Write Your message: "))
17
18
19
+The qrcode generated will look like below:
20
21
+
0 commit comments