Python Projects

Hi, my Python projects will be here.

1) Spotify Downloader ----------------------------------------------------------------------- Using: Copy the code Go to Python Paste the code and save it name "spotifydownloader" Close Python Go to CMD Type "py spotifydownloader.py" Copy the Spotify Url and Paste Done!

import os
song = input("URL:   ")
os.system(f"spotdl {song}")
os.remove(".spotdl-cache")

2) YouTube Downloader-------------------------------------------------------------------------

Using

Go to Python Copy the code Paste the code (Python) Save it name "youtubedownloader.py" Go to CMD (Admin) Type "py youtubedownloader.py" Go to YouTube and copy link Paste the link and done!


from pytube import YouTube

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

ys = yt.stream.get_highest_resolution()
ys.download()
print("Download Completed!")