Skip to content

Commit 0c719ea

Browse files
authored
QrCodeGenerator
1 parent 7ffae83 commit 0c719ea

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

QrCodeGen/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
example:
15+
```python
16+
image = qrcode.make(input("Write Your message: "))
17+
```
18+
19+
The qrcode generated will look like below:
20+
21+
![image](https://github.com/larymak/Python-project-Scripts/blob/main/QrCodeGen/clock.jpg)

0 commit comments

Comments
 (0)