-2

So I am trying to make a youtube mp4 converter program but when I turn it into exe it doesn't work

from pytube import YouTube
import time

link = input("Enter Youtube Link: ")
yt = YouTube(link)

ys = yt.streams.get_highest_resolution()
ys.download()
print("Download Completed")
time.sleep(2)
  • 2
    * when I turn it into exe* how do you do that? – Daweo May 30 '22 at 12:33
  • How do you convert python to executable file ? – Gedas Miksenas May 30 '22 at 12:34
  • Does this answer your question? [Create a single executable from a Python project](https://stackoverflow.com/questions/12059509/create-a-single-executable-from-a-python-project) – Wouter May 30 '22 at 12:35
  • Does this answer your question? [How can I convert a .py to .exe for Python?](https://stackoverflow.com/questions/41570359/how-can-i-convert-a-py-to-exe-for-python) – Darth May 30 '22 at 12:44

0 Answers0