aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/watch_later.py
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2018-07-08 01:06:54 -0700
committerJames Taylor <user234683@users.noreply.github.com>2018-07-08 01:06:54 -0700
commit6ad09eb53a8b79b2241f56009d9757f8cac7181f (patch)
treebbdad0456c1dc202fe8c93e9f1a521c8db06fec3 /youtube/watch_later.py
parentf36c1d26a40a31cbf1de9cbdb8451f84c4eb01c6 (diff)
downloadyt-local-6ad09eb53a8b79b2241f56009d9757f8cac7181f.tar.lz
yt-local-6ad09eb53a8b79b2241f56009d9757f8cac7181f.tar.xz
yt-local-6ad09eb53a8b79b2241f56009d9757f8cac7181f.zip
server-side support for adding to local playlists
Diffstat (limited to 'youtube/watch_later.py')
-rw-r--r--youtube/watch_later.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/youtube/watch_later.py b/youtube/watch_later.py
deleted file mode 100644
index 4bb421c..0000000
--- a/youtube/watch_later.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import os.path
-import json
-watch_later_file = os.path.normpath("youtube/watch_later.txt")
-def add_to_watch_later(video_info_list):
- with open(watch_later_file, "a", encoding='utf-8') as file:
- for info in video_info_list:
- file.write(info + "\n")
-
-
-def get_watch_later_page():
- pass \ No newline at end of file