Git Product home page Git Product logo

samerickwaks / qr-code-using-python Goto Github PK

View Code? Open in Web Editor NEW

This project forked from problemsolvewithridoy/qr-code-using-python

0.0 0.0 0.0 11 KB

This is a Python script that allows you to generate QR codes easily. QR codes are two-dimensional barcodes that can store information such as URLs, text, or contact information. This script uses the qrcode library to generate QR codes

License: MIT License

Python 100.00%

qr-code-using-python's Introduction

QR Code Generator

This is a Python script that allows you to generate QR codes easily. QR codes are two-dimensional barcodes that can store information such as URLs, text, or contact information. This script uses the qrcode library to generate QR codes let's start...............

To make this project you need to follow this step:-

Installation

Install package with pip

pip install qrcode

Deployment

To deploy this project run

#please subscribe "Problem Solve With Ridoy" youtube channel

# For create multipole QR code 

import qrcode
with open("site.csv") as file: #site.csv file have given to this repository.
    for i in file:
        data = i.strip("\n")
        new_data = data.split(",")
        img = qrcode.make(f"{new_data[1]}")
        img.save(f"{new_data[0]}.jpg")
print("all QR code create completed")
# For create one QR code

import qrcode
img = qrcode.make("give your information")
img.save("file_name.jpg")
print("QR code create completed")

You can follow me

Facebook:- https://www.facebook.com/problemsolvewithridoy/

Linkedin:- https://www.linkedin.com/in/ridoyhossain/

YouTube:- https://www.youtube.com/@problemsolvewithridoy

Gmail:- [email protected]

If you have any confusion, please feel free to contact me. Thank you

License

This script is released under the MIT License. Feel free to use, modify, and distribute it as you wish. If you find any bugs or have any suggestions for improvement, please submit an issue or a pull request on this repository.

qr-code-using-python's People

Contributors

problemsolvewithridoy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.