|
| 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 | + |
| 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