Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shukur-alom/qr-code-generator
This code is able to convert your data as QR code
https://github.com/shukur-alom/qr-code-generator
code python python3 pythonqrcode qr qrcode qrcode-generator
Last synced: 25 days ago
JSON representation
This code is able to convert your data as QR code
- Host: GitHub
- URL: https://github.com/shukur-alom/qr-code-generator
- Owner: shukur-alom
- License: mit
- Created: 2021-03-11T05:39:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-06T18:18:42.000Z (about 1 year ago)
- Last Synced: 2024-04-18T07:19:05.381Z (7 months ago)
- Topics: code, python, python3, pythonqrcode, qr, qrcode, qrcode-generator
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QR Code Generator
Generate QR codes for your personal information quickly and easily with this simple Python script.
## Introduction
QR (Quick Response) codes are two-dimensional barcodes that can store a variety of data types, including text, URLs, contact information, and more. This project demonstrates how to use the `qrcode` library to create a QR code from your information and visualize it using `matplotlib`.
## Features
- Simple and easy-to-use QR code generation.
- Customize the QR code version, box size, and border.
- Supports various types of data, including text, URLs, and contact information.## Requirements
To run this script, you will need:
- Python 3.x
- `qrcode` library
- `matplotlib` libraryYou can install the required libraries using `pip`:
```bash
pip install qrcode==6.1 matplotlib==3.3.2
```1. Clone this repository to your local machine:
```bash
git clone https://github.com/shukur-alom/QR-code-Generator.git
```2. Edit the 'data' variable in the script to include your information:
```bash
data = "Your information goes here"
```
4. Run the script to generate the QR code image:```bash
python generate_qr_code.py
```