update
This commit is contained in:
parent
4b3c714261
commit
c140fb851d
@ -39,12 +39,10 @@ i = 0
|
|||||||
length = len(PlexMovieList)
|
length = len(PlexMovieList)
|
||||||
|
|
||||||
while i < length:
|
while i < length:
|
||||||
|
|
||||||
for movie in PlexMovieList:
|
for movie in PlexMovieList:
|
||||||
if fuzz.ratio(PlexMovieList[i], movie) > 85 and fuzz.ratio(PlexMovieList[i], movie) < 100:
|
if 85 < fuzz.ratio(PlexMovieList[i], movie) < 100:
|
||||||
if PlexMovieList[i] not in MatchingList:
|
if PlexMovieList[i] not in MatchingList:
|
||||||
MatchingList.append(PlexMovieList[i])
|
MatchingList.append(PlexMovieList[i])
|
||||||
|
|
||||||
i += 1
|
i += 1
|
||||||
|
|
||||||
for movie in MatchingList:
|
for movie in MatchingList:
|
||||||
@ -61,4 +59,5 @@ for movie in MatchingList:
|
|||||||
for id in TMDbCollection:
|
for id in TMDbCollection:
|
||||||
MovieCollectionFinal.append(tmdbCollection.details(id))
|
MovieCollectionFinal.append(tmdbCollection.details(id))
|
||||||
|
|
||||||
print("")
|
print(MovieCollectionFinal)
|
||||||
|
print(AvailablePlexCollectionsMovies)
|
@ -5,3 +5,4 @@ class Config(object):
|
|||||||
tmdbImgUrl = 'https://image.tmdb.org/t/p/w500'
|
tmdbImgUrl = 'https://image.tmdb.org/t/p/w500'
|
||||||
plexBaseUrl = 'https://plex.rouggy.ovh'
|
plexBaseUrl = 'https://plex.rouggy.ovh'
|
||||||
plexToken = 'VeQQwtf-sNtWWLwzCEih'
|
plexToken = 'VeQQwtf-sNtWWLwzCEih'
|
||||||
|
PlexAutoCollectionConfigFilePath = '/opt/Plex-Auto-Collections/config/config.yml'
|
||||||
|
@ -2,3 +2,6 @@ class MovieCollection:
|
|||||||
def __init__(self, id, title):
|
def __init__(self, id, title):
|
||||||
self.collectionTitle = title
|
self.collectionTitle = title
|
||||||
self.collectionId = id
|
self.collectionId = id
|
||||||
|
|
||||||
|
def get_existing_collections(self):
|
||||||
|
pass
|
Loading…
x
Reference in New Issue
Block a user