Skip to content

Instantly share code, notes, and snippets.

View DulalSandip's full-sized avatar

Dulal Sandip DulalSandip

View GitHub Profile
@DimChtz
DimChtz / ytdl.pyw
Last active January 29, 2020 00:00
Python script (GUI) to download YouTube videos (as video or audio).
# You need to install pafy, pillow and youtube-dl otherwise it won't work
# pip install pafy
# pip install pillow
# pip install youtube-dl
from importlib.util import find_spec as find_lib
from os.path import expandvars as os_vars
from urllib.request import urlopen
from PIL import Image, ImageTk
import tkinter.filedialog