QR Code Generator & Reader using Python | Python Project

Поділитися
Вставка
  • Опубліковано 1 гру 2024

КОМЕНТАРІ • 37

  • @udaydodiya5311
    @udaydodiya5311 2 роки тому

    you working great please don't stop it. thank you for this

  • @khushipadadune146
    @khushipadadune146 3 роки тому +5

    When I try to importing pyzbar.pyzbar it gives me dll error , can you please help me?

  • @omkesh
    @omkesh 3 роки тому +2

    Good information
    How to make pdf to doc converter websites?

  • @rayganmudberry375
    @rayganmudberry375 4 роки тому +2

    awesome. need chatbot with django/python . thank you

  • @escapefelicity2913
    @escapefelicity2913 3 роки тому +1

    It might be a REAL GOOD IDEA to post the code

  • @yousfineji6164
    @yousfineji6164 4 роки тому +1

    thnks , keep going

  • @py_tok5589
    @py_tok5589 3 роки тому

    nice one bro

  • @coldsavagegod7101
    @coldsavagegod7101 3 роки тому +1

    I am using python IDLE 3.9, and I don't understand where to do the first steps of "pip install" Please tell so that I can do rest of project.

    • @CodingWithEvan
      @CodingWithEvan  3 роки тому

      You can do it with cmd

    • @coldsavagegod7101
      @coldsavagegod7101 3 роки тому

      @@CodingWithEvan I don't understand

    • @ardapy
      @ardapy 2 роки тому

      Click on the address bar in the folder that you saved the script.
      After clicking on it, please type "cmd" and then you can try to type pip install.

  • @otuekongwilliam
    @otuekongwilliam 3 роки тому

    Can I further develop these to be used for payments. Like a Qr code scanner for payments

  • @mounirelkharbachi2420
    @mounirelkharbachi2420 3 роки тому +4

    Unable to find zbar shared library when i try to decode the image can someone help ?

  • @varadhajare7409
    @varadhajare7409 2 роки тому

    #Code to generate QR Code from text:
    import pyqrcode
    text = input("Put your text: ")
    qr = pyqrcode.create(text)
    qr.png("myCode.png",scale = 8)

  • @sivaprakash5877
    @sivaprakash5877 3 роки тому

    From where you learnt this all informations? Please reply me

  • @sayanthsanthosh7907
    @sayanthsanthosh7907 3 роки тому +1

    the program is not running it gives errors.

  • @balasubramanyamsvbalubali8877
    @balasubramanyamsvbalubali8877 4 роки тому +1

    Which editor do you use dude

    • @CodingWithEvan
      @CodingWithEvan  4 роки тому +1

      It's pycharm.

    • @sumabk6523
      @sumabk6523 4 роки тому

      @@CodingWithEvan thank you please make a detailed video of installing python for windows and pycharm sir

  • @drat716
    @drat716 3 роки тому +1

    Hellpp mine said ‘pip’ is not recognized as an internal or external command

  • @puvvallasaikrishnachowdary3916
    @puvvallasaikrishnachowdary3916 3 роки тому

    Where we can pip install Pyqrcode, pillow.. suggest me in chorme

  • @sanjaysawant5000
    @sanjaysawant5000 3 роки тому

    Where r u from

  • @lokeshvijay5609
    @lokeshvijay5609 3 роки тому +2

    You know you could've installed all of them in one line

    • @mrmanakanamusic4380
      @mrmanakanamusic4380 3 роки тому

      What it's mean

    • @lokeshvijay5609
      @lokeshvijay5609 3 роки тому

      @@mrmanakanamusic4380 I meant that he did pip install again and again but he could have install all of them with one, pip install module module
      Like that.

    • @mrmanakanamusic4380
      @mrmanakanamusic4380 3 роки тому

      @lokesh can install like this??

    • @lokeshvijay5609
      @lokeshvijay5609 3 роки тому

      @@mrmanakanamusic4380 yes you can

    • @lokeshvijay5609
      @lokeshvijay5609 3 роки тому +1

      @@mrmanakanamusic4380 To pip install more than one Python package, the packages can be listed in line with the same pip install command as long as they are separated with spaces. Here we are installing both scikit-learn and the statsmodel package in one line of code. You can also upgrade multiple packages in one line of code.
      *****Copied From Google ****

  • @gaga40
    @gaga40 Рік тому +1

    import pyqrcode
    from pyzbar.pyzbar import decode
    from PIL import Image
    qr = pyqrcode.create("Hello")
    qr.png("myCode.png", scale=8)
    d = decode(Image.open("myCode.png"))
    print(d[0].data.decode("ascii"))