diff --git a/.gitignore b/.gitignore index f8b73e7..7c10531 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +youtube.key + # ---> Python # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/yt-unlist-saver.py b/yt-unlist-saver.py new file mode 100644 index 0000000..ea3d1ae --- /dev/null +++ b/yt-unlist-saver.py @@ -0,0 +1,6 @@ +# Read YouTube API Key +def getYouTubeAPIKey(): + return open('youtube.key', 'r').read() + +print(getYouTubeAPIKey()) +exit(0)