update
This commit is contained in:
@ -39,12 +39,10 @@ i = 0
|
||||
length = len(PlexMovieList)
|
||||
|
||||
while i < length:
|
||||
|
||||
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:
|
||||
MatchingList.append(PlexMovieList[i])
|
||||
|
||||
i += 1
|
||||
|
||||
for movie in MatchingList:
|
||||
@ -61,4 +59,5 @@ for movie in MatchingList:
|
||||
for id in TMDbCollection:
|
||||
MovieCollectionFinal.append(tmdbCollection.details(id))
|
||||
|
||||
print("")
|
||||
print(MovieCollectionFinal)
|
||||
print(AvailablePlexCollectionsMovies)
|
Reference in New Issue
Block a user