diff --git a/qr.png b/qr.png new file mode 100644 index 0000000..2d88e3c Binary files /dev/null and b/qr.png differ diff --git a/qr.py b/qr.py new file mode 100644 index 0000000..b16b22b --- /dev/null +++ b/qr.py @@ -0,0 +1,7 @@ +import os +import qrcode + +img = qrcode.make("https://youtu.be/xvFZjo5PgG0") +img.save("qr.png", "PNG") + +os.system("xdg-open qr.png") diff --git a/speech.py b/speech.py index b327277..350befa 100644 --- a/speech.py +++ b/speech.py @@ -1,6 +1,5 @@ import pyttsx3 engine = pyttsx3.init() -name = input("Name: ") -engine.say(f"hello {name}!") +engine.say("This was CS50!") engine.runAndWait() \ No newline at end of file