all repos — auto-movie-tagger @ 6858eadb3d36d732f573d1fd15413c2efc149441

A Python script that auto tags and adds poster to mkv or mp4 movie files.

Fixed two instances of response to srch_respnonse
prithugoswami prithugoswami524@gmail.com
Wed, 03 Jan 2018 21:36:59 +0530
commit

6858eadb3d36d732f573d1fd15413c2efc149441

parent

8c5d9ca1276def9af07115e034d4296340f82bed

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M amt.pyamt.py

@@ -122,9 +122,9 @@ title = input("\nCould not find the movie, Enter"

" alternate movie title >> ") searchindex = int(input('Search result index >> ')) - response = search.movie(query=title) + srch_response = search.movie(query=title) try: - tmdb_movie = (tmdb.Movies(response['results'] + tmdb_movie = (tmdb.Movies(srch_response['results'] [searchindex]['id'])) except IndexError: continue