10-3-25


today i made a qrcode(or tried to atleast) uhmm the codes done but just some errors i still need to fix here is some screenshots, code and the video i used

import qrcode 
from PIL import image
qr=qrcode.QRCode(version=1,
                   error_correction=qrcode.constants.ERROR_CORRECT_H,
                   box_size=10,border=10,)

qr.add_data("https://www.youtube.com/watch?v=vQZ_I16zO0I&t=770s")
qr.make(fit=True)
img=qr.make_image(fill_color="red", back_color="blue")
img.save("wscube_youtube.png")

so basically the code is supposed to make a qrcode for you to scan to your phone and send you to a youtube video(a video for a sonic game) but its not working properly and needs a lil(or a lot) of improvements here’s the link to the video i used and I stopped at 16:38


Leave a Reply

Your email address will not be published. Required fields are marked *