We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried the library in both linux vm and windows 11 with the same results
import qrcode img = qrcode.make("https://www.youtube.com/") img.save("youtubeQR.jpg")
The text was updated successfully, but these errors were encountered:
I had to install pip install qrcode[pil], and it worked. Looks like it should work without it, so the issue is valid.
pip install qrcode[pil]
Sorry, something went wrong.
2ddbc55
This should work now without pil (although it'll be a png file even if you called it "something.jpg") in the version I just released.
"something.jpg"
Previously the pure png factory needed :
with open("youtubeQR.jpg", "wb") as f: img.save(f)
No branches or pull requests
I tried the library in both linux vm and windows 11 with the same results
import qrcode
img = qrcode.make("https://www.youtube.com/")
img.save("youtubeQR.jpg")
The text was updated successfully, but these errors were encountered: