This commit is contained in:
Gregory Salaun 2021-12-08 12:01:23 +01:00
parent 01268dc670
commit de3c777912

View File

@ -38,7 +38,7 @@ i = 0
length = len(PlexMovieList) length = len(PlexMovieList)
while i < length:z while i < length:
for movie in PlexMovieList: for movie in PlexMovieList:
if 85 < 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:
@ -59,5 +59,5 @@ for movie in MatchingList:
for id in TMDbCollection: for id in TMDbCollection:
MovieCollectionFinal.append(tmdbCollection.details(id)) MovieCollectionFinal.append(tmdbCollection.details(id))
for movie in MovieCollectionFinal: for movie in MovieCollection:
print(movie) print(movie)