From e4867d7ac219e4ab66e7854b165ebb9126e2db64 Mon Sep 17 00:00:00 2001 From: tharani927 Date: Wed, 12 Aug 2026 14:27:36 +0530 Subject: [PATCH] Added project info featue --- ytDownloader.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ytDownloader.py b/ytDownloader.py index 03463fa..68a8225 100644 --- a/ytDownloader.py +++ b/ytDownloader.py @@ -1,5 +1,9 @@ from pytube import YouTube +def show_project_info(): + print("YouTube Downloader Project") + print("Feature update added through GitHub fork workflow.") + try: # Ask the user to input the YouTube URL url = input("Enter the YouTube URL: ") @@ -18,3 +22,5 @@ print("Download complete.") except Exception as e: print("An error occurred:", str(e)) + +