From c66085d0da27c8d23d5939b6101b962a5ea23c81 Mon Sep 17 00:00:00 2001 From: lasantha96 Date: Sat, 1 Oct 2022 17:32:48 +0400 Subject: [PATCH] youtube video download python file --- Python/youtube-video-download-easy.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Python/youtube-video-download-easy.py diff --git a/Python/youtube-video-download-easy.py b/Python/youtube-video-download-easy.py new file mode 100644 index 0000000..8e41dec --- /dev/null +++ b/Python/youtube-video-download-easy.py @@ -0,0 +1,4 @@ +import webbrowser +url = input("enter video url : ") +url = url[:12]+"ss"+url[12:] +webbrowser.open(url) \ No newline at end of file