You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Contents/Scripts/watched-sync.py
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@
21
21
- It must be a list to work e.g. "'LibraryNames': ['Anime Shows', 'Anime Movies']"
22
22
- If you want to track watched states from managed/home accounts on your Plex server you can add them to Plex "ExtraUsers" following the same list format as above.
23
23
- Leave it as "None" otherwise.
24
+
- If you don't want to track watched states from your Plex Server's Admin account set "SyncAdmin" to "False".
25
+
- Leave it as "True" otherwise.
24
26
Usage:
25
27
- Run in a terminal (watched-sync.py) to sync watched states from Plex to Shoko.
26
28
- Append a relative date suffix as an argument to narrow down the time frame and speed up the process:
@@ -62,8 +64,8 @@ def arg_parse(arg):
62
64
print(f'{error_prefix}Failed: Plex Credentials Invalid or Server Offline')
63
65
exit(1)
64
66
65
-
# add the admin account to a list then append any other users to it
66
-
accounts= [admin]
67
+
# add the admin account to a list (if it is enabled) then append any other users to it
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -248,6 +248,8 @@ After installing the dependencies you must use a text editor to enter your Shoko
248
248
- It must be a list to work e.g. `'LibraryNames': ['Anime Shows', 'Anime Movies']`
249
249
- If you want to track watched states from managed/home accounts on your Plex server you can add them to Plex "ExtraUsers" following the same list format as above.
250
250
- Leave it as "None" otherwise.
251
+
- If you don't want to track watched states from your Plex Server's Admin account set "SyncAdmin" to "False".
252
+
- Leave it as "True" otherwise.
251
253
252
254
**Usage:**
253
255
- Run in a terminal `watched-sync.py` to sync watched states from Plex to Shoko.
0 commit comments