ఖచ్చితంగా, qrcode లైబ్రరీని ఉపయోగించి పైథాన్లో ప్రాథమిక QR కోడ్ జనరేటర్ ఇక్కడ ఉంది:
కొండచిలువimport qrcode
# Get the data to encode as a QR code from the user
data = input("Enter the data to encode as a QR code: ")
# Create a QR code instance and add the data to it
qr = qrcode.QRCode(version=1, box_size=10, border=4)
qr.add_data(data)
qr.make(fit=True)
# Create an image from the QR code instance
img = qr.make_image(fill_color="black", back_color="white")
# Save the image as a PNG file
img.save("qrcode.png")
ఈ కోడ్ QR కోడ్గా ఎన్కోడ్ చేయబడే డేటాను నమోదు చేయమని వినియోగదారుని ప్రేరేపిస్తుంది, లైబ్రరీని QRCode
ఉపయోగించి ఒక ఉదాహరణను qrcode
సృష్టిస్తుంది, ఉదాహరణకి డేటాను జోడిస్తుంది, ఉదాహరణ నుండి చిత్రాన్ని రూపొందిస్తుంది మరియు చిత్రాన్ని "qrcode పేరుతో PNG ఫైల్గా సేవ్ చేస్తుంది. png".
గమనిక: ఈ కోడ్ని అమలు చేయడానికి ముందు మీరు లైబ్రరీని ఇన్స్టాల్ చేశారని నిర్ధారించుకోండి qrcode
. మీరు పిప్ ఉపయోగించి దీన్ని ఇన్స్టాల్ చేయవచ్చు:
pip install qrcode