--- /dev/null
+from pytube import YouTube
+
+SAVE_PATH = "D:/Youtube/CodingClub/"
+
+with open('links_file.txt', 'r') as f:
+ links = f.read().split('\n')
+ if links[-1] == "":
+ links = links[:-1]
+
+
+def download(link):
+ yt = YouTube(link)
+ mp4_files = yt.streams.filter(file_extension="mp4")
+ mp4_files = mp4_files.get_highest_resolution()
+ mp4_files.download(output_path=SAVE_PATH)
+ print("Download is completed successfully")
+
+
+for i in links:
+ download(i)
+
+print('Videos Downloaded!')