Skip to content

Commit 17f5ed0

Browse files
Create README.md
1 parent 934f3cd commit 17f5ed0

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# QR Code Generator Using Python
2+
3+
In this video we will be creating a QR Code Generator using Python
4+
5+
I am using [qrcode](https://pypi.org/project/qrcode/) module in this project
6+
7+
### Installation :
8+
9+
Install [qrcode](https://pypi.org/project/qrcode/) module
10+
11+
```shell
12+
pip install qrcode
13+
```
14+
15+
### Usage :
16+
17+
Here is a sample code to use [qrcode](https://pypi.org/project/qrcode/) module
18+
19+
```python
20+
import qrcode #Import The Module
21+
img = qrcode.make('Some data here')
22+
type(img)
23+
img.save("some_file.png") #Save the file
24+
```
25+
26+
### OutPut :
27+
28+
Output i got in this video
29+
30+
![img](https://user-images.githubusercontent.com/84449145/166903638-127e9eda-9be1-43be-b0c0-2ef93237c80d.png)
31+
32+
### QR Code Scanner Online
33+
34+
You can scan your QR Code online for free from here - [https://qrcodescan.in/](https://qrcodescan.in/)
35+
36+
## Subscribe
37+
Please subscribe [CodeWithNiranjan](https://youtube.com/channel/UCzfQyi4_E-lS9ps3fVb0jlA)
38+
39+
<h1>Thank You</h1>

0 commit comments

Comments
 (0)