diff --git a/.gitignore b/.gitignore index 1030e9f..1677b85 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ cgi-bin/ resources/ node_modules/ public/ +logs/ diff --git a/scripts/add_item.py b/scripts/add_item.py new file mode 100644 index 0000000..26ccd17 --- /dev/null +++ b/scripts/add_item.py @@ -0,0 +1,137 @@ +# Script to add a new item to the log + +from datetime import datetime +import json +import logging +import re +import requests +from urllib.request import urlopen + +def import_film(imdb_id, log): + """Import a film via the TMDB API, given an IMDB ID""" + logging.info(f"Processing {imdb_id}…") + + api_url = f"https://api.themoviedb.org/3/find/{imdb_id}" + + # Sending API request + response = requests.get( + api_url, + params={ + 'external_source': 'imdb_id' + }, + headers={'Authorization': 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiI1NWQ2ZjY3YzJlOTQwMDI1NTFmN2VkNmEyZWVjM2E3NyIsInN1YiI6IjUxNWMyNzkxMTljMjk1MTQ0ZDAzZDM0NCIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.92eNKubJ_CORCIIlta30P9Qjg_Q9gPRFDTfG4gyz9kY'} + ) + + # Process the response + if (200 == response.status_code): + logging.info(response.status_code) + elif (429 == response.status_code): + time.sleep(2) + import_film(imdb_id) + else: + logging.error(response.text) + + response_data = json.loads(response.text) + if 1 == len(response_data['movie_results']): + film = response_data['movie_results'][0] + elif 0 == len(response_data['movie_results']): + logging.error(f"Returned no results for {imdb_id}") + return + elif 1 < len(response_data['movie_results']): + logging.warning(f"Returned more than one film for ID {imdb_id}") + print(f"Returned more than one film for ID {imdb_id}:") + print(json.dumps(response_data['movie_results'], indent=4)) + id = input("Enter the index of the result to use:") + try: + film = response_data['movie_results'][id] + except: + logging.error("Index invalid!") + print("Index invalid!") + + # Modify the returned result to add additional data + film = cleanup_film(film) + + if 'log' == log: + date_watched = '' + while re.search('[0-9]{4}-[0-9]{2}-[0-9]{2}', date_watched) is None: + date_watched = input("Enter date watched [YYYY-MM-DD, t for today]:") + if 't' == date_watched: date_watched = datetime.today().strftime('%Y-%m-%d') + film['date_watched'] = date_watched + + is_rewatch = '' + while is_rewatch not in ['y', 'n']: + is_rewatch = input("Is this a rewatch? [y/n]:") + if 'y' == is_rewatch: film['is_rewatch'] = True + + comments = input("Enter comments (optional):") + if '' != comments: film['comments'] = comments + + # Validation step + correct = '' + print("Film data to add:") + print(json.dumps(film, indent=4)) + if 'y' != input("Does this look correct? [y]:"): return + + # Save changes + logging.info('Adding film to log…') + + with open(f"./data/films/{log}.json", "r") as films_log: + films = json.load(films_log) + + films.insert(0, film) + + with open(f"./data/films/{log}.json", "w") as films_log: + json.dump(films, films_log, indent=4) + + logging.info(f"Added film {film['title']} ({film['release_date']}) to log {log}") + + +def cleanup_film(film): + """Process a film returned by the TMDB API by removing unnecessary fields and adding others""" + del film['adult'], film['backdrop_path'], film['genre_ids'], film['popularity'], film['video'], film['vote_average'], film['vote_count'] + if 'media_type' in film: del film['media_type'] + + if film['original_title'] == film['title'] and film['original_language'] == 'en': + del film['original_title'], film['original_language'] + + film['date_added'] = datetime.today().strftime('%Y-%m-%d') + + return film + + +logging.basicConfig(filename='../logs/run.log', encoding='utf-8', level=logging.DEBUG) + +media_type = '' +while media_type not in ['film', 'tv', 'book']: + media_type = input("Select media type [film|tv|book]:") + + if 'film' == media_type: + log = '' + while log not in ['log', 'wishlist']: + log = input ("Enter log to update [log|wishlist]:") + + imdb_id = '' + while re.search("tt[0-9]+", imdb_id) is None: + imdb_id = input("Enter IMDB ID:") + + import_film(imdb_id, log) + + elif 'book' == media_type: + log = '' + while log not in ['log', 'current', 'wishlist']: + log = input ("Enter log to update [log|current|wishlist]:") + + isbn = '' + while re.search("[0-9]+", isbn) is None: + isbn = input("Enter ISBN:") + + elif 'tv' == media_type: + log = '' + while log not in ['log', 'wishlist']: + log = input ("Enter log to update [log|wishlist]:") + + imdb_id = '' + while re.search("tt[0-9]+", imdb_id) is None: + imdb_id = input("Enter IMDB ID:") + + import_tv_episode(imdb_id, log) diff --git a/scripts/process_film_logs.py b/scripts/process_film_logs.py index 8ad7680..46aff51 100644 --- a/scripts/process_film_logs.py +++ b/scripts/process_film_logs.py @@ -133,7 +133,7 @@ def cleanup_film(film): return film -logging.basicConfig(filename='run.log', encoding='utf-8', level=logging.DEBUG) +logging.basicConfig(filename='../logs/run.log', encoding='utf-8', level=logging.DEBUG) with open("../data/films/wishlist.json", "r") as films_log: films = json.load(films_log) diff --git a/scripts/run.log b/scripts/run.log deleted file mode 100644 index e33072b..0000000 --- a/scripts/run.log +++ /dev/null @@ -1,147 +0,0 @@ -INFO:root:Processing items… -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing ID (Hated: GG Allin & The Murder Junkies)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/?external_source=imdb_id HTTP/1.1" 404 None -ERROR:root:{"success":false,"status_code":34,"status_message":"The resource you requested could not be found."} -INFO:root:Processing items… -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing ID (Hated: GG Allin & The Murder Junkies)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/?external_source=imdb_id HTTP/1.1" 404 None -ERROR:root:{"success":false,"status_code":34,"status_message":"The resource you requested could not be found."} -INFO:root:Processing items… -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing Hated: GG Allin & The Murder Junkies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hated%3A+GG+Allin+%26+The+Murder+Junkies&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Hated: GG Allin & The Murder Junkies (1994) -INFO:root:Processing ID tt0107086 (Hated: GG Allin & The Murder Junkies)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0107086?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0065908 (Jak rozpętałem drugą wojnę światową)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0065908?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Jak rozpętałem drugą wojnę światową -INFO:root:Processing Martin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Martin&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0077914 (Martin)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0077914?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID (Safe House)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/?external_source=imdb_id HTTP/1.1" 404 None -ERROR:root:{"success":false,"status_code":34,"status_message":"The resource you requested could not be found."} -INFO:root:Processing items… -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing Hated: GG Allin & The Murder Junkies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hated%3A+GG+Allin+%26+The+Murder+Junkies&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Hated: GG Allin & The Murder Junkies (1994) -INFO:root:Processing ID tt0107086 (Hated: GG Allin & The Murder Junkies)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0107086?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0065908 (Jak rozpętałem drugą wojnę światową)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0065908?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Jak rozpętałem drugą wojnę światową -INFO:root:Processing Martin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Martin&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0077914 (Martin)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0077914?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Safe House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safe+House&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Safe House (2012) -WARNING:root:Skipped Safe House (2012) -INFO:root:Finished processing items -INFO:root:Processing items… -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing ID tt0065908 (Jak rozpętałem drugą wojnę światową)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0065908?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Jak rozpętałem drugą wojnę światową -INFO:root:Processing Safe House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safe+House&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Safe House (2012) -WARNING:root:Skipped Safe House (2012) -INFO:root:Finished processing items -INFO:root:Processing items… -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing ID tt0065908 (Jak rozpętałem drugą wojnę światową)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0065908?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Jak rozpętałem drugą wojnę światową -INFO:root:Processing Safe House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safe+House&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Safe House (2012) -INFO:root:Processing ID tt1599348 (Safe House)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1599348?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Finished processing items -INFO:root:Processing items… -INFO:root:Processing How Not to Make a Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+Not+to+Make+a+Movie&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for How Not to Make a Movie (2013) -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing Jak rozpętałem drugą wojnę światową… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jak+rozp%C4%99ta%C5%82em+drug%C4%85+wojn%C4%99+%C5%9Bwiatow%C4%85&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0065908 (Jak rozpętałem drugą wojnę światową)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0065908?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Jak rozpętałem drugą wojnę światową -INFO:root:Finished processing items diff --git a/scripts/run.log.bak b/scripts/run.log.bak deleted file mode 100644 index 7e7535b..0000000 --- a/scripts/run.log.bak +++ /dev/null @@ -1,13582 +0,0 @@ -INFO:root:Processing items… -INFO:root:Processing items… -INFO:root:Processing ID tt0084589 (The Return of Martin Guerre)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0084589?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt9056818 (Last Breath)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt9056818?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt6587046 (The Boy and the Heron)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt6587046?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt7298400 (Ash is Purest White)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt7298400?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt12818328 (Hundreds of Beavers)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt12818328?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blackberry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blackberry&include_adult=True&year=2023 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Blackberry -INFO:root:Processing La Belle et la Bête… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Belle+et+la+B%C3%AAte&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0076740 (Sorcerer)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0076740?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Conspiracy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Conspiracy&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Winstanley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winstanley&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wundkanal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wundkanal&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oslo, August 31st… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oslo%2C+August+31st&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Donkeys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Donkeys&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Berberian Sound Studio… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Berberian+Sound+Studio&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Castaway on the Moon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Castaway+on+the+Moon&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rubber… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rubber&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Darkman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Darkman&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wrong… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wrong&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Turin Horse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Turin+Horse&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing D.I.Y. or Die: How to Survive as an Independent Artist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=D.I.Y.+or+Die%3A+How+to+Survive+as+an+Independent+Artist&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Decline of Western Civilization Part II: The Metal Years… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Decline+of+Western+Civilization+Part+II%3A+The+Metal+Years&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Decline of Western Civilization Part III… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Decline+of+Western+Civilization+Part+III&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Audition… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Audition&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Seventh Continent… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Seventh+Continent&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Funny Games… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Funny+Games&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caché… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cach%C3%A9&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nobody Knows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nobody+Knows&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Two Lovers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Two+Lovers&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Seven Samurai… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Seven+Samurai&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hachiko… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hachiko&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Miracle Mile… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Miracle+Mile&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Werner Herzog Eats His Shoe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Werner+Herzog+Eats+His+Shoe&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Baraka… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Baraka&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The White Diamond… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+White+Diamond&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The White Ribbon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+White+Ribbon&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shoah… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shoah&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Five Broken Cameras… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Five+Broken+Cameras&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cow&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Winnipeg… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Winnipeg&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Man's Letters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Man%27s+Letters&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Solaris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Solaris&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Andrei Rublev… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Andrei+Rublev&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Scarface… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Scarface&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Public Enemy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Public+Enemy&include_adult=True&year=1931 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Little Caesar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Little+Caesar&include_adult=True&year=1931 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Big Combo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Big+Combo&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Big Sleep… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Big+Sleep&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Elephant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Elephant&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Magnolia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Magnolia&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Balance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Balance&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Koyaanisqatsi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Koyaanisqatsi&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing To the Wonder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=To+the+Wonder&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Place Beyond the Pines… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Place+Beyond+the+Pines&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silver Linings Playbook… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silver+Linings+Playbook&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Detropia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Detropia&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cargo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cargo&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zombie in a Penguin Suit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zombie+in+a+Penguin+Suit&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How Not to Make a Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+Not+to+Make+a+Movie&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing Lifeboat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lifeboat&include_adult=True&year=1944 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rope… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rope&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Feeding Frenzy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Feeding+Frenzy&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Recovered… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Recovered&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cosmopolis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cosmopolis&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A History of Violence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+History+of+Violence&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fly&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing eXistenZ… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=eXistenZ&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Dangerous Method… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Dangerous+Method&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Ringers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Ringers&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Scanners… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Scanners&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Midnight Cowboy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Midnight+Cowboy&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kill Bill: Vol. 1… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kill+Bill%3A+Vol.+1&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kill Bill: Vol. 2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kill+Bill%3A+Vol.+2&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jackie Brown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jackie+Brown&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death Proof… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+Proof&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Machete… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Machete&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Planet Terror… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Planet+Terror&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Desperado… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Desperado&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Once Upon a Time in Mexico… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Once+Upon+a+Time+in+Mexico&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing El Mariachi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=El+Mariachi&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing True Romance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=True+Romance&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Clerks… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Clerks&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chasing Amy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chasing+Amy&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mallrats… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mallrats&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jay and Silent Bob Strike Back… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jay+and+Silent+Bob+Strike+Back&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Clerks II… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Clerks+II&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zack and Miri Make a Porno… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zack+and+Miri+Make+a+Porno&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Contact… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Contact&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tyrannosaur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tyrannosaur&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Doom Generation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Doom+Generation&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nowhere… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nowhere&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Totally Fucked Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Totally+Fucked+Up&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Squid and the Whale… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Squid+and+the+Whale&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fighter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fighter&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I ♥ Huckabees… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+%E2%99%A5+Huckabees&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Spanking the Monkey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Spanking+the+Monkey&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Up in Smoke… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Up+in+Smoke&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cheech & Chong's Next Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cheech+%26+Chong%27s+Next+Movie&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nice Dreams… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nice+Dreams&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Things Are Tough All Over… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Things+Are+Tough+All+Over&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tongan Ninja… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tongan+Ninja&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing George Washington… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=George+Washington&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Perfect Blue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Perfect+Blue&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tokyo Godfathers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tokyo+Godfathers&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing True Grit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=True+Grit&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing True Grit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=True+Grit&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Woman in Berlin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Woman+in+Berlin&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Bridge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Bridge&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 2 or 3 Things I Know About Her… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=2+or+3+Things+I+Know+About+Her&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Odd Man Out… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Odd+Man+Out&include_adult=True&year=1947 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White Elephant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+Elephant&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Fog… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Fog&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Butterfly Effect… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Butterfly+Effect&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pretty Woman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pretty+Woman&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wall Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wall+Street&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Wall Street -INFO:root:Processing World Trade Center… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World+Trade+Center&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ninth Configuration… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ninth+Configuration&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brassed Off… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brassed+Off&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vanya on 42nd Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vanya+on+42nd+Street&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Titicut Follies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Titicut+Follies&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Salò, or the 120 Days of Sodom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sal%C3%B2%2C+or+the+120+Days+of+Sodom&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crumb… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crumb&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Battle of the Somme… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Battle+of+the+Somme&include_adult=True&year=1916 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oblivion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oblivion&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cop Land… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cop+Land&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heavy Metal in Baghdad… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heavy+Metal+in+Baghdad&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Reincarnated… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Reincarnated&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The French Connection… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+French+Connection&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bullitt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bullitt&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing M… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=M&include_adult=True&year=1931 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Metropolis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Metropolis&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alone in the Wilderness Part II… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alone+in+the+Wilderness+Part+II&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Constant Gardener… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Constant+Gardener&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Culloden… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Culloden&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The War Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+War+Game&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Privilege… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Privilege&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Edvard Munch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Edvard+Munch&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Gladiators… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Gladiators&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Diary of an Unknown Soldier… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Diary+of+an+Unknown+Soldier&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Out of the Past… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Out+of+the+Past&include_adult=True&year=1947 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Food, Inc.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Food%2C+Inc.&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Freakonomics… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Freakonomics&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Inside Job… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Inside+Job&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blue Gold: World Water Wars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blue+Gold%3A+World+Water+Wars&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dirt! The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dirt%21+The+Movie&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing King Corn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King+Corn&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The King of Kong: A Fistful of Quarters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+King+of+Kong%3A+A+Fistful+of+Quarters&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing King Kong… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King+Kong&include_adult=True&year=1933 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Revolution Will Not Be Televised… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Revolution+Will+Not+Be+Televised&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Where in the World Is Osama Bin Laden?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Where+in+the+World+Is+Osama+Bin+Laden%3F&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing If a Tree Falls: A Story of the Earth Liberation Front… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=If+a+Tree+Falls%3A+A+Story+of+the+Earth+Liberation+Front&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Secret of Oz… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Secret+of+Oz&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fog of War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fog+of+War&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thrive: What on Earth Will it Take?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thrive%3A+What+on+Earth+Will+it+Take%3F&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Collapse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Collapse&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Blue Max… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Blue+Max&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kelly's Heroes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kelly%27s+Heroes&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Where Eagles Dare… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Where+Eagles+Dare&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight: Prelude to War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight%3A+Prelude+to+War&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight: The Nazis Strike… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight%3A+The+Nazis+Strike&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight: The Battle of China… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight%3A+The+Battle+of+China&include_adult=True&year=1944 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight: The Battle of Russia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight%3A+The+Battle+of+Russia&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight: War Comes to America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight%3A+War+Comes+to+America&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight: Divide and Conquer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight%3A+Divide+and+Conquer&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why We Fight: The Battle of Britain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+We+Fight%3A+The+Battle+of+Britain&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tora! Tora! Tora!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tora%21+Tora%21+Tora%21&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Grave of the Fireflies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Grave+of+the+Fireflies&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Empire of the Sun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Empire+of+the+Sun&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Soldier of Orange… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Soldier+of+Orange&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ashes and Diamonds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ashes+and+Diamonds&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Generation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Generation&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hangmen Also Die!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hangmen+Also+Die%21&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Battle of the Bulge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Battle+of+the+Bulge&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Longest Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Longest+Day&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dirty Dozen… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dirty+Dozen&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Victors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Victors&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Big Red One… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Big+Red+One&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Guns of Navarone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Guns+of+Navarone&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cranes Are Flying… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cranes+Are+Flying&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ballad of a Soldier… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ballad+of+a+Soldier&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Days of Glory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Days+of+Glory&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Great Escape… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Great+Escape&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wooden Crosses… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wooden+Crosses&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Battle of the Rails… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Battle+of+the+Rails&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paisan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paisan&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing They Were Expendable… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=They+Were+Expendable&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Road to Glory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Road+to+Glory&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Were Soldiers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Were+Soldiers&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hamburger Hill… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hamburger+Hill&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Walk in the Sun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Walk+in+the+Sun&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Adam… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Adam&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jeff, Who Lives at Home… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jeff%2C+Who+Lives+at+Home&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing You Can Count on Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=You+Can+Count+on+Me&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fish Tank… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fish+Tank&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Touki Bouki… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Touki+Bouki&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Céline and Julie Go Boating… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=C%C3%A9line+and+Julie+Go+Boating&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lost Weekend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lost+Weekend&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Outlaw and His Wife… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Outlaw+and+His+Wife&include_adult=True&year=1918 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Spring in a Small Town… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Spring+in+a+Small+Town&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mademoiselle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mademoiselle&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black Orpheus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+Orpheus&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Beekeeper… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Beekeeper&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pink Flamingos… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pink+Flamingos&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Brighter Summer Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Brighter+Summer+Day&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Saragossa Manuscript… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Saragossa+Manuscript&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Working Class Goes to Heaven… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Working+Class+Goes+to+Heaven&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dacians… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dacians&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cairo Station… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cairo+Station&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Berlin: Symphony of a Great City… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Berlin%3A+Symphony+of+a+Great+City&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Vampires or, The Arch Criminals of Paris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Vampires+or%2C+The+Arch+Criminals+of+Paris&include_adult=True&year=1915 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Falling Leaves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Falling+Leaves&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Who Sleeps… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Who+Sleeps&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In Vanda's Room… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+Vanda%27s+Room&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Putney Swope… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Putney+Swope&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mamma Roma… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mamma+Roma&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Crucified Lovers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Crucified+Lovers&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Union Pacific… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Union+Pacific&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pigs and Battleships… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pigs+and+Battleships&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fire Within… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fire+Within&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Camera Buff… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Camera+Buff&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Executioner… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Executioner&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hush... Hush, Sweet Charlotte… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hush...+Hush%2C+Sweet+Charlotte&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black God, White Devil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+God%2C+White+Devil&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mother and Son… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mother+and+Son&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lola… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lola&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Steel Helmet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Steel+Helmet&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fantastic Night… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fantastic+Night&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Innocence Unprotected… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Innocence+Unprotected&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hamlet from the Lunt-Fontanne Theatre… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hamlet+from+the+Lunt-Fontanne+Theatre&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Querelle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Querelle&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Aniki-Bóbó… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Aniki-B%C3%B3b%C3%B3&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=As+I+Was+Moving+Ahead+Occasionally+I+Saw+Brief+Glimpses+of+Beauty&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nanami: The Inferno of First Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nanami%3A+The+Inferno+of+First+Love&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nausicaä of the Valley of the Wind… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nausica%C3%A4+of+the+Valley+of+the+Wind&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Castle in the Sky… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Castle+in+the+Sky&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Neighbor Totoro… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Neighbor+Totoro&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kiki's Delivery Service… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kiki%27s+Delivery+Service&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Only Yesterday… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Only+Yesterday&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Porco Rosso… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Porco+Rosso&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pom Poko… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pom+Poko&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Whisper of the Heart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Whisper+of+the+Heart&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Neighbors the Yamadas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Neighbors+the+Yamadas&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Howl's Moving Castle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Howl%27s+Moving+Castle&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tales from Earthsea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tales+from+Earthsea&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Secret World of Arrietty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Secret+World+of+Arrietty&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing From Up on Poppy Hill… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=From+Up+on+Poppy+Hill&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ocean Waves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ocean+Waves&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Femme Nikita… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Femme+Nikita&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Violent Cop… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Violent+Cop&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Grbavica: The Land of My Dreams… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Grbavica%3A+The+Land+of+My+Dreams&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mahabharata… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mahabharata&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Abyss… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Abyss&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Planet of the Apes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Planet+of+the+Apes&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Passion of Joan of Arc… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Passion+of+Joan+of+Arc&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Messenger: The Story of Joan of Arc… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Messenger%3A+The+Story+of+Joan+of+Arc&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Message… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Message&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Message -INFO:root:Processing Good Night, and Good Luck.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Good+Night%2C+and+Good+Luck.&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Greatest Story Ever Told… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Greatest+Story+Ever+Told&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ben-Hur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ben-Hur&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gandhi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gandhi&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Invictus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Invictus&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ten Commandments… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ten+Commandments&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Napoleon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Napoleon&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cleopatra… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cleopatra&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Milk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Milk&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Milk -INFO:root:Processing Nixon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nixon&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All the President's Men… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+the+President%27s+Men&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing JFK… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=JFK&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Left Foot: The Story of Christy Brown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Left+Foot%3A+The+Story+of+Christy+Brown&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Malcolm X… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Malcolm+X&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Gangster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Gangster&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Elephant Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Elephant+Man&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Z… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Z&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Che: Part One… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Che%3A+Part+One&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Che: Part Two… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Che%3A+Part+Two&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Emperor… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Emperor&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Spartacus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Spartacus&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crouching Tiger, Hidden Dragon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crouching+Tiger%2C+Hidden+Dragon&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Henry V… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Henry+V&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Road to Perdition… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Road+to+Perdition&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Braveheart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Braveheart&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cromwell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cromwell&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Battleship Potemkin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Battleship+Potemkin&include_adult=True&year=1925 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last of the Mohicans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+of+the+Mohicans&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gone with the Wind… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gone+with+the+Wind&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Patriot… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Patriot&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dances with Wolves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dances+with+Wolves&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zulu Dawn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zulu+Dawn&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Westfront 1918… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Westfront+1918&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Passchendaele… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Passchendaele&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Halls of Montezuma… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Halls+of+Montezuma&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Battleground… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Battleground&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ivan's Childhood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ivan%27s+Childhood&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The English Patient… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+English+Patient&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Days of Patton… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Days+of+Patton&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Catch-22… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Catch-22&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Katyn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Katyn&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Memphis Belle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Memphis+Belle&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tae Guk Gi: The Brotherhood of War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tae+Guk+Gi%3A+The+Brotherhood+of+War&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Born on the Fourth of July… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Born+on+the+Fourth+of+July&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tumbledown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tumbledown&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blessed by Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blessed+by+Fire&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pretty Village, Pretty Flame… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pretty+Village%2C+Pretty+Flame&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Behind Enemy Lines… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Behind+Enemy+Lines&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Thin Blue Line… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Thin+Blue+Line&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Roger & Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Roger+%26+Me&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Man on Wire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Man+on+Wire&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cave of Forgotten Dreams… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cave+of+Forgotten+Dreams&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing An Inconvenient Truth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=An+Inconvenient+Truth&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Touching the Void… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Touching+the+Void&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nanook of the North… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nanook+of+the+North&include_adult=True&year=1922 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Triumph of the Will… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Triumph+of+the+Will&include_adult=True&year=1935 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hearts and Minds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hearts+and+Minds&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lake of Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lake+of+Fire&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hitler: A Film from Germany… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hitler%3A+A+Film+from+Germany&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tie Xi Qu: West of the Tracks… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tie+Xi+Qu%3A+West+of+the+Tracks&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Nazis: A Warning from History… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Nazis%3A+A+Warning+from+History&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Nazis: A Warning from History -INFO:root:Processing Capturing the Friedmans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Capturing+the+Friedmans&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Iraq in Fragments… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Iraq+in+Fragments&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Woodstock… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Woodstock&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Grin Without a Cat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Grin+Without+a+Cat&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bowling for Columbine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bowling+for+Columbine&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sicko… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sicko&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Capitalism: A Love Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Capitalism%3A+A+Love+Story&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Atomic Cafe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Atomic+Cafe&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Voices of Iraq… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Voices+of+Iraq&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing March of the Penguins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=March+of+the+Penguins&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bodysong… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bodysong&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 35 Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=35+Up&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 42 Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=42+Up&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Shadow of the Moon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Shadow+of+the+Moon&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Born Into Brothels: Calcutta's Red Light Kids… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Born+Into+Brothels%3A+Calcutta%27s+Red+Light+Kids&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enron: The Smartest Guys in the Room… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enron%3A+The+Smartest+Guys+in+the+Room&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jesus Camp… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jesus+Camp&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Taxi to the Dark Side… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Taxi+to+the+Dark+Side&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing No End in Sight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=No+End+in+Sight&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Most+Dangerous+Man+in+America%3A+Daniel+Ellsberg+and+the+Pentagon+Papers&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cove… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cove&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gasland… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gasland&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hoop Dreams… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hoop+Dreams&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waiting for "Superman"… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waiting+for+%22Superman%22&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Queen Is Crowned… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Queen+Is+Crowned&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Point of Order!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Point+of+Order%21&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Age of Stupid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Age+of+Stupid&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Burma VJ: Reporting from a Closed Country… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Burma+VJ%3A+Reporting+from+a+Closed+Country&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Up the Yangtze… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Up+the+Yangtze&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The End Of America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+End+Of+America&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing No Impact Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=No+Impact+Man&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vanishing of the Bees… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vanishing+of+the+Bees&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Girl Model… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Girl+Model&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The End of the Line… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+End+of+the+Line&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Client 9: The Rise and Fall of Eliot Spitzer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Client+9%3A+The+Rise+and+Fall+of+Eliot+Spitzer&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The World Without US… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+World+Without+US&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All Watched Over by Machines of Loving Grace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+Watched+Over+by+Machines+of+Loving+Grace&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for All Watched Over by Machines of Loving Grace -INFO:root:Processing The Century of the Self… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Century+of+the+Self&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Century of the Self -INFO:root:Processing Defamation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Defamation&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Videocracy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Videocracy&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bananas!*… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bananas%21%2A&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crude… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crude&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Afghan Star… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Afghan+Star&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Countdown to Zero… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Countdown+to+Zero&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing You Don't Like the Truth: 4 Days Inside Guantanamo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=You+Don%27t+Like+the+Truth%3A+4+Days+Inside+Guantanamo&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dark Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dark+Days&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Best Worst Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Best+Worst+Movie&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anvil! The Story of Anvil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anvil%21+The+Story+of+Anvil&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When the Levees Broke: A Requiem in Four Acts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+the+Levees+Broke%3A+A+Requiem+in+Four+Acts&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for When the Levees Broke: A Requiem in Four Acts -INFO:root:Processing God Grew Tired of Us… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=God+Grew+Tired+of+Us&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Devil and Daniel Johnston… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Devil+and+Daniel+Johnston&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Movie&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Helvetica… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Helvetica&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Objectified… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Objectified&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Urbanized… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Urbanized&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Trap: What Happened to Our Dream of Freedom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Trap%3A+What+Happened+to+Our+Dream+of+Freedom&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Trap: What Happened to Our Dream of Freedom -INFO:root:Processing The Corner… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Corner&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Corner -INFO:root:Processing Kozara… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kozara&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Battle of Neretva… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Battle+of+Neretva&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Trinity and Beyond: The Atomic Bomb Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Trinity+and+Beyond%3A+The+Atomic+Bomb+Movie&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Crazies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Crazies&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gorillas in the Mist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gorillas+in+the+Mist&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Miracle on 34th Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Miracle+on+34th+Street&include_adult=True&year=1947 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing George Harrison: Living in the Material World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=George+Harrison%3A+Living+in+the+Material+World&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing No Direction Home: Bob Dylan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=No+Direction+Home%3A+Bob+Dylan&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dont Look Back… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dont+Look+Back&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Jam Econo: The Story of the Minutemen… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Jam+Econo%3A+The+Story+of+the+Minutemen&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gonzo: The Life and Work of Dr. Hunter S. Thompson… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gonzo%3A+The+Life+and+Work+of+Dr.+Hunter+S.+Thompson&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Live in Public… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Live+in+Public&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Interrupters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Interrupters&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Magic Trip… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Magic+Trip&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Big River Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Big+River+Man&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Five Obstructions… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Five+Obstructions&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Phil Ochs: There But for Fortune… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Phil+Ochs%3A+There+But+for+Fortune&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Porn Star: The Legend of Ron Jeremy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Porn+Star%3A+The+Legend+of+Ron+Jeremy&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Inside Deep Throat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Inside+Deep+Throat&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mr.+Death%3A+The+Rise+and+Fall+of+Fred+A.+Leuchter%2C+Jr.&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing You Don't Know Jack… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=You+Don%27t+Know+Jack&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Kid Could Paint That… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Kid+Could+Paint+That&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vernon, Florida… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vernon%2C+Florida&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Nightmare on Elm Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Nightmare+on+Elm+Street&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Halloween… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Halloween&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Friday the 13th… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Friday+the+13th&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Child's Play… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Child%27s+Play&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Texas Chain Saw Massacre… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Texas+Chain+Saw+Massacre&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gates of Heaven… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gates+of+Heaven&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cocaine Cowboys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cocaine+Cowboys&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Into the Abyss… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Into+the+Abyss&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Porto of My Childhood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Porto+of+My+Childhood&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Great White Silence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Great+White+Silence&include_adult=True&year=1924 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Into Eternity: A Film for the Future… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Into+Eternity%3A+A+Film+for+the+Future&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Study of a River… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Study+of+a+River&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Teenage Paparazzo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Teenage+Paparazzo&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Murderball… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Murderball&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Senna… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Senna&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Buffalo Creek Flood: An Act of Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Buffalo+Creek+Flood%3A+An+Act+of+Man&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The City… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+City&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Der Bettler vom Kölner Dom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Der+Bettler+vom+K%C3%B6lner+Dom&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crisis: Behind a Presidential Commitment… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crisis%3A+Behind+a+Presidential+Commitment&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Czechoslovakia 1968… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Czechoslovakia+1968&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Birds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Birds&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Let There Be Light… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Let+There+Be+Light&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Endless Summer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Endless+Summer&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Grass… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Grass&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Grey Gardens… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Grey+Gardens&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing High School… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=High+School&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hospital… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hospital&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hunters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hunters&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Street&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing King: A Filmed Record... Montgomery to Memphis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King%3A+A+Filmed+Record...+Montgomery+to+Memphis&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for King: A Filmed Record... Montgomery to Memphis -INFO:root:Processing The Life and Times of Rosie the Riveter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Life+and+Times+of+Rosie+the+Riveter&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Living Desert… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Living+Desert&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manhatta… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manhatta&include_adult=True&year=1921 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The March… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+March&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marian Anderson: The Lincoln Memorial Concert… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marian+Anderson%3A+The+Lincoln+Memorial+Concert&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Memphis Belle: A Story of a Flying Fortress… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Memphis+Belle%3A+A+Story+of+a+Flying+Fortress&include_adult=True&year=1944 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Negro Soldier… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Negro+Soldier&include_adult=True&year=1944 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing On the Bowery… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=On+the+Bowery&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Come Back, Africa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Come+Back%2C+Africa&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Primary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Primary&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Siege… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Siege&include_adult=True&year=1940 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Time for Burning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Time+for+Burning&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Trip Down Market Street Before the Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Trip+Down+Market+Street+Before+the+Fire&include_adult=True&year=1906 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why Man Creates… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+Man+Creates&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Best Fiend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Best+Fiend&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Like Killing Flies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Like+Killing+Flies&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Examined Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Examined+Life&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Spellbound… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Spellbound&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Outfoxed: Rupert Murdoch's War on Journalism… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Outfoxed%3A+Rupert+Murdoch%27s+War+on+Journalism&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Metal: A Headbanger's Journey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Metal%3A+A+Headbanger%27s+Journey&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Global Metal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Global+Metal&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beauty Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beauty+Day&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Born to Be Wild… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Born+to+Be+Wild&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beasts of the Southern Wild… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beasts+of+the+Southern+Wild&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Corman's World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Corman%27s+World&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Resurrect Dead: The Mystery of the Toynbee Tiles… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Resurrect+Dead%3A+The+Mystery+of+the+Toynbee+Tiles&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Elephant in the Living Room… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Elephant+in+the+Living+Room&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing These Amazing Shadows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=These+Amazing+Shadows&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thunder Soul… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thunder+Soul&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Catfish… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Catfish&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Art of the Steal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Art+of+the+Steal&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nikola Tesla: The Genius Who Lit the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nikola+Tesla%3A+The+Genius+Who+Lit+the+World&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fuck… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fuck&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The National Parks: America's Best Idea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+National+Parks%3A+America%27s+Best+Idea&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The National Parks: America's Best Idea -INFO:root:Processing Cropsey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cropsey&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing This Is Not a Film… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=This+Is+Not+a+Film&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Koko: A Talking Gorilla… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Koko%3A+A+Talking+Gorilla&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Holy Mountain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Holy+Mountain&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Who Killed John O'Neill?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Who+Killed+John+O%27Neill%3F&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sheik and I… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sheik+and+I&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Megacities… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Megacities&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Tillman Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Tillman+Story&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Reds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Reds&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Inner Circle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Inner+Circle&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Inner Circle -INFO:root:Processing The Believer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Believer&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blue Valentine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blue+Valentine&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Good Bye Lenin!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Good+Bye+Lenin%21&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ivan the Terrible, Part I… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ivan+the+Terrible%2C+Part+I&include_adult=True&year=1944 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ivan the Terrible, Part II: The Boyars' Plot… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ivan+the+Terrible%2C+Part+II%3A+The+Boyars%27+Plot&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alexander Nevsky… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alexander+Nevsky&include_adult=True&year=1938 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anima Mundi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anima+Mundi&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chronos… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chronos&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Powaqqatsi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Powaqqatsi&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Naqoyqatsi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Naqoyqatsi&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Killing Fields… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Killing+Fields&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enemies of the People… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enemies+of+the+People&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing S21: The Khmer Rouge Death Machine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=S21%3A+The+Khmer+Rouge+Death+Machine&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Winter Light… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winter+Light&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing They Shoot Horses, Don't They?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=They+Shoot+Horses%2C+Don%27t+They%3F&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Leaving Las Vegas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Leaving+Las+Vegas&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Strada… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Strada&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 21 Grams… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=21+Grams&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dancer in the Dark… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dancer+in+the+Dark&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Seeking a Friend for the End of the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Seeking+a+Friend+for+the+End+of+the+World&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Take Shelter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Take+Shelter&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rapture… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rapture&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Admiral… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Admiral&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dark City… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dark+City&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing DMT: The Spirit Molecule… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=DMT%3A+The+Spirit+Molecule&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dreamers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dreamers&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Doomsday Book… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Doomsday+Book&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Altered States… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Altered+States&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Of Whales, the Moon, and Men… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Of+Whales%2C+the+Moon%2C+and+Men&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Witchfinder General… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Witchfinder+General&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hill… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hill&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing No Man's Land… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=No+Man%27s+Land&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Salvador… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Salvador&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Best Years of Our Lives… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Best+Years+of+Our+Lives&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Went the Day Well?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Went+the+Day+Well%3F&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Night to Remember… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Night+to+Remember&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Airplane II: The Sequel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Airplane+II%3A+The+Sequel&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Top Secret!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Top+Secret%21&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American: The Bill Hicks Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American%3A+The+Bill+Hicks+Story&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Au Revoir les Enfants… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Au+Revoir+les+Enfants&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Beast of War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Beast+of+War&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blind Chance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blind+Chance&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Boss Nigger… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Boss+Nigger&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing You, the Living… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=You%2C+the+Living&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Everything Is Illuminated… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Everything+Is+Illuminated&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Extract… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Extract&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gomorrah… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gomorrah&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Harold and Maude… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Harold+and+Maude&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hated: GG Allin & The Murder Junkies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hated%3A+GG+Allin+%26+The+Murder+Junkies&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Hated: GG Allin & The Murder Junkies -INFO:root:Processing Heathers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heathers&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Heathers -INFO:root:Processing Holy Motors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Holy+Motors&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing House of Fools… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=House+of+Fools&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How I Ended This Summer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+I+Ended+This+Summer&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It Happened Here… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It+Happened+Here&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life Is Beautiful… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life+Is+Beautiful&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life, and Nothing More...… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life%2C+and+Nothing+More...&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Young and the Damned… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Young+and+the+Damned&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lost in Translation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lost+in+Translation&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Menace II Society… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Menace+II+Society&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nasty Old People… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nasty+Old+People&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oldboy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oldboy&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Passion of the Christ… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Passion+of+the+Christ&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pathfinder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pathfinder&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ariel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ariel&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shadows in Paradise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shadows+in+Paradise&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Match Factory Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Match+Factory+Girl&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sad Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sad+Movie&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sideways… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sideways&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sympathy for Lady Vengeance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sympathy+for+Lady+Vengeance&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Taste of Cherry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Taste+of+Cherry&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ascent… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ascent&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Blank Generation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Blank+Generation&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Unbearable Lightness of Being… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Unbearable+Lightness+of+Being&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wild and Wonderful Whites of West Virginia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wild+and+Wonderful+Whites+of+West+Virginia&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wind Will Carry Us… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wind+Will+Carry+Us&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Three Colors: Red… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Three+Colors%3A+Red&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Three Colors: White… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Three+Colors%3A+White&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Through the Olive Trees… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Through+the+Olive+Trees&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Together… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Together&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Touch of Evil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Touch+of+Evil&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Un Chien Andalou… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Un+Chien+Andalou&include_adult=True&year=1929 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Valhalla Rising… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Valhalla+Rising&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Walter Defends Sarajevo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Walter+Defends+Sarajevo&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wristcutters: A Love Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wristcutters%3A+A+Love+Story&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Young People Fucking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Young+People+Fucking&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Raja Harishchandra… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Raja+Harishchandra&include_adult=True&year=1913 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enthiran… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enthiran&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rampage… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rampage&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Press Start… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Press+Start&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Press Start 2 Continue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Press+Start+2+Continue&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Who Saved the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Who+Saved+the+World&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 3:10 to Yuma… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=3%3A10+to+Yuma&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 3:10 to Yuma… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=3%3A10+to+Yuma&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fisher King… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fisher+King&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Reconstruction… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Reconstruction&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thirst… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thirst&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Thirst -INFO:root:Processing The Host… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Host&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 4 Months, 3 Weeks and 2 Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=4+Months%2C+3+Weeks+and+2+Days&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing About Elly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=About+Elly&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Weekend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Weekend&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Weekend -INFO:root:Processing Nokas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nokas&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 102 Minutes That Changed America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=102+Minutes+That+Changed+America&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 3-Iron… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=3-Iron&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Circle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Circle&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tokyo!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tokyo%21&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sea Inside… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sea+Inside&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Modigliani… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Modigliani&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Earthlings… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Earthlings&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Werckmeister Harmonies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Werckmeister+Harmonies&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jak rozpętałem drugą wojnę światową… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jak+rozp%C4%99ta%C5%82em+drug%C4%85+wojn%C4%99+%C5%9Bwiatow%C4%85&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Jak rozpętałem drugą wojnę światową -INFO:root:Processing Green… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Green&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Memories… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Memories&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing L.A. Confidential… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=L.A.+Confidential&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life as a Fatal Sexually Transmitted Disease… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life+as+a+Fatal+Sexually+Transmitted+Disease&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sexmission… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sexmission&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lunacy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lunacy&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Juice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Juice&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Behind the Mask: The Rise of Leslie Vernon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Behind+the+Mask%3A+The+Rise+of+Leslie+Vernon&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Battle for Marjah… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Battle+for+Marjah&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hapax Legomena I: (nostalgia)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hapax+Legomena+I%3A+%28nostalgia%29&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Watch The K Foundation Burn a Million Quid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Watch+The+K+Foundation+Burn+a+Million+Quid&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coffee Sex You… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coffee+Sex+You&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Topaz… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Topaz&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heroes All… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heroes+All&include_adult=True&year=1920 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Forgotten Frontier… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Forgotten+Frontier&include_adult=True&year=1931 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Uksuum Cauyai: The Drums of Winter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Uksuum+Cauyai%3A+The+Drums+of+Winter&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Uksuum Cauyai: The Drums of Winter -INFO:root:Processing The Republic of Užice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Republic+of+U%C5%BEice&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Battle of Sutjeska… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Battle+of+Sutjeska&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fighting Soldiers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fighting+Soldiers&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mud and Soldiers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mud+and+Soldiers&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Verdun: Visions of History… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Verdun%3A+Visions+of+History&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Safety Not Guaranteed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safety+Not+Guaranteed&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ParaNorman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=ParaNorman&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fall&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Donnie Darko… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Donnie+Darko&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Buffalo '66… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Buffalo+%2766&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Man's Shoes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Man%27s+Shoes&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Mood for Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Mood+for+Love&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 8½… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=8%C2%BD&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rain Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rain+Man&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rushmore… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rushmore&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek II: The Wrath of Khan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek+II%3A+The+Wrath+of+Khan&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Amongst White Clouds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Amongst+White+Clouds&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fuck for Forest… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fuck+for+Forest&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Police Academy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Police+Academy&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pain & Gain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pain+%26+Gain&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rock… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rock&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mud… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mud&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Valley of Gwangi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Valley+of+Gwangi&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Himizu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Himizu&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Suicide Club… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Suicide+Club&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Love Exposure… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Love+Exposure&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coogan's Bluff… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coogan%27s+Bluff&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lethal Weapon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lethal+Weapon&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Upstream Color… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Upstream+Color&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kiss Kiss Bang Bang… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kiss+Kiss+Bang+Bang&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Moloch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Moloch&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Timecode… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Timecode&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Satantango… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Satantango&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing PVC-1… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=PVC-1&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Intolerance: Love's Struggle Throughout the Ages… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Intolerance%3A+Love%27s+Struggle+Throughout+the+Ages&include_adult=True&year=1916 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Twin Peaks: Fire Walk with Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Twin+Peaks%3A+Fire+Walk+with+Me&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kids Are All Right… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kids+Are+All+Right&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Midnight in Paris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Midnight+in+Paris&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Annie Hall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Annie+Hall&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crimes and Misdemeanors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crimes+and+Misdemeanors&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing What's Up, Tiger Lily?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=What%27s+Up%2C+Tiger+Lily%3F&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing God Bless America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=God+Bless+America&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brave… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brave&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Serious Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Serious+Man&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pearls Before Swine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pearls+Before+Swine&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rise of the Planet of the Apes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rise+of+the+Planet+of+the+Apes&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Melancholia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Melancholia&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Antichrist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Antichrist&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manderlay… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manderlay&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Europa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Europa&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Idiots… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Idiots&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Breaking the Waves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Breaking+the+Waves&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Scream… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Scream&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing El Topo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=El+Topo&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Man&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thank You for Smoking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thank+You+for+Smoking&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Barry Lyndon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Barry+Lyndon&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Eyes Wide Shut… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Eyes+Wide+Shut&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lolita… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lolita&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vertigo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vertigo&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rear Window… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rear+Window&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing North by Northwest… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=North+by+Northwest&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dial M for Murder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dial+M+for+Murder&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The 39 Steps… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+39+Steps&include_adult=True&year=1935 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Notorious… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Notorious&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Who Knew Too Much… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Who+Knew+Too+Much&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Man Who Knew Too Much -INFO:root:Processing Raging Bull… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Raging+Bull&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Internal Affairs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Internal+Affairs&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Infernal Affairs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Infernal+Affairs&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Aviator… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Aviator&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rocketeer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rocketeer&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Iron Man 3… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Iron+Man+3&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mean Streets… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mean+Streets&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Casino… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Casino&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hugo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hugo&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gangs of New York… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gangs+of+New+York&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shine a Light… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shine+a+Light&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Once Upon a Time in America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Once+Upon+a+Time+in+America&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing To Live and Die in L.A.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=To+Live+and+Die+in+L.A.&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Land of the Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Land+of+the+Dead&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Colin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Colin&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Martin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Martin&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Martin -INFO:root:Processing Lincoln… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lincoln&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing E.T. the Extra-Terrestrial… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=E.T.+the+Extra-Terrestrial&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing War Horse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=War+Horse&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Close Encounters of the Third Kind… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Close+Encounters+of+the+Third+Kind&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Terminal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Terminal&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Duel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Duel&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Twilight Zone: The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Twilight+Zone%3A+The+Movie&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Slumdog Millionaire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Slumdog+Millionaire&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Curious Case of Benjamin Button… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Curious+Case+of+Benjamin+Button&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Right Stuff… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Right+Stuff&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing For All Mankind… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=For+All+Mankind&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wages of Fear… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wages+of+Fear&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dark Star… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dark+Star&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Man On a Mission: Richard Garriott's Road to the Stars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Man+On+a+Mission%3A+Richard+Garriott%27s+Road+to+the+Stars&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing One Day on Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=One+Day+on+Earth&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In One Breath: Alexander Sokurov's Russian Ark… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+One+Breath%3A+Alexander+Sokurov%27s+Russian+Ark&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Spring Breakers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Spring+Breakers&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Punk's Not Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Punk%27s+Not+Dead&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Producers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Producers&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Master… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Master&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Boogie Nights… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Boogie+Nights&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Punch-Drunk Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Punch-Drunk+Love&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sex, Lies, and Videotape… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sex%2C+Lies%2C+and+Videotape&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Braindead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Braindead&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gummo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gummo&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Trash Humpers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Trash+Humpers&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Freaks… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Freaks&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Even Dwarfs Started Small… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Even+Dwarfs+Started+Small&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Aguirre, the Wrath of God… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Aguirre%2C+the+Wrath+of+God&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fitzcarraldo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fitzcarraldo&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stroszek… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stroszek&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nosferatu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nosferatu&include_adult=True&year=1922 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cabinet of Dr. Caligari… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cabinet+of+Dr.+Caligari&include_adult=True&year=1920 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing On Death Row… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=On+Death+Row&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for On Death Row -INFO:root:Processing The Fog… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fog&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Thing From Another World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Thing+From+Another+World&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dracula… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dracula&include_adult=True&year=1931 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Invisible Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Invisible+Man&include_adult=True&year=1933 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Phantom of the Opera… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Phantom+of+the+Opera&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wolf Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wolf+Man&include_adult=True&year=1941 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Disconnect… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Disconnect&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babel&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Hijacking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Hijacking&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ong Bak: Muay Thai Warrior… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ong+Bak%3A+Muay+Thai+Warrior&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Blues Brothers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Blues+Brothers&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Happythankyoumoreplease… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Happythankyoumoreplease&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Deliverance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deliverance&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Police Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Police+Story&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Who Am I?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Who+Am+I%3F&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Police Story 2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Police+Story+2&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lemmy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lemmy&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kon-Tiki… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kon-Tiki&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Yojimbo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Yojimbo&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Side Effects… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Side+Effects&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Magic Mike… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Magic+Mike&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Erin Brockovich… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Erin+Brockovich&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing John Carter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=John+Carter&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Full Monty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Full+Monty&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Girlfriend Experience… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Girlfriend+Experience&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Flatland: The Film… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Flatland%3A+The+Film&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Loneliest Planet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Loneliest+Planet&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Frankenweenie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Frankenweenie&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man with the Iron Fists… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+with+the+Iron+Fists&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing An Education… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=An+Education&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Boondock Saints… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Boondock+Saints&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Garden State… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Garden+State&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Yi Yi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Yi+Yi&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dogtooth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dogtooth&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Willow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Willow&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Doctor Zhivago… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Doctor+Zhivago&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The White Balloon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+White+Balloon&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caesar Must Die… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Caesar+Must+Die&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Days of Heaven… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Days+of+Heaven&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Somewhere… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Somewhere&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 16 Days in Afghanistan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=16+Days+in+Afghanistan&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 180° South… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=180%C2%B0+South&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Bittersweet Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Bittersweet+Life&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Hard Day's Night… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Hard+Day%27s+Night&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Man Who Was Superman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Man+Who+Was+Superman&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Moment to Remember… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Moment+to+Remember&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Separation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Separation&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Swedish Love Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Swedish+Love+Story&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ace in the Hole… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ace+in+the+Hole&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing After Sex… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=After+Sex&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Air Doll… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Air+Doll&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Amadeus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Amadeus&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Pimp… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Pimp&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Angel's Egg… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Angel%27s+Egg&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Baadasssss!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Baadasssss%21&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sweet Sweetback's Baadasssss Song… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sweet+Sweetback%27s+Baadasssss+Song&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bad Taste… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bad+Taste&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Battle of Midway… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Battle+of+Midway&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beaufort… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beaufort&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Before the Fall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Before+the+Fall&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beyond the Black Rainbow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beyond+the+Black+Rainbow&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blissfully Yours… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blissfully+Yours&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brokeback Mountain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brokeback+Mountain&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brotherhood of the Wolf… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brotherhood+of+the+Wolf&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caligula… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Caligula&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chapayev… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chapayev&include_adult=True&year=1934 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Charlotte for Ever… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Charlotte+for+Ever&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chocolate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chocolate&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Chocolate -INFO:root:Processing Churchill: The Hollywood Years… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Churchill%3A+The+Hollywood+Years&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Confessions… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Confessions&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crocodile… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crocodile&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cyclo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cyclo&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Danton… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Danton&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Darwin's Nightmare… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Darwin%27s+Nightmare&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Delicatessen… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Delicatessen&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Deliver Us from Evil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deliver+Us+from+Evil&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The White Rose… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+White+Rose&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dog Day Afternoon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dog+Day+Afternoon&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dreams with Sharp Teeth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dreams+with+Sharp+Teeth&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Drunken Angel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Drunken+Angel&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ed Wood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ed+Wood&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enter the Void… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enter+the+Void&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing FAQ: Frequently Asked Questions… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=FAQ%3A+Frequently+Asked+Questions&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fast Food Nation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fast+Food+Nation&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fires on the Plain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fires+on+the+Plain&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing For Those We Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=For+Those+We+Love&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing From Here to Eternity… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=From+Here+to+Eternity&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gimme Shelter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gimme+Shelter&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Harakiri… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Harakiri&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing El Infierno… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=El+Infierno&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Herod's Law… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Herod%27s+Law&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hijacking Catastrophe: 9/11, Fear & the Selling of American Empire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hijacking+Catastrophe%3A+9%2F11%2C+Fear+%26+the+Selling+of+American+Empire&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Himalaya… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Himalaya&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hot Coffee… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hot+Coffee&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Love You Phillip Morris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Love+You+Phillip+Morris&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Saw the Devil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Saw+the+Devil&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ichi the Killer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ichi+the+Killer&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I'm Still Here… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I%27m+Still+Here&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Immortal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Immortal&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Bedroom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Bedroom&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Line of Duty: The F.B.I. Murders… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Line+of+Duty%3A+The+F.B.I.+Murders&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Izo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Izo&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jinnah… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jinnah&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Joint Security Area… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Joint+Security+Area&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Killer of Sheep… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Killer+of+Sheep&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kramer vs. Kramer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kramer+vs.+Kramer&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kundun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kundun&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Dolce Vita… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Dolce+Vita&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Soufrière… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Soufri%C3%A8re&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Last Train Home… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Last+Train+Home&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dinner Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dinner+Game&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Queen Margot… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Queen+Margot&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lessons of Darkness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lessons+of+Darkness&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Little Miss Sunshine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Little+Miss+Sunshine&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lucas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lucas&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Man on the Moon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Man+on+the+Moon&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manufactured Landscapes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manufactured+Landscapes&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manufacturing Dissent… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manufacturing+Dissent&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manufacturing Consent: Noam Chomsky and the Media… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manufacturing+Consent%3A+Noam+Chomsky+and+the+Media&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing March or Die… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=March+or+Die&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Memories of Murder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Memories+of+Murder&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Microcosmos… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Microcosmos&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Monsieur N.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Monsieur+N.&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mother… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mother&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Mother -INFO:root:Processing Mouth to Mouth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mouth+to+Mouth&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Mouth to Mouth -INFO:root:Processing Nostalgia for the Light… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nostalgia+for+the+Light&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Only Old Men Are Going to Battle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Only+Old+Men+Are+Going+to+Battle&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing OSS 117: Cairo, Nest of Spies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=OSS+117%3A+Cairo%2C+Nest+of+Spies&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Peppermint Candy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Peppermint+Candy&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Phantasm… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Phantasm&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Plan 9 from Outer Space… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Plan+9+from+Outer+Space&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Greatest Movie Ever Sold… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Greatest+Movie+Ever+Sold&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Prisoner of the Mountains… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Prisoner+of+the+Mountains&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Quince Tree Sun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Quince+Tree+Sun&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ray… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ray&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Ray -INFO:root:Processing Tell Your Children… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tell+Your+Children&include_adult=True&year=1938 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Roll Up Your Sleeves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Roll+Up+Your+Sleeves&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ronin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ronin&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Royal Space Force - The Wings Of Honneamise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Royal+Space+Force+-+The+Wings+Of+Honneamise&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rumble Fish… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rumble+Fish&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Safety Last!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safety+Last%21&include_adult=True&year=1923 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Samaritan Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Samaritan+Girl&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Secrets of the Tribe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Secrets+of+the+Tribe&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Seven Years in Tibet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Seven+Years+in+Tibet&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shaft… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shaft&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sixteen Candles… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sixteen+Candles&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sleep Dealer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sleep+Dealer&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sliding Doors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sliding+Doors&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Slingshot Hip Hop… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Slingshot+Hip+Hop&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Slither… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Slither&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Snowtown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Snowtown&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sophie Scholl: The Final Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sophie+Scholl%3A+The+Final+Days&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Special… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Special&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stay… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stay&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Steam of Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Steam+of+Life&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Straw Dogs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Straw+Dogs&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Super Troopers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Super+Troopers&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ten… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ten&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The 317th Platoon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+317th+Platoon&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The 36th Chamber of Shaolin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+36th+Chamber+of+Shaolin&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Americanization of Emily… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Americanization+of+Emily&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Beastmaster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Beastmaster&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fortress of War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fortress+of+War&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Call of Cthulhu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Call+of+Cthulhu&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lupin the Third: The Castle of Cagliostro… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lupin+the+Third%3A+The+Castle+of+Cagliostro&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Chaser… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Chaser&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Chorus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Chorus&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Coconut Revolution… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Coconut+Revolution&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cruel Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cruel+Sea&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cruise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cruise&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Devils… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Devils&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Emerald Forest… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Emerald+Forest&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Four Times… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Four+Times&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Getaway… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Getaway&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Gold Rush… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Gold+Rush&include_adult=True&year=1925 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Goonies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Goonies&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Monster Squad… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Monster+Squad&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Great Silence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Great+Silence&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Incredible Journey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Incredible+Journey&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Island… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Island&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Island -INFO:root:Processing The Kite Runner… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kite+Runner&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Battle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Battle&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Long Goodbye… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Long+Goodbye&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rapeman 1… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rapeman+1&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man from Nowhere… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+from+Nowhere&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mark of Cain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mark+of+Cain&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Mark of Cain -INFO:root:Processing The Mission… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mission&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Names of Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Names+of+Love&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Razor's Edge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Razor%27s+Edge&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Red Balloon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Red+Balloon&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Return… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Return&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Return -INFO:root:Processing The Siege of Firebase Gloria… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Siege+of+Firebase+Gloria&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Silent World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Silent+World&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Snow Walker… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Snow+Walker&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wild Bunch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wild+Bunch&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Yes Men Fix the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Yes+Men+Fix+the+World&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thelma & Louise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thelma+%26+Louise&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing THX 1138… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=THX+1138&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tibet: Cry of the Snow Lion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tibet%3A+Cry+of+the+Snow+Lion&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing To Hell and Back… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=To+Hell+and+Back&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tromeo & Juliet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tromeo+%26+Juliet&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Until the Light Takes Us… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Until+the+Light+Takes+Us&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Viridiana… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Viridiana&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Visitor Q… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Visitor+Q&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waking Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waking+Life&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Walkabout… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Walkabout&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing War Made Easy: How Presidents & Pundits Keep Spinning Us to Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=War+Made+Easy%3A+How+Presidents+%26+Pundits+Keep+Spinning+Us+to+Death&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing War Photographer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=War+Photographer&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wheel of Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wheel+of+Time&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Whip It… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Whip+It&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Why Has Bodhi-Dharma Left for the East?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Why+Has+Bodhi-Dharma+Left+for+the+East%3F&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wings of Desire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wings+of+Desire&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing World Without Sun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World+Without+Sun&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zebraman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zebraman&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zero for Conduct… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zero+for+Conduct&include_adult=True&year=1933 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zoo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zoo&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zoya… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zoya&include_adult=True&year=1944 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Amores Perros… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Amores+Perros&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babylon 5: The Gathering… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babylon+5%3A+The+Gathering&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hawaii… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hawaii&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heimat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heimat&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Heimat -INFO:root:Processing Paradise Lost: The Child Murders at Robin Hood Hills… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paradise+Lost%3A+The+Child+Murders+at+Robin+Hood+Hills&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stargate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stargate&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 24: Redemption… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=24%3A+Redemption&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cowboy Bebop: The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cowboy+Bebop%3A+The+Movie&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Magnum Force… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Magnum+Force&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paradise Lost 2: Revelations… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paradise+Lost+2%3A+Revelations&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Reno 911!: Miami… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Reno+911%21%3A+Miami&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hawaiians… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hawaiians&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The X Files… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+X+Files&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babylon 5: In the Beginning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babylon+5%3A+In+the+Beginning&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paradise Lost 3: Purgatory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paradise+Lost+3%3A+Purgatory&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stargate: The Ark of Truth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stargate%3A+The+Ark+of+Truth&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Enforcer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Enforcer&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The X Files: I Want to Believe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+X+Files%3A+I+Want+to+Believe&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babylon 5: Thirdspace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babylon+5%3A+Thirdspace&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stargate: Continuum… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stargate%3A+Continuum&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sudden Impact… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sudden+Impact&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babylon 5: The River of Souls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babylon+5%3A+The+River+of+Souls&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dead Pool… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dead+Pool&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babylon 5: A Call to Arms… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babylon+5%3A+A+Call+to+Arms&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babylon 5: The Legend of the Rangers - To Live and Die in Starlight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babylon+5%3A+The+Legend+of+the+Rangers+-+To+Live+and+Die+in+Starlight&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wojtek: The Bear That Went to War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wojtek%3A+The+Bear+That+Went+to+War&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Purgatory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Purgatory&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Glen or Glenda… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Glen+or+Glenda&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bridge to Terabithia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bridge+to+Terabithia&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fluffer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fluffer&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Saturday Night Fever… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Saturday+Night+Fever&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kentucky Fried Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kentucky+Fried+Movie&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rampart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rampart&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White Men Can't Jump… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+Men+Can%27t+Jump&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Good Morning, Vietnam… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Good+Morning%2C+Vietnam&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Toxic Avenger… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Toxic+Avenger&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fearless… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fearless&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fist of Fury… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fist+of+Fury&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Way of the Dragon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Way+of+the+Dragon&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Game of Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Game+of+Death&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 9/11: The Falling Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=9%2F11%3A+The+Falling+Man&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 12th & Delaware… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=12th+%26+Delaware&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Class… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Class&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Irreversible… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Irreversible&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Stand Alone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Stand+Alone&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Carne… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Carne&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pusher 3… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pusher+3&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pusher II… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pusher+II&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pusher… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pusher&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dahmer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dahmer&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Exorcist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Exorcist&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tiresia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tiresia&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Barefoot Gen… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Barefoot+Gen&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chekist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chekist&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Aristocrats… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Aristocrats&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing BASEketball… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=BASEketball&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Road House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Road+House&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Artist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Artist&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Artist -INFO:root:Processing Argo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Argo&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Brown Bunny… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Brown+Bunny&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Raising Arizona… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Raising+Arizona&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Miller's Crossing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Miller%27s+Crossing&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The King of Communism: The Pomp & Pageantry of Nicolae Ceausescu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+King+of+Communism%3A+The+Pomp+%26+Pageantry+of+Nicolae+Ceausescu&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thomas Sankara: The Upright Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thomas+Sankara%3A+The+Upright+Man&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mobutu, King of Zaire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mobutu%2C+King+of+Zaire&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing General Idi Amin Dada… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=General+Idi+Amin+Dada&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Africa: Blood and Guts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Africa%3A+Blood+and+Guts&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Extremely Loud & Incredibly Close… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Extremely+Loud+%26+Incredibly+Close&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wild Strawberries… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wild+Strawberries&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sixth Sense… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sixth+Sense&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dream with the Fishes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dream+with+the+Fishes&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Love a Man in Uniform… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Love+a+Man+in+Uniform&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing What Dreams May Come… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=What+Dreams+May+Come&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Big Fish… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Big+Fish&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Indie Game: The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Indie+Game%3A+The+Movie&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Face/Off… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Face%2FOff&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Red Cliff… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Red+Cliff&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Red Cliff Part II… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Red+Cliff+Part+II&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Point Break… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Point+Break&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Better Tomorrow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Better+Tomorrow&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Badlands… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Badlands&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lee Strasberg's Method… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lee+Strasberg%27s+Method&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Graduate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Graduate&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing City of Men… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=City+of+Men&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing UHF… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=UHF&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Greenberg… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Greenberg&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Comedy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Comedy&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Return of the Living Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Return+of+the+Living+Dead&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bungalow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bungalow&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Amour… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Amour&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Joy of Stats… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Joy+of+Stats&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sid & Nancy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sid+%26+Nancy&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing SLC Punk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=SLC+Punk&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Repo! The Genetic Opera… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Repo%21+The+Genetic+Opera&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing D.O.A.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=D.O.A.&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Suburbia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Suburbia&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ladies and Gentlemen, the Fabulous Stains… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ladies+and+Gentlemen%2C+the+Fabulous+Stains&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ex Drummer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ex+Drummer&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Transformers: The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Transformers%3A+The+Movie&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Brave Little Toaster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Brave+Little+Toaster&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Romeo + Juliet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Romeo+%2B+Juliet&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rolling Kansas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rolling+Kansas&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ace Ventura: Pet Detective… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ace+Ventura%3A+Pet+Detective&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Running Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Running+Man&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Begotten… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Begotten&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Din of Celestial Birds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Din+of+Celestial+Birds&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Killer Klowns from Outer Space… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Killer+Klowns+from+Outer+Space&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Excision… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Excision&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Final Countdown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Final+Countdown&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing God of Vampires… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=God+of+Vampires&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blade II… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blade+II&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heavy Metal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heavy+Metal&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fire and Ice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fire+and+Ice&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zu Warriors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zu+Warriors&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oblivion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oblivion&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Adventures of Buckaroo Banzai Across the 8th Dimension… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Adventures+of+Buckaroo+Banzai+Across+the+8th+Dimension&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Apple… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Apple&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Uncle Sam… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Uncle+Sam&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dollman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dollman&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rampage… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rampage&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Rampage -INFO:root:Processing The Devil's Rejects… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Devil%27s+Rejects&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing House of 1000 Corpses… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=House+of+1000+Corpses&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lords of Salem… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lords+of+Salem&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wizard of Oz… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wizard+of+Oz&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Circus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Circus&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Philadelphia Experiment… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Philadelphia+Experiment&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crimson Tide… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crimson+Tide&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Romper Stomper… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Romper+Stomper&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tunnel Rats… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tunnel+Rats&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Attack on Darfur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Attack+on+Darfur&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stoic… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stoic&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It's Hard to Be Nice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It%27s+Hard+to+Be+Nice&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Naked Lunch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Naked+Lunch&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Machuca… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Machuca&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Manchurian Candidate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Manchurian+Candidate&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Maria Full of Grace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Maria+Full+of+Grace&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alice&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Alice -INFO:root:Processing The Big Blue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Big+Blue&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Big Blue -INFO:root:Processing A Journey Into Bliss… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Journey+Into+Bliss&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hardcore… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hardcore&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fallen Angels… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fallen+Angels&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Control… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Control&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Control -INFO:root:Processing 101 Reykjavik… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=101+Reykjavik&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Black -INFO:root:Processing The Forbidden Door… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Forbidden+Door&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The General… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+General&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cemetery Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cemetery+Man&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Harder They Come… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Harder+They+Come&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Snow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Snow&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Iron Sky… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Iron+Sky&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Avalon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Avalon&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Singapore Dreaming… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Singapore+Dreaming&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dance with the Devil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dance+with+the+Devil&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dangerous Moves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dangerous+Moves&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Invisible Waves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Invisible+Waves&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Room for Romeo Brass… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Room+for+Romeo+Brass&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Owl and the Sparrow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Owl+and+the+Sparrow&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Name of the Father… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Name+of+the+Father&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sea&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Insomnia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Insomnia&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Vanishing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Vanishing&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Promise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Promise&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Promise -INFO:root:Processing The Piano Teacher… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Piano+Teacher&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Virgin Among the Living Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Virgin+Among+the+Living+Dead&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The American Friend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+American+Friend&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jacob the Liar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jacob+the+Liar&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Abraham's Valley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Abraham%27s+Valley&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Talk to Her… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Talk+to+Her&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Travelling Players… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Travelling+Players&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mephisto… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mephisto&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Goat Horn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Goat+Horn&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Divided We Fall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Divided+We+Fall&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Time of the Gypsies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Time+of+the+Gypsies&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Underground… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Underground&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Before the Rain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Before+the+Rain&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Forest of the Gods… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Forest+of+the+Gods&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 27 Missing Kisses… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=27+Missing+Kisses&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vodka Lemon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vodka+Lemon&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nomad: The Warrior… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nomad%3A+The+Warrior&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Luna Papa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Luna+Papa&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Walk on Water… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Walk+on+Water&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Osama… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Osama&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cup… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cup&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tears of the Black Tiger… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tears+of+the+Black+Tiger&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cave of the Yellow Dog… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cave+of+the+Yellow+Dog&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Flower Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Flower+Girl&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Divine Intervention… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Divine+Intervention&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caramel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Caramel&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dupes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dupes&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Abouna… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Abouna&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sambizanga… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sambizanga&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sometimes in April… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sometimes+in+April&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Moolaadé… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Moolaad%C3%A9&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brightness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brightness&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Brightness -INFO:root:Processing Sankofa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sankofa&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Muriel's Wedding… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Muriel%27s+Wedding&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Piano… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Piano&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Reflecting Skin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Reflecting+Skin&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pixote… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pixote&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lumumba… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lumumba&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Memories of Underdevelopment… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Memories+of+Underdevelopment&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Maldeamores… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Maldeamores&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Secret in Their Eyes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Secret+in+Their+Eyes&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jackal of Nahueltoro… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jackal+of+Nahueltoro&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oriana… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oriana&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Our Lady of the Assassins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Our+Lady+of+the+Assassins&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Whisky… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Whisky&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sexual Dependency… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sexual+Dependency&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crónicas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cr%C3%B3nicas&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Serbian Film… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Serbian+Film&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Human Centipede (First Sequence)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Human+Centipede+%28First+Sequence%29&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Saw… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Saw&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mapantsula… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mapantsula&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Yellow Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Yellow+Earth&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Napkin Universe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Napkin+Universe&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nueba Yol 3… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nueba+Yol+3&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mystics in Bali… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mystics+in+Bali&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Yuma… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Yuma&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Without a Past… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Without+a+Past&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Drifting Clouds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Drifting+Clouds&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lights in the Dusk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lights+in+the+Dusk&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Bothersome Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Bothersome+Man&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Celebration… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Celebration&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fifty Dead Men Walking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fifty+Dead+Men+Walking&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hedd Wyn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hedd+Wyn&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ben X… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ben+X&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Women on the Verge of a Nervous Breakdown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Women+on+the+Verge+of+a+Nervous+Breakdown&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nights of Cabiria… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nights+of+Cabiria&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vitus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vitus&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Counterfeiters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Counterfeiters&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kolya… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kolya&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Knife in the Water… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Knife+in+the+Water&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zero 2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zero+2&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shadows of Forgotten Ancestors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shadows+of+Forgotten+Ancestors&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Slovenian Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Slovenian+Girl&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fine Dead Girls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fine+Dead+Girls&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The World Is Big and Salvation Lurks Around the Corner… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+World+Is+Big+and+Salvation+Lurks+Around+the+Corner&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Slogans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Slogans&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Bandit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Bandit&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mimino… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mimino&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Captain Abu Raed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Captain+Abu+Raed&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Band's Visit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Band%27s+Visit&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing City of Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=City+of+Life&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Turtles Can Fly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Turtles+Can+Fly&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tulpan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tulpan&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Adopted Son… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Adopted+Son&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Name of God… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Name+of+God&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 3 Idiots… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=3+Idiots&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Travellers and Magicians… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Travellers+and+Magicians&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wedding Banquet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wedding+Banquet&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Scent of Green Papaya… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Scent+of+Green+Papaya&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Don't Want to Sleep Alone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Don%27t+Want+to+Sleep+Alone&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Merantau… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Merantau&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Service… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Service&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crocodile Dundee… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crocodile+Dundee&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Once Were Warriors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Once+Were+Warriors&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Breaker Morant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Breaker+Morant&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Milk of Sorrow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Milk+of+Sorrow&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Secuestro Express… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Secuestro+Express&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Captains of April… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Captains+of+April&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Garden… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Garden&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caribe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Caribe&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Defenders of Riga… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Defenders+of+Riga&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Saworoide… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Saworoide&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The House Across the Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+House+Across+the+Street&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rape of Aphrodite… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rape+of+Aphrodite&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Man of Ashes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Man+of+Ashes&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oh, Sun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oh%2C+Sun&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ali Zaoua: Prince of the Streets… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ali+Zaoua%3A+Prince+of+the+Streets&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Half Baked… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Half+Baked&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Room 666… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Room+666&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Brother the Devil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Brother+the+Devil&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Adventures of Priscilla, Queen of the Desert… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Adventures+of+Priscilla%2C+Queen+of+the+Desert&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jules and Jim… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jules+and+Jim&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tabloid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tabloid&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fast, Cheap & Out of Control… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fast%2C+Cheap+%26+Out+of+Control&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rescue Dawn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rescue+Dawn&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nosferatu the Vampyre… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nosferatu+the+Vampyre&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Son, My Son, What Have Ye Done… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Son%2C+My+Son%2C+What+Have+Ye+Done&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Standard Operating Procedure… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Standard+Operating+Procedure&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crimewave… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crimewave&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Blue Angel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Blue+Angel&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Celluloid Closet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Celluloid+Closet&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing West of Memphis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=West+of+Memphis&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silent Running… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silent+Running&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Plague Dogs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Plague+Dogs&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Watership Down… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Watership+Down&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hitler's Children… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hitler%27s+Children&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Only God Forgives… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Only+God+Forgives&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Happening… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Happening&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Searching for Sugar Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Searching+for+Sugar+Man&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Speed Racer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Speed+Racer&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marley&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Imposter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Imposter&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Year of Living Dangerously… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Year+of+Living+Dangerously&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Fish Called Wanda… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Fish+Called+Wanda&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing An American Werewolf in London… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=An+American+Werewolf+in+London&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Basic Instinct… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Basic+Instinct&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Naked Rashomon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Naked+Rashomon&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Barton Fink… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Barton+Fink&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Legend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Legend&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shoot the Piano Player… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shoot+the+Piano+Player&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Yellow Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Yellow+Sea&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Behind the Candelabra… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Behind+the+Candelabra&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Let the Right One In… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Let+the+Right+One+In&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Commando… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Commando&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Akira… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Akira&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Faces of Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Faces+of+Death&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Omen… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Omen&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing They Died with Their Boots On… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=They+Died+with+Their+Boots+On&include_adult=True&year=1941 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Charge of the Light Brigade… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Charge+of+the+Light+Brigade&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How the West Was Won… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+the+West+Was+Won&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stagecoach… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stagecoach&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fort Apache… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fort+Apache&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing High Noon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=High+Noon&include_adult=True&year=1952 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Crying Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Crying+Game&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Crying Game -INFO:root:Processing Boys Don't Cry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Boys+Don%27t+Cry&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Who Shot Liberty Valance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Who+Shot+Liberty+Valance&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Outlaw Josey Wales… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Outlaw+Josey+Wales&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hellraiser… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hellraiser&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beverly Hills Cop… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beverly+Hills+Cop&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rush Hour… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rush+Hour&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Superman II… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Superman+II&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Batman Returns… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Batman+Returns&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Batman: Gotham Knight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Batman%3A+Gotham+Knight&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Batman Forever… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Batman+Forever&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Andromeda Strain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Andromeda+Strain&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bicentennial Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bicentennial+Man&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Girl&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Love Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Love+Story&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 50/50… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=50%2F50&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Saint of Fort Washington… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Saint+of+Fort+Washington&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing House of Tolerance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=House+of+Tolerance&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Harry and the Hendersons… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Harry+and+the+Hendersons&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White Oleander… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+Oleander&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Girl, Interrupted… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Girl%2C+Interrupted&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Walk to Remember… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Walk+to+Remember&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Open Your Eyes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Open+Your+Eyes&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Quantum of Solace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Quantum+of+Solace&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Who's Afraid of Virginia Woolf?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Who%27s+Afraid+of+Virginia+Woolf%3F&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tape… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tape&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Once Upon a Time in Anatolia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Once+Upon+a+Time+in+Anatolia&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sleuth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sleuth&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Winter's Bone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winter%27s+Bone&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sound of My Voice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sound+of+My+Voice&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Doubt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Doubt&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brick… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brick&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Edmond… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Edmond&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chinese Coffee… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chinese+Coffee&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Santa Sangre… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Santa+Sangre&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death and the Maiden… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+and+the+Maiden&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Weekend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Weekend&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Weekend -INFO:root:Processing Storytelling… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Storytelling&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ninth Gate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ninth+Gate&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Straight Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Straight+Story&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tremors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tremors&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Southland Tales… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Southland+Tales&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Slipstream… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Slipstream&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Local Hero… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Local+Hero&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Murder by Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Murder+by+Death&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ghost Writer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ghost+Writer&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sexy Beast… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sexy+Beast&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Damned United… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Damned+United&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lost Highway… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lost+Highway&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Le Cercle Rouge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Le+Cercle+Rouge&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tangled… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tangled&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Before the Devil Knows You're Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Before+the+Devil+Knows+You%27re+Dead&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Poltergeist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Poltergeist&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Contempt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Contempt&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Metro… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Metro&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Last Year at Marienbad… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Last+Year+at+Marienbad&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Vitelloni… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Vitelloni&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chopper… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chopper&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing V… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=V&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for V -INFO:root:Processing V: The Final Battle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=V%3A+The+Final+Battle&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for V: The Final Battle -INFO:root:Processing The Breakfast Club… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Breakfast+Club&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Steamboy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Steamboy&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The People vs. George Lucas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+People+vs.+George+Lucas&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Miami Vice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Miami+Vice&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cargo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cargo&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dunkirk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dunkirk&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Dunkirk -INFO:root:Processing Walk the Line… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Walk+the+Line&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Walk Hard: The Dewey Cox Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Walk+Hard%3A+The+Dewey+Cox+Story&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ballad of Big Al… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ballad+of+Big+Al&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Ballad of Big Al -INFO:root:Processing Chased by Dinosaurs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chased+by+Dinosaurs&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Chased by Dinosaurs -INFO:root:Processing Conan the Barbarian… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Conan+the+Barbarian&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blow Out… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blow+Out&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Deep Throat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deep+Throat&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Deep Throat -INFO:root:Processing Carlito's Way… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Carlito%27s+Way&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mars and April… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mars+and+April&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gayniggers from Outer Space… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gayniggers+from+Outer+Space&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enemy Mine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enemy+Mine&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Boondock Saints II: All Saints Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Boondock+Saints+II%3A+All+Saints+Day&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Call of the Wild… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Call+of+the+Wild&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek Into Darkness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek+Into+Darkness&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Princess and the Frog… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Princess+and+the+Frog&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Snow White and the Seven Dwarfs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Snow+White+and+the+Seven+Dwarfs&include_adult=True&year=1937 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pinocchio… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pinocchio&include_adult=True&year=1940 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Forgotten Toys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Forgotten+Toys&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fantasia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fantasia&include_adult=True&year=1940 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Despicable Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Despicable+Me&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pocahontas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pocahontas&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Pocahontas -INFO:root:Processing The Prince of Egypt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Prince+of+Egypt&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anastasia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anastasia&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Anastasia -INFO:root:Processing The Secret of NIMH… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Secret+of+NIMH&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing An American Tail… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=An+American+Tail&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Land Before Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Land+Before+Time&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dinosaur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dinosaur&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Titan A.E.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Titan+A.E.&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fantasia 2000… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fantasia+2000&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dumbo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dumbo&include_adult=True&year=1941 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bambi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bambi&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cinderella… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cinderella&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alice in Wonderland… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alice+in+Wonderland&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Peter Pan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Peter+Pan&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lady and the Tramp… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lady+and+the+Tramp&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sleeping Beauty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sleeping+Beauty&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing One Hundred and One Dalmatians… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=One+Hundred+and+One+Dalmatians&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sword in the Stone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sword+in+the+Stone&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Jungle Book… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Jungle+Book&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Aristocats… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Aristocats&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Robin Hood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Robin+Hood&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rescuers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rescuers&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fox and the Hound… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fox+and+the+Hound&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Little Mermaid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Little+Mermaid&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beauty and the Beast… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beauty+and+the+Beast&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Aladdin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Aladdin&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hunchback of Notre Dame… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hunchback+of+Notre+Dame&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Hunchback of Notre Dame -INFO:root:Processing Hercules… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hercules&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Hercules -INFO:root:Processing Mulan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mulan&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Mulan -INFO:root:Processing Tarzan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tarzan&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Atlantis: The Lost Empire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Atlantis%3A+The+Lost+Empire&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Treasure Planet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Treasure+Planet&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Meet the Robinsons… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Meet+the+Robinsons&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Winnie the Pooh… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winnie+the+Pooh&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Many Adventures of Winnie the Pooh… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Many+Adventures+of+Winnie+the+Pooh&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mary Poppins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mary+Poppins&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enchanted… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enchanted&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek: The Motion Picture… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek%3A+The+Motion+Picture&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek III: The Search for Spock… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek+III%3A+The+Search+for+Spock&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek IV: The Voyage Home… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek+IV%3A+The+Voyage+Home&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek V: The Final Frontier… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek+V%3A+The+Final+Frontier&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek VI: The Undiscovered Country… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek+VI%3A+The+Undiscovered+Country&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek: Generations… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek%3A+Generations&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek: First Contact… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek%3A+First+Contact&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek: Insurrection… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek%3A+Insurrection&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Trek: Nemesis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Trek%3A+Nemesis&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wallace & Gromit: The Curse of the Were-Rabbit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wallace+%26+Gromit%3A+The+Curse+of+the+Were-Rabbit&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Close Shave… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Close+Shave&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Grand Day Out… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Grand+Day+Out&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Matter of Loaf and Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Matter+of+Loaf+and+Death&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wrong Trousers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wrong+Trousers&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sinbad: Legend of the Seven Seas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sinbad%3A+Legend+of+the+Seven+Seas&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heavenly Creatures… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heavenly+Creatures&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cannibal Holocaust… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cannibal+Holocaust&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Grapes of Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Grapes+of+Death&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Snakes on a Plane… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Snakes+on+a+Plane&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hemp for Victory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hemp+for+Victory&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Hemp for Victory -INFO:root:Processing Good Vibrations… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Good+Vibrations&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Twin Town… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Twin+Town&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sparkle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sparkle&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Showgirls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Showgirls&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Attack of the 50 Foot Woman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Attack+of+the+50+Foot+Woman&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black Christmas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+Christmas&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Con Air… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Con+Air&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mission: Impossible… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mission%3A+Impossible&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Godzilla… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Godzilla&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pootie Tang… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pootie+Tang&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Babe: Pig in the City… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Babe%3A+Pig+in+the+City&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manos: The Hands of Fate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manos%3A+The+Hands+of+Fate&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bottle Rocket… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bottle+Rocket&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Irma Vep… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Irma+Vep&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rules of Attraction… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rules+of+Attraction&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Troll 2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Troll+2&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gerry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gerry&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Iron Giant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Iron+Giant&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Good Will Hunting… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Good+Will+Hunting&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paris, Je T'Aime… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paris%2C+Je+T%27Aime&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Own Private Idaho… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Own+Private+Idaho&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Promised Land… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Promised+Land&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Drugstore Cowboy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Drugstore+Cowboy&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Bad Lieutenant: Port of Call - New Orleans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Bad+Lieutenant%3A+Port+of+Call+-+New+Orleans&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Series 7: The Contenders… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Series+7%3A+The+Contenders&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zodiac… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zodiac&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anaconda… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anaconda&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Observe and Report… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Observe+and+Report&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing [REC]… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=%5BREC%5D&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death Wish… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+Wish&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kung Fu Hustle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kung+Fu+Hustle&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Highlander… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Highlander&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Game&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Panic Room… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Panic+Room&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hard Target… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hard+Target&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing JCVD… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=JCVD&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beau Travail… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beau+Travail&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Control Room… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Control+Room&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing .hack//Beyond the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=.hack%2F%2FBeyond+the+World&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Four Hours in My Lai… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Four+Hours+in+My+Lai&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hairspray… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hairspray&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hackers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hackers&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Freedom Downtime… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Freedom+Downtime&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sound of Music… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sound+of+Music&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cube… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cube&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Species… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Species&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Know What You Did Last Summer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Know+What+You+Did+Last+Summer&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Bloody Valentine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Bloody+Valentine&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Usual Suspects… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Usual+Suspects&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blades of Glory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blades+of+Glory&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rango… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rango&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 9… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=9&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for 9 -INFO:root:Processing The Poughkeepsie Tapes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Poughkeepsie+Tapes&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Singin' in the Rain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Singin%27+in+the+Rain&include_adult=True&year=1952 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gorilla Interrupted… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gorilla+Interrupted&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Karate Kid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Karate+Kid&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mezzo Forte… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mezzo+Forte&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Valley of the Dolls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Valley+of+the+Dolls&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Eraserhead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Eraserhead&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blue Velvet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blue+Velvet&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Inland Empire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Inland+Empire&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dune… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dune&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wild at Heart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wild+at+Heart&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing History of the World: Part I… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=History+of+the+World%3A+Part+I&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silent Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silent+Movie&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rabbits… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rabbits&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lost Boys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lost+Boys&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing This Is the End… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=This+Is+the+End&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Millions… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Millions&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Pursuit of Happyness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Pursuit+of+Happyness&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Casino Royale… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Casino+Royale&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Italian Job… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Italian+Job&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Revenge of the Nerds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Revenge+of+the+Nerds&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Love Bug… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Love+Bug&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death Race 2000… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+Race+2000&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Terminator 2: Judgment Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Terminator+2%3A+Judgment+Day&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Last Action Hero… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Last+Action+Hero&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Terminator 3: Rise of the Machines… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Terminator+3%3A+Rise+of+the+Machines&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Journey to the Center of the Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Journey+to+the+Center+of+the+Earth&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Around the World in Eighty Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Around+the+World+in+Eighty+Days&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Time Bandits… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Time+Bandits&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Meaning of Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Meaning+of+Life&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Imaginarium of Doctor Parnassus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Imaginarium+of+Doctor+Parnassus&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Adventures of Baron Munchausen… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Adventures+of+Baron+Munchausen&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ghostbusters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ghostbusters&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stripes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stripes&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wizard… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wizard&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Slacker… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Slacker&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Catch Me If You Can… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Catch+Me+If+You+Can&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Windy City Heat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Windy+City+Heat&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Youth in Revolt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Youth+in+Revolt&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 30 Minutes or Less… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=30+Minutes+or+Less&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Prometheus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Prometheus&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Are the Strange… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Are+the+Strange&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mortal Kombat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mortal+Kombat&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Final Fantasy: The Spirits Within… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Final+Fantasy%3A+The+Spirits+Within&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Space: Downfall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Space%3A+Downfall&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Space: Aftermath… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Space%3A+Aftermath&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Dead Space: Aftermath -INFO:root:Processing Halo Legends… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Halo+Legends&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dante's Inferno: An Animated Epic… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dante%27s+Inferno%3A+An+Animated+Epic&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kite Liberator… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kite+Liberator&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Immortals… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Immortals&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sukiyaki Western Django… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sukiyaki+Western+Django&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 13 Assassins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=13+Assassins&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Four Weddings and a Funeral… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Four+Weddings+and+a+Funeral&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pushing Tin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pushing+Tin&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Report on the Party and the Guests… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Report+on+the+Party+and+the+Guests&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lockout… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lockout&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I'm Gonna Git You Sucka… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I%27m+Gonna+Git+You+Sucka&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Don't Be a Menace to South Central While Drinking Your Juice in the Hood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Don%27t+Be+a+Menace+to+South+Central+While+Drinking+Your+Juice+in+the+Hood&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Unstoppable… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Unstoppable&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ninja Scroll… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ninja+Scroll&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jin-Roh: The Wolf Brigade… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jin-Roh%3A+The+Wolf+Brigade&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Metropolis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Metropolis&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Patlabor: The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Patlabor%3A+The+Movie&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vampire Hunter D… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vampire+Hunter+D&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fist of the North Star… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fist+of+the+North+Star&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Fist of the North Star -INFO:root:Processing Fritz the Cat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fritz+the+Cat&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heavy Traffic… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heavy+Traffic&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lord of the Flies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lord+of+the+Flies&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The King of Pigs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+King+of+Pigs&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Yellow Submarine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Yellow+Submarine&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Batman: Mask of the Phantasm… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Batman%3A+Mask+of+the+Phantasm&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Institute Benjamenta, or This Dream People Call Human Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Institute+Benjamenta%2C+or+This+Dream+People+Call+Human+Life&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Persepolis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Persepolis&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Triplets of Belleville… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Triplets+of+Belleville&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fly&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Invasion of the Body Snatchers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Invasion+of+the+Body+Snatchers&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Day the Earth Stood Still… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Day+the+Earth+Stood+Still&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Who Fell to Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Who+Fell+to+Earth&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Forbidden Planet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Forbidden+Planet&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The War of the Worlds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+War+of+the+Worlds&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waterworld… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waterworld&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Westworld… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Westworld&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ishtar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ishtar&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heaven's Gate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heaven%27s+Gate&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Seconds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Seconds&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Quatermass and the Pit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Quatermass+and+the+Pit&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Black Hole… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Black+Hole&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Starman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Starman&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dreamscape… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dreamscape&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Escape from the Planet of the Apes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Escape+from+the+Planet+of+the+Apes&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fahrenheit 451… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fahrenheit+451&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Outland… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Outland&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Voyage to the End of the Universe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Voyage+to+the+End+of+the+Universe&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Day of the Triffids… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Day+of+the+Triffids&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rollerball… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rollerball&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alphaville… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alphaville&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sleeper… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sleeper&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Love and Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Love+and+Death&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Destination Moon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Destination+Moon&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Starfighter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Starfighter&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When Worlds Collide… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+Worlds+Collide&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Baise-moi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Baise-moi&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ghost in the Shell 2: Innocence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ghost+in+the+Shell+2%3A+Innocence&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sky Crawlers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sky+Crawlers&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stoker… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stoker&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dog Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dog+Days&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Dog Days -INFO:root:Processing Import/Export… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Import%2FExport&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paradise: Faith… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paradise%3A+Faith&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paradise: Hope… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paradise%3A+Hope&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paradise: Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paradise%3A+Love&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Trial of Joan of Arc… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Trial+of+Joan+of+Arc&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Goodnight, Mister Tom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Goodnight%2C+Mister+Tom&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Eagle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Eagle&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coriolanus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coriolanus&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ironclad… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ironclad&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Misery… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Misery&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stand by Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stand+by+Me&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Best in Show… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Best+in+Show&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Mighty Wind… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Mighty+Wind&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waiting for Guffman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waiting+for+Guffman&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It's All Gone Pete Tong… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It%27s+All+Gone+Pete+Tong&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rutles: All You Need Is Cash… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rutles%3A+All+You+Need+Is+Cash&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zelig… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zelig&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fubar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fubar&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Darjeeling Limited… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Darjeeling+Limited&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Without a Stitch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Without+a+Stitch&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Killer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Killer&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mitch Hedberg: Mitch All Together… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mitch+Hedberg%3A+Mitch+All+Together&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Greg Giraldo: Midlife Vices… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Greg+Giraldo%3A+Midlife+Vices&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Louis C.K.: Live at the Beacon Theater… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Louis+C.K.%3A+Live+at+the+Beacon+Theater&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Louis C.K.: Oh My God… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Louis+C.K.%3A+Oh+My+God&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Louis C.K.: Chewed Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Louis+C.K.%3A+Chewed+Up&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Talking Funny… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Talking+Funny&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Louis C.K.: Shameless… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Louis+C.K.%3A+Shameless&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Louis C.K.: Hilarious… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Louis+C.K.%3A+Hilarious&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Joe Rogan: Live from the Tabernacle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Joe+Rogan%3A+Live+from+the+Tabernacle&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Joe Rogan: Talking Monkeys in Space… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Joe+Rogan%3A+Talking+Monkeys+in+Space&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Joe Rogan: Live… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Joe+Rogan%3A+Live&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Moneyball… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Moneyball&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Beauty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Beauty&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Trench… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Trench&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Public Enemies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Public+Enemies&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Winter War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Winter+War&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Battle of the Sexes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Battle+of+the+Sexes&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ping Pong… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ping+Pong&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing TT3D: Closer to the Edge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=TT3D%3A+Closer+to+the+Edge&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oil City Confidential… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oil+City+Confidential&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It's Impossible to Learn to Plow by Reading Books… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It%27s+Impossible+to+Learn+to+Plow+by+Reading+Books&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The North Pole Deception… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+North+Pole+Deception&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Room in Rome… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Room+in+Rome&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Martyrs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Martyrs&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing They Call Us Misfits… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=They+Call+Us+Misfits&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Respectable Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Respectable+Life&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Misfits to Yuppies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Misfits+to+Yuppies&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Real Young Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Real+Young+Girl&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Turn Me On, Dammit!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Turn+Me+On%2C+Dammit%21&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Realm of the Senses… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Realm+of+the+Senses&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Last Tango in Paris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Last+Tango+in+Paris&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Devil in the Flesh… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Devil+in+the+Flesh&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Devil in the Flesh -INFO:root:Processing The Life of Jesus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Life+of+Jesus&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Romance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Romance&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pola X… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pola+X&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Intimacy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Intimacy&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ken Park… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ken+Park&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anatomy of Hell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anatomy+of+Hell&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 9 Songs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=9+Songs&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All About Anna… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+About+Anna&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shortbus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shortbus&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rob Roy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rob+Roy&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 1612: Chronicles of the Dark Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=1612%3A+Chronicles+of+the+Dark+Time&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Insider… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Insider&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wrestler… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wrestler&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Knightriders… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Knightriders&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White House Down… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+House+Down&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Johnny Got His Gun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Johnny+Got+His+Gun&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Pink Panther… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Pink+Panther&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gold… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gold&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Shadows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Shadows&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Much Ado About Nothing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Much+Ado+About+Nothing&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cinema Snob Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cinema+Snob+Movie&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paranoia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paranoia&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Paranoia -INFO:root:Processing Page One: Inside the New York Times… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Page+One%3A+Inside+the+New+York+Times&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Goya's Ghosts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Goya%27s+Ghosts&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hornblower: The Frogs and the Lobsters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hornblower%3A+The+Frogs+and+the+Lobsters&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cousin Bette… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cousin+Bette&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Affair of the Necklace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Affair+of+the+Necklace&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Start the Revolution Without Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Start+the+Revolution+Without+Me&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Tale of Two Cities… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Tale+of+Two+Cities&include_adult=True&year=1935 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hornblower: The Even Chance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hornblower%3A+The+Even+Chance&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Orphans of the Storm… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Orphans+of+the+Storm&include_adult=True&year=1921 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jefferson in Paris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jefferson+in+Paris&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marie Antoinette… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marie+Antoinette&include_adult=True&year=1938 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Marseillaise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Marseillaise&include_adult=True&year=1938 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marie Antoinette… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marie+Antoinette&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hornblower: The Examination for Lieutenant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hornblower%3A+The+Examination+for+Lieutenant&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Reign of Terror… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Reign+of+Terror&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lady and the Duke… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lady+and+the+Duke&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The French Revolution… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+French+Revolution&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lady Oscar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lady+Oscar&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Tale of Two Cities… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Tale+of+Two+Cities&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Tale of Two Cities… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Tale+of+Two+Cities&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Night of Varennes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Night+of+Varennes&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chouans!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chouans%21&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Royalists… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Royalists&include_adult=True&year=1947 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Scarlet Pimpernel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Scarlet+Pimpernel&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Scaramouche… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Scaramouche&include_adult=True&year=1952 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Devil Who Limped… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Devil+Who+Limped&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cheech & Chong's The Corsican Brothers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cheech+%26+Chong%27s+The+Corsican+Brothers&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ridicule… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ridicule&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Austrian… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Austrian&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Beloved Rogue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Beloved+Rogue&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sade… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sade&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Quills… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Quills&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dangerous Exile… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dangerous+Exile&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Is Paris Burning?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Is+Paris+Burning%3F&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lucie Aubrac… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lucie+Aubrac&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Train… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Train&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Don't Look Now... We're Being Shot At!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Don%27t+Look+Now...+We%27re+Being+Shot+At%21&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Female Agents… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Female+Agents&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Blood of Others… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Blood+of+Others&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Charlotte Gray… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Charlotte+Gray&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sorrow and the Pity… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sorrow+and+the+Pity&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Carve Her Name with Pride… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Carve+Her+Name+with+Pride&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Flame & Citron… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Flame+%26+Citron&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lacombe, Lucien… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lacombe%2C+Lucien&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Operation Amsterdam… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Operation+Amsterdam&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Odette… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Odette&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Max Manus: Man of War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Max+Manus%3A+Man+of+War&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Password Is Courage… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Password+Is+Courage&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Army of Crime… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Army+of+Crime&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Swing Kids… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Swing+Kids&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Edelweiss Pirates… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Edelweiss+Pirates&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Heroes of Telemark… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Heroes+of+Telemark&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Silence of the Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Silence+of+the+Sea&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Safe Conduct… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safe+Conduct&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Le Corbeau… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Le+Corbeau&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mr. Klein… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mr.+Klein&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Self-Made Hero… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Self-Made+Hero&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mr. Orchid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mr.+Orchid&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Les Miserables… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Les+Miserables&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hiroshima Mon Amour… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hiroshima+Mon+Amour&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Two of Us… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Two+of+Us&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rules of the Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rules+of+the+Game&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chronicle of a Summer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chronicle+of+a+Summer&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Port of Shadows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Port+of+Shadows&include_adult=True&year=1938 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Devil's Envoys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Devil%27s+Envoys&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sisters in Resistance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sisters+in+Resistance&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Centurion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Centurion&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing King Arthur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King+Arthur&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marketa Lazarová… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marketa+Lazarov%C3%A1&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Notorious… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Notorious&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Troll Hunter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Troll+Hunter&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rare Exports: A Christmas Tale… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rare+Exports%3A+A+Christmas+Tale&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Official Rare Exports Inc. Safety Instructions 2005… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Official+Rare+Exports+Inc.+Safety+Instructions+2005&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Conspiracy Theory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Conspiracy+Theory&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing On the Road… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=On+the+Road&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Semerah Padi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Semerah+Padi&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When the Tenth Month Comes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+the+Tenth+Month+Comes&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Land of Sorrows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Land+of+Sorrows&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Harvest: 3,000 Years… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Harvest%3A+3%2C000+Years&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life Is Rosy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life+Is+Rosy&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Law… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Law&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Destiny… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Destiny&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A River Called Titas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+River+Called+Titas&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wall&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Wall -INFO:root:Processing The Shop on Main Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Shop+on+Main+Street&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rio Bravo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rio+Bravo&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The 40 Year Old Virgin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+40+Year+Old+Virgin&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hundhotellet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hundhotellet&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Renaissance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Renaissance&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Cat in Paris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Cat+in+Paris&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zarafa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zarafa&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chico & Rita… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chico+%26+Rita&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Masters of Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Masters+of+Time&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When the Wind Blows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+the+Wind+Blows&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gandahar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gandahar&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Animal Farm… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Animal+Farm&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Felidae… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Felidae&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Unicorn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Unicorn&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nocturna… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nocturna&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Secret of Kells… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Secret+of+Kells&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Pop… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Pop&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rock & Rule… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rock+%26+Rule&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coraline… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coraline&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cats Don't Dance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cats+Don%27t+Dance&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hedgehog in the Fog… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hedgehog+in+the+Fog&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tale of Tales… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tale+of+Tales&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Father and Daughter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Father+and+Daughter&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Son of the White Mare… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Son+of+the+White+Mare&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hobo with a Shotgun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hobo+with+a+Shotgun&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing McCabe & Mrs. Miller… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=McCabe+%26+Mrs.+Miller&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Shooting… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Shooting&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wild Bill… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wild+Bill&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Primal Fear… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Primal+Fear&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ip Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ip+Man&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Temptation of Christ… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Temptation+of+Christ&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sharknado… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sharknado&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Golem: How He Came into the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Golem%3A+How+He+Came+into+the+World&include_adult=True&year=1920 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kill List… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kill+List&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mystery Train… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mystery+Train&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wizards of the Lost Kingdom II… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wizards+of+the+Lost+Kingdom+II&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Love Alaska… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Love+Alaska&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for I Love Alaska -INFO:root:Processing The Captain from Kopenick… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Captain+from+Kopenick&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caddyshack… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Caddyshack&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Happy Gilmore… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Happy+Gilmore&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 50 First Dates… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=50+First+Dates&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hotel Transylvania… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hotel+Transylvania&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Billy Madison… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Billy+Madison&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ringer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ringer&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Air Force One… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Air+Force+One&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Magician… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Magician&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing On the Waterfront… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=On+the+Waterfront&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Modern Times… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Modern+Times&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Yor, the Hunter from the Future… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Yor%2C+the+Hunter+from+the+Future&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Prince of the City… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Prince+of+the+City&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Song of the South… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Song+of+the+South&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gun Crazy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gun+Crazy&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Capote… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Capote&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Serpico… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Serpico&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Conversation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Conversation&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Klute… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Klute&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Michael Clayton… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Michael+Clayton&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Band Called Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Band+Called+Death&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tootsie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tootsie&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fruitvale Station… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fruitvale+Station&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Late Spring… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Late+Spring&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Floating Weeds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Floating+Weeds&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Early Summer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Early+Summer&include_adult=True&year=1951 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ringu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ringu&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Ringu -INFO:root:Processing Ju-on: The Curse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ju-on%3A+The+Curse&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 25th Hour… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=25th+Hour&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sightseers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sightseers&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kings of Summer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kings+of+Summer&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stories We Tell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stories+We+Tell&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pacific Rim… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pacific+Rim&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dante's Peak… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dante%27s+Peak&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Volcano… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Volcano&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Towering Inferno… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Towering+Inferno&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zero Hour!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zero+Hour%21&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Society of the Spectacle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Society+of+the+Spectacle&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Society of the Spectacle -INFO:root:Processing Bloodlust… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bloodlust&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing L.A. Zombie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=L.A.+Zombie&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for L.A. Zombie -INFO:root:Processing The Cow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cow&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Steal Secrets: The Story of WikiLeaks… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Steal+Secrets%3A+The+Story+of+WikiLeaks&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bumfights: Cause for Concern… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bumfights%3A+Cause+for+Concern&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Have a Pope… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Have+a+Pope&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Caiman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Caiman&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mass Is Over… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mass+Is+Over&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing To Each His Own Cinema… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=To+Each+His+Own+Cinema&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It Is Fine! Everything Is Fine.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It+Is+Fine%21+Everything+Is+Fine.&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+Time&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nerds 2.0.1: A Brief History of the Internet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nerds+2.0.1%3A+A+Brief+History+of+the+Internet&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Nerds 2.0.1: A Brief History of the Internet -INFO:root:Processing Steal This Film… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Steal+This+Film&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Revolution OS… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Revolution+OS&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Computer Chess… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Computer+Chess&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing One Hour Photo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=One+Hour+Photo&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Few Good Men… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Few+Good+Men&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Robot Jox… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Robot+Jox&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sleepless in Seattle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sleepless+in+Seattle&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Killer Joe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Killer+Joe&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Spine Tingler! The William Castle Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Spine+Tingler%21+The+William+Castle+Story&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 13 Ghosts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=13+Ghosts&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing House on Haunted Hill… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=House+on+Haunted+Hill&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Macabre… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Macabre&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mr. Sardonicus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mr.+Sardonicus&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Homicidal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Homicidal&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Tingler… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Tingler&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hyperland… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hyperland&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Onion Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Onion+Movie&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pirates of Silicon Valley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pirates+of+Silicon+Valley&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Silent Enemy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Silent+Enemy&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mist&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Surviving Progress… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Surviving+Progress&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sweetgrass… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sweetgrass&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blue Is the Warmest Color… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blue+Is+the+Warmest+Color&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Past… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Past&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Little Town of Bethlehem… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Little+Town+of+Bethlehem&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cockfighter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cockfighter&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mr. Deeds Goes to Town… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mr.+Deeds+Goes+to+Town&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Illusionist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Illusionist&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Monsters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Monsters&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing No… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=No&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beyond the Hills… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beyond+the+Hills&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Requiem… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Requiem&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 56 Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=56+Up&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing CBGB… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=CBGB&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Point Blank… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Point+Blank&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Winged Migration… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winged+Migration&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beauty Is Embarrassing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beauty+Is+Embarrassing&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bangville Police… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bangville+Police&include_adult=True&year=1913 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cocoon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cocoon&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When We Were Kings… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+We+Were+Kings&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Leader, His Driver, and the Driver's Wife… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Leader%2C+His+Driver%2C+and+the+Driver%27s+Wife&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing One Day in September… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=One+Day+in+September&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Night Mail… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Night+Mail&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Aileen: Life and Death of a Serial Killer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Aileen%3A+Life+and+Death+of+a+Serial+Killer&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fourteen Days in May… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fourteen+Days+in+May&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Boy Whose Skin Fell Off… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Boy+Whose+Skin+Fell+Off&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fugitive… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fugitive&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Monster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Monster&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dirty Dancing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dirty+Dancing&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fist of Jesus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fist+of+Jesus&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Escape from Tomorrow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Escape+from+Tomorrow&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beau Geste… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beau+Geste&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How to Get Ahead in Advertising… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+to+Get+Ahead+in+Advertising&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Steamboat Willie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Steamboat+Willie&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing CKY… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=CKY&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Afro Samurai: Resurrection… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Afro+Samurai%3A+Resurrection&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Comedy Central Roast of Larry the Cable Guy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Comedy+Central+Roast+of+Larry+the+Cable+Guy&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Comedy Central Roast of Jeff Foxworthy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Comedy+Central+Roast+of+Jeff+Foxworthy&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Comedy Central Roast of Pamela Anderson… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Comedy+Central+Roast+of+Pamela+Anderson&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The American Astronaut… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+American+Astronaut&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Space Cowboys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Space+Cowboys&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Schizopolis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Schizopolis&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lancelot of the Lake… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lancelot+of+the+Lake&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rosa Luxemburg… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rosa+Luxemburg&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Spy Who Came in from the Cold… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Spy+Who+Came+in+from+the+Cold&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Overnight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Overnight&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing SlamNation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=SlamNation&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Miss Violence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Miss+Violence&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A2&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for A -INFO:root:Processing Bartleby… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bartleby&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Public Speaking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Public+Speaking&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life in a Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life+in+a+Day&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing OSS 117: Lost in Rio… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=OSS+117%3A+Lost+in+Rio&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Trip to the Moon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Trip+to+the+Moon&include_adult=True&year=1902 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hawking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hawking&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coonskin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coonskin&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Certain Kind of Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Certain+Kind+of+Death&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing John Dies at the End… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=John+Dies+at+the+End&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Once Upon a Time in the West… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Once+Upon+a+Time+in+the+West&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Repulsion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Repulsion&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beauty and the Beast… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beauty+and+the+Beast&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sweet Hereafter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sweet+Hereafter&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Short Film About Killing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Short+Film+About+Killing&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Peeping Tom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Peeping+Tom&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Noah… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Noah&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paradise Alley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paradise+Alley&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mummy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mummy&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Metallica: Some Kind of Monster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Metallica%3A+Some+Kind+of+Monster&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Deep Water… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deep+Water&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Were Here… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Were+Here&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blood Into Wine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blood+Into+Wine&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mummy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mummy&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 964 Pinocchio… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=964+Pinocchio&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Touch of Sin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Touch+of+Sin&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Things… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Things&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Matter of Life and Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Matter+of+Life+and+Death&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hell in the Pacific… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hell+in+the+Pacific&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Outpost… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Outpost&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Captain Phillips… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Captain+Phillips&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Blueberry Nights… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Blueberry+Nights&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All About My Mother… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+About+My+Mother&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rosetta… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rosetta&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Child… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Child&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pelle the Conqueror… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pelle+the+Conqueror&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marty&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Love at Twenty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Love+at+Twenty&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Destricted… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Destricted&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing South of Sanity… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=South+of+Sanity&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The City… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+City&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Frozen North… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Frozen+North&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing *batteries not included… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=%2Abatteries+not+included&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Battle Beyond the Stars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Battle+Beyond+the+Stars&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cherry 2000… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cherry+2000&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sphere… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sphere&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Critters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Critters&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Earth vs. the Flying Saucers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Earth+vs.+the+Flying+Saucers&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Giant Claw… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Giant+Claw&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Explorers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Explorers&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Flash Gordon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Flash+Gordon&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Flesh Gordon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Flesh+Gordon&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hidden… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hidden&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Morons from Outer Space… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Morons+from+Outer+Space&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Chronicles of Riddick… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Chronicles+of+Riddick&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Red Planet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Red+Planet&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mission to Mars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mission+to+Mars&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Brother from Another Planet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Brother+from+Another+Planet&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Spacehunter: Adventures in the Forbidden Zone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Spacehunter%3A+Adventures+in+the+Forbidden+Zone&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ice Pirates… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ice+Pirates&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Solarbabies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Solarbabies&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Things to Come… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Things+to+Come&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing This Island Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=This+Island+Earth&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fanimatrix: Run Program… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fanimatrix%3A+Run+Program&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Punisher… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Punisher&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Punisher: Dirty Laundry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Punisher%3A+Dirty+Laundry&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Punisher: War Zone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Punisher%3A+War+Zone&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Virgin Suicides… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Virgin+Suicides&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Room 237… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Room+237&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Trigger Effect… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Trigger+Effect&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Swimming to Cambodia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Swimming+to+Cambodia&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing And Everything Is Going Fine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=And+Everything+Is+Going+Fine&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gray's Anatomy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gray%27s+Anatomy&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Monster in a Box… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Monster+in+a+Box&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gamera, the Giant Monster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gamera%2C+the+Giant+Monster&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Quiz Show… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Quiz+Show&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Avanti!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Avanti%21&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The War of the Roses… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+War+of+the+Roses&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing State and Main… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=State+and+Main&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Time&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White Heat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+Heat&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sling Blade… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sling+Blade&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Deathdream… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deathdream&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing L'Atalante… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=L%27Atalante&include_adult=True&year=1934 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tampopo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tampopo&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Minbo: the Gentle Art of Japanese Extortion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Minbo%3A+the+Gentle+Art+of+Japanese+Extortion&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Angry Video Game Nerd: The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Angry+Video+Game+Nerd%3A+The+Movie&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last Seduction… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+Seduction&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Trees Lounge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Trees+Lounge&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Barfly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Barfly&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Eyes Without a Face… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Eyes+Without+a+Face&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 12 Years a Slave… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=12+Years+a+Slave&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+Death&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Name of the Rose… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Name+of+the+Rose&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Knight's Tale… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Knight%27s+Tale&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Excalibur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Excalibur&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ladyhawke… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ladyhawke&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hawk the Slayer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hawk+the+Slayer&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Accattone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Accattone&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oedipus Rex… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oedipus+Rex&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Canterbury Tales… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Canterbury+Tales&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Arabian Nights… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Arabian+Nights&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Medea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Medea&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Medea -INFO:root:Processing The Romance of Astrea and Celadon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Romance+of+Astrea+and+Celadon&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Night at Maud's… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Night+at+Maud%27s&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Tale of Winter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Tale+of+Winter&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Perceval… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Perceval&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing El Cid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=El+Cid&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fall of the Roman Empire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fall+of+the+Roman+Empire&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Valley of the Bees… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Valley+of+the+Bees&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ugetsu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ugetsu&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sansho the Bailiff… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sansho+the+Bailiff&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Throne of Blood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Throne+of+Blood&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thirty Two Short Films About Glenn Gould… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thirty+Two+Short+Films+About+Glenn+Gould&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Young Mr. Lincoln… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Young+Mr.+Lincoln&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Splendor… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Splendor&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Twist of Faith… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Twist+of+Faith&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Invisible War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Invisible+War&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sick: The Life and Death of Bob Flanagan, Supermasochist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sick%3A+The+Life+and+Death+of+Bob+Flanagan%2C+Supermasochist&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Outrage… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Outrage&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Safe House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safe+House&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Safe House -INFO:root:Processing Open Range… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Open+Range&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Old Dark House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Old+Dark+House&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lake Mungo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lake+Mungo&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waco: The Rules of Engagement… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waco%3A+The+Rules+of+Engagement&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Abduction: The Megumi Yokota Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Abduction%3A+The+Megumi+Yokota+Story&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Killing of America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Killing+of+America&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bigger Stronger Faster*… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bigger+Stronger+Faster%2A&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Just, Melvin: Just Evil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Just%2C+Melvin%3A+Just+Evil&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Camp 14: Total Control Zone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Camp+14%3A+Total+Control+Zone&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Winnebago Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winnebago+Man&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Iceman Tapes: Conversations with a Killer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Iceman+Tapes%3A+Conversations+with+a+Killer&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Video Diary of Ricardo Lopez… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Video+Diary+of+Ricardo+Lopez&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mondo Cane… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mondo+Cane&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Christiane F.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Christiane+F.&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Faraway, So Close!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Faraway%2C+So+Close%21&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Hole in the Head… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Hole+in+the+Head&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Deathmaker… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Deathmaker&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hands on a Hardbody: The Documentary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hands+on+a+Hardbody%3A+The+Documentary&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manitou's Shoe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manitou%27s+Shoe&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rabbit Hash (The Center of the Universe)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rabbit+Hash+%28The+Center+of+the+Universe%29&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Darkon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Darkon&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sweetest Sound… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sweetest+Sound&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Married to the Eiffel Tower… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Married+to+the+Eiffel+Tower&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Punk Syndrome… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Punk+Syndrome&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mother… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mother&include_adult=True&year=1926 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The End of St. Petersburg… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+End+of+St.+Petersburg&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Storm Over Asia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Storm+Over+Asia&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Way Down East… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Way+Down+East&include_adult=True&year=1920 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing V/H/S… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=V%2FH%2FS&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Amityville Horror… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Amityville+Horror&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Culpepper Cattle Co.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Culpepper+Cattle+Co.&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Summer of '42… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Summer+of+%2742&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Little Big Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Little+Big+Man&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jeremiah Johnson… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jeremiah+Johnson&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silverado… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silverado&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hang 'em High… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hang+%27em+High&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Buffalo Bill and the Indians, or Sitting Bull's History Lesson… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Buffalo+Bill+and+the+Indians%2C+or+Sitting+Bull%27s+History+Lesson&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Long Riders… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Long+Riders&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Naked Spur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Naked+Spur&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sergeant Rutledge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sergeant+Rutledge&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ballad of Little Jo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ballad+of+Little+Jo&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sons of Great Bear… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sons+of+Great+Bear&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Man from Boulevard des Capucines… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Man+from+Boulevard+des+Capucines&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lemonade Joe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lemonade+Joe&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Inn of the Sixth Happiness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Inn+of+the+Sixth+Happiness&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pumpkinhead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pumpkinhead&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Telephone Book… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Telephone+Book&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Witness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Witness&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heimat II: A Chronicle of a Generation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heimat+II%3A+A+Chronicle+of+a+Generation&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Heimat II: A Chronicle of a Generation -INFO:root:Processing The Hebrew Hammer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hebrew+Hammer&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hammer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hammer&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mishima: A Life in Four Chapters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mishima%3A+A+Life+in+Four+Chapters&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Das Boot… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Das+Boot&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing WNUF Halloween Special… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=WNUF+Halloween+Special&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ghostwatch: Behind the Curtains… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ghostwatch%3A+Behind+the+Curtains&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Minecraft: The Story of Mojang… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Minecraft%3A+The+Story+of+Mojang&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Price of Sex… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Price+of+Sex&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The 300 Spartans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+300+Spartans&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brief Encounter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brief+Encounter&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In Which We Serve… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+Which+We+Serve&include_adult=True&year=1942 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dangerous Liaisons… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dangerous+Liaisons&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Shooting Party… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Shooting+Party&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Billy Elliot… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Billy+Elliot&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Passage to India… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Passage+to+India&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Moon Is Blue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Moon+Is+Blue&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cooler… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cooler&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kevin Smith: Too Fat For 40… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kevin+Smith%3A+Too+Fat+For+40&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing An Evening with Kevin Smith… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=An+Evening+with+Kevin+Smith&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kevin Smith: Burn in Hell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kevin+Smith%3A+Burn+in+Hell&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing An Evening with Kevin Smith 2: Evening Harder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=An+Evening+with+Kevin+Smith+2%3A+Evening+Harder&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing With Great Power: The Stan Lee Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=With+Great+Power%3A+The+Stan+Lee+Story&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Small Town Gay Bar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Small+Town+Gay+Bar&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sold Out: A Threevening with Kevin Smith… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sold+Out%3A+A+Threevening+with+Kevin+Smith&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Henry & June… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Henry+%26+June&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coming Home… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coming+Home&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gas Food Lodging… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gas+Food+Lodging&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing But I'm a Cheerleader… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=But+I%27m+a+Cheerleader&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Comedian… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Comedian&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Dirty Shame… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Dirty+Shame&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Clear and Present Danger… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Clear+and+Present+Danger&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rundown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rundown&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gunner Palace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gunner+Palace&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Two Gentlemen of Verona… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Two+Gentlemen+of+Verona&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Staircase… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Staircase&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sunday Bloody Sunday… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sunday+Bloody+Sunday&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Borderline… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Borderline&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing First a Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=First+a+Girl&include_adult=True&year=1935 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Victim… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Victim&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Leather Boys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Leather+Boys&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sebastiane… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sebastiane&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nighthawks… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nighthawks&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Beautiful Laundrette… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Beautiful+Laundrette&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Young Soul Rebels… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Young+Soul+Rebels&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beautiful Thing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beautiful+Thing&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Where the Truth Lies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Where+the+Truth+Lies&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Captured… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Captured&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Colditz Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Colditz+Story&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stalag 17… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stalag+17&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Round-Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Round-Up&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Term of Trial… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Term+of+Trial&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Age of Consent… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Age+of+Consent&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All the Right Noises… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+the+Right+Noises&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for All the Right Noises -INFO:root:Processing The Black Panther… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Black+Panther&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Deep End… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deep+End&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Infernal Cauldron… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Infernal+Cauldron&include_adult=True&year=1903 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Frankenstein… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Frankenstein&include_adult=True&year=1910 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dr. Jekyll and Mr. Hyde… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dr.+Jekyll+and+Mr.+Hyde&include_adult=True&year=1920 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Dr. Jekyll and Mr. Hyde -INFO:root:Processing The Haunted House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Haunted+House&include_adult=True&year=1921 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Phantom Carriage… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Phantom+Carriage&include_adult=True&year=1921 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Häxan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=H%C3%A4xan&include_adult=True&year=1922 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Phantom of the Opera… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Phantom+of+the+Opera&include_adult=True&year=1925 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fall of the House of Usher… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fall+of+the+House+of+Usher&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Fall of the House of Usher -INFO:root:Processing Samurai I: Musashi Miyamoto… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Samurai+I%3A+Musashi+Miyamoto&include_adult=True&year=1954 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Samurai III: Duel at Ganryu Island… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Samurai+III%3A+Duel+at+Ganryu+Island&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Samurai II: Duel at Ichijoji Temple… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Samurai+II%3A+Duel+at+Ichijoji+Temple&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hidden Fortress… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hidden+Fortress&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Samurai Assassin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Samurai+Assassin&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Red Sun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Red+Sun&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lady Snowblood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lady+Snowblood&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shogun Assassin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shogun+Assassin&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Twilight Samurai… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Twilight+Samurai&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing People on Sunday… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=People+on+Sunday&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cœur fidèle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=C%C5%93ur+fid%C3%A8le&include_adult=True&year=1923 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Big Risk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Big+Risk&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pépé le Moko… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=P%C3%A9p%C3%A9+le+Moko&include_adult=True&year=1937 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Three Burials of Melquiades Estrada… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Three+Burials+of+Melquiades+Estrada&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ain't Them Bodies Saints… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ain%27t+Them+Bodies+Saints&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shadows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shadows&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Haunted Castle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Haunted+Castle&include_adult=True&year=1896 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Vampire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Vampire&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When a Woman Ascends the Stairs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+a+Woman+Ascends+the+Stairs&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rembrandt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rembrandt&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Day of Wrath… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Day+of+Wrath&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mother Joan of the Angels… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mother+Joan+of+the+Angels&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Three Musketeers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Three+Musketeers&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Three Musketeers -INFO:root:Processing Winstanley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winstanley&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Draughtsman's Contract… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Draughtsman%27s+Contract&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cyrano de Bergerac… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cyrano+de+Bergerac&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Cyrano de Bergerac -INFO:root:Processing The New World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+New+World&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stray Dog… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stray+Dog&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hitch-Hiker… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hitch-Hiker&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bitter Victory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bitter+Victory&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dry Season… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dry+Season&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fata Morgana… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fata+Morgana&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Greed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Greed&include_adult=True&year=1924 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ice Cold in Alex… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ice+Cold+in+Alex&include_adult=True&year=1958 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Automania 2000… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Automania+2000&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Three Into Two Won't Go… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Three+Into+Two+Won%27t+Go&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wet Hot American Summer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wet+Hot+American+Summer&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lars and the Real Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lars+and+the+Real+Girl&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ecstasy of Order: The Tetris Masters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ecstasy+of+Order%3A+The+Tetris+Masters&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Earl Sessions… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Earl+Sessions&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chasing Ghosts: Beyond the Arcade… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chasing+Ghosts%3A+Beyond+the+Arcade&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shy Boys: IRL… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shy+Boys%3A+IRL&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sickfuckpeople… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sickfuckpeople&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dragonslayer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dragonslayer&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rock-afire Explosion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rock-afire+Explosion&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Special When Lit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Special+When+Lit&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stevie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stevie&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life 2.0… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life+2.0&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Love Me, Love My Doll… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Love+Me%2C+Love+My+Doll&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vinyl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vinyl&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stalled… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stalled&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Stalled -INFO:root:Processing Creepshow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Creepshow&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Carrie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Carrie&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fright Night… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fright+Night&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Who Laughs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Who+Laughs&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crazy/Beautiful… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crazy%2FBeautiful&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thor: The Dark World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thor%3A+The+Dark+World&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing MouseHunt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=MouseHunt&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Diving Bell and the Butterfly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Diving+Bell+and+the+Butterfly&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Year of the Pig… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Year+of+the+Pig&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Street Fight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Street+Fight&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mugabe and the White African… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mugabe+and+the+White+African&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing TechnoCalyps… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=TechnoCalyps&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing TWA Flight 800… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=TWA+Flight+800&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Let's Make Money… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Let%27s+Make+Money&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Parking Lot Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Parking+Lot+Movie&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crawford… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crawford&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How to Die in Oregon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+to+Die+in+Oregon&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Omagh… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Omagh&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Police Mortality… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Police+Mortality&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Unclear Holocaust… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Unclear+Holocaust&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Midnight Run… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Midnight+Run&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Frances Ha… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Frances+Ha&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dangerous Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dangerous+Game&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All Is Lost… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+Is+Lost&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Purple Rose of Cairo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Purple+Rose+of+Cairo&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Umberto D.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Umberto+D.&include_adult=True&year=1952 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bright Star… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bright+Star&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Son… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Son&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tokyo Sonata… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tokyo+Sonata&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cinema Paradiso… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cinema+Paradiso&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Red Rock West… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Red+Rock+West&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pay It Forward… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pay+It+Forward&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Timecrimes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Timecrimes&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rat Pfink a Boo Boo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rat+Pfink+a+Boo+Boo&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shadow of the Vampire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shadow+of+the+Vampire&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beats Rhymes & Life: The Travels of A Tribe Called Quest… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beats+Rhymes+%26+Life%3A+The+Travels+of+A+Tribe+Called+Quest&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Good, The Bad, The Weird… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Good%2C+The+Bad%2C+The+Weird&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dobermann… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dobermann&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Narco Cultura… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Narco+Cultura&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ghost Dog: The Way of the Samurai… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ghost+Dog%3A+The+Way+of+the+Samurai&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Intacto… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Intacto&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Double Indemnity… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Double+Indemnity&include_adult=True&year=1944 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nymphomaniac: Vol. I… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nymphomaniac%3A+Vol.+I&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marooned… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marooned&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Boys Beware… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Boys+Beware&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cyber Seduction: His Secret Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cyber+Seduction%3A+His+Secret+Life&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Prophet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Prophet&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sólo con tu pareja… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=S%C3%B3lo+con+tu+pareja&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jonah Who Will Be 25 in the Year 2000… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jonah+Who+Will+Be+25+in+the+Year+2000&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Would You Rather… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Would+You+Rather&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Europa Report… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Europa+Report&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In a Year with 13 Moons… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+a+Year+with+13+Moons&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Safe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safe&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kid… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kid&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Muppet Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Muppet+Movie&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Great Muppet Caper… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Great+Muppet+Caper&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Muppet Christmas Carol… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Muppet+Christmas+Carol&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Muppet Treasure Island… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Muppet+Treasure+Island&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Singles… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Singles&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Institute… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Institute&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Solaris… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Solaris&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dolemite… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dolemite&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mi mejor enemigo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mi+mejor+enemigo&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Me @ the Zoo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Me+%40+the+Zoo&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Jazz Singer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Jazz+Singer&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Change Nothing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Change+Nothing&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Shootist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Shootist&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Town… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Town&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Quick and the Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Quick+and+the+Dead&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Appaloosa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Appaloosa&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Street Kings… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Street+Kings&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Proof of Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Proof+of+Life&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kingdom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kingdom&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death Sentence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+Sentence&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Say Anything...… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Say+Anything...&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mask… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mask&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Late Blossom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Late+Blossom&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Inside Llewyn Davis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Inside+Llewyn+Davis&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ms .45… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ms+.45&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Foodfight!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Foodfight%21&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Hustle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Hustle&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Congress… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Congress&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jesus Christ Vampire Hunter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jesus+Christ+Vampire+Hunter&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rum Diary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rum+Diary&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nefarious: Merchant of Souls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nefarious%3A+Merchant+of+Souls&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Arbor… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Arbor&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Margaret… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Margaret&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hobbit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hobbit&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lord of the Rings… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lord+of+the+Rings&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Skin I Live In… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Skin+I+Live+In&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Meek's Cutoff… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Meek%27s+Cutoff&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Martha Marcy May Marlene… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Martha+Marcy+May+Marlene&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Flowers of Shanghai… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Flowers+of+Shanghai&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Real Steel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Real+Steel&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Girl with a Pearl Earring… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Girl+with+a+Pearl+Earring&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing First Cousin Once Removed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=First+Cousin+Once+Removed&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rape of the Vampire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rape+of+the+Vampire&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zombie Flesh Eaters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zombie+Flesh+Eaters&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing National Lampoon's Christmas Vacation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=National+Lampoon%27s+Christmas+Vacation&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anchorman 2: The Legend Continues… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anchorman+2%3A+The+Legend+Continues&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nonfilm… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nonfilm&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wrong Cops… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wrong+Cops&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Gamers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Gamers&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Strange Color of Your Body's Tears… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Strange+Color+of+Your+Body%27s+Tears&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Amer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Amer&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heroic Times… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heroic+Times&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Little Train Robbery… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Little+Train+Robbery&include_adult=True&year=1905 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Quest for Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Quest+for+Fire&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The White Viking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+White+Viking&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The King Is Dancing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+King+Is+Dancing&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kautokeino Rebellion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kautokeino+Rebellion&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wanderers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wanderers&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thirteen Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thirteen+Days&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Feed the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Feed+the+World&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Abendland… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Abendland&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pripyat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pripyat&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bo Burnham: What.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bo+Burnham%3A+What.&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rock n' Roll Nerd… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rock+n%27+Roll+Nerd&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tim Minchin: So Live… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tim+Minchin%3A+So+Live&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tim Minchin: Ready for This?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tim+Minchin%3A+Ready+for+This%3F&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tim Minchin and the Heritage Orchestra: Live at the Royal Albert Hall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tim+Minchin+and+the+Heritage+Orchestra%3A+Live+at+the+Royal+Albert+Hall&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thunderbirds are GO… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thunderbirds+are+GO&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Pentagon Wars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Pentagon+Wars&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thunderbird 6… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thunderbird+6&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 47 Ronin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=47+Ronin&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing At Berkeley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=At+Berkeley&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rudolph the Red-Nosed Reindeer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rudolph+the+Red-Nosed+Reindeer&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silent Light… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silent+Light&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing If It Ain't Cheap, It Ain't Punk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=If+It+Ain%27t+Cheap%2C+It+Ain%27t+Punk&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Atom Strikes!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Atom+Strikes%21&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Onibaba… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Onibaba&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Porky's… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Porky%27s&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Selfish Giant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Selfish+Giant&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dersu Uzala… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dersu+Uzala&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Space Truckers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Space+Truckers&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Krays… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Krays&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Merry Christmas, Mr. Lawrence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Merry+Christmas%2C+Mr.+Lawrence&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Batman: The Dark Knight Returns, Part 1… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Batman%3A+The+Dark+Knight+Returns%2C+Part+1&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Batman: The Dark Knight Returns, Part 2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Batman%3A+The+Dark+Knight+Returns%2C+Part+2&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Courageous… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Courageous&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing World on a Wire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World+on+a+Wire&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for World on a Wire -INFO:root:Processing Aachi and Ssipak… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Aachi+and+Ssipak&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All Night Gaming… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+Night+Gaming&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rififi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rififi&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing With Byrd at the South Pole… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=With+Byrd+at+the+South+Pole&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Navajo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Navajo&include_adult=True&year=1952 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Missing in Action… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Missing+in+Action&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heist&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Killing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Killing&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Performance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Performance&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Big Bad Wolves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Big+Bad+Wolves&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fishing Without Nets… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fishing+Without+Nets&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hackers 95… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hackers+95&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ghostwatch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ghostwatch&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Big Money Rustlas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Big+Money+Rustlas&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wind Rises… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wind+Rises&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Foreign Parts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Foreign+Parts&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Beach… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Beach&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Run Ronnie Run… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Run+Ronnie+Run&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Innerspace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Innerspace&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vera Drake… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vera+Drake&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lords of Dogtown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lords+of+Dogtown&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Appointments of Dennis Jennings… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Appointments+of+Dennis+Jennings&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Steven Wright Special… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Steven+Wright+Special&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Steven Wright: When the Leaves Blow Away… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Steven+Wright%3A+When+the+Leaves+Blow+Away&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Boyhood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Boyhood&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Seven Year Itch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Seven+Year+Itch&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Spirit of the Beehive… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Spirit+of+the+Beehive&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sin Nombre… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sin+Nombre&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lost Battalion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lost+Battalion&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cold Mountain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cold+Mountain&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Byzantium… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Byzantium&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Penn & Teller Get Killed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Penn+%26+Teller+Get+Killed&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Painters Painting… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Painters+Painting&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 24 Exposures… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=24+Exposures&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silver Bullets… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silver+Bullets&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tetsuo: The Iron Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tetsuo%3A+The+Iron+Man&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Broken Blossoms… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Broken+Blossoms&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing One Couch at a Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=One+Couch+at+a+Time&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing InRealLife… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=InRealLife&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing North Dallas Forty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=North+Dallas+Forty&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Antitrust… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Antitrust&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sneakers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sneakers&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Swordfish… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Swordfish&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Micro Men… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Micro+Men&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hackers: Wizards of the Electronic Age… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hackers%3A+Wizards+of+the+Electronic+Age&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Code Rush… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Code+Rush&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hollow Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hollow+Man&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The 4th Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+4th+Man&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Turkish Delight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Turkish+Delight&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Flesh + Blood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Flesh+%2B+Blood&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tim's Vermeer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tim%27s+Vermeer&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing What We Do Is Secret… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=What+We+Do+Is+Secret&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Frailty… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Frailty&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ravenous… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ravenous&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Last of the Unjust… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Last+of+the+Unjust&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sobibor, October 14, 1943, 4 p.m.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sobibor%2C+October+14%2C+1943%2C+4+p.m.&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Star Spangled to Death… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Star+Spangled+to+Death&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Please Give… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Please+Give&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Testament… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Testament&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gertie the Dinosaur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gertie+the+Dinosaur&include_adult=True&year=1914 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Our RoboCop Remake… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Our+RoboCop+Remake&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Weather Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Weather+Man&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ice Harvest… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ice+Harvest&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Running Scared… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Running+Scared&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ice Storm… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ice+Storm&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Simple Plan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Simple+Plan&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Head-On… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Head-On&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Transcendent Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Transcendent+Man&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing RoboCop 2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=RoboCop+2&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Won't Grow Old Together… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Won%27t+Grow+Old+Together&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mad Detective… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mad+Detective&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Drug War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Drug+War&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing After Porn Ends… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=After+Porn+Ends&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Player… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Player&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Professionals… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Professionals&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Prohibition… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Prohibition&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Prohibition -INFO:root:Processing Footnote… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Footnote&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Rabbi's Cat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Rabbi%27s+Cat&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Certified Copy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Certified+Copy&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kid with a Bike… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kid+with+a+Bike&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Single Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Single+Man&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The World According to Monsanto… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+World+According+to+Monsanto&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Howl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Howl&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Howl -INFO:root:Processing 2Everything2Terrible2: Tokyo Drift… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=2Everything2Terrible2%3A+Tokyo+Drift&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Everything Is Terrible! The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Everything+Is+Terrible%21+The+Movie&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Biutiful… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Biutiful&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Incendies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Incendies&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Polytechnique… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Polytechnique&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Am Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Am+Love&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mary and Max… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mary+and+Max&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Experiments in the Revival of Organisms… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Experiments+in+the+Revival+of+Organisms&include_adult=True&year=1940 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Rabbia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Rabbia&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Man of Tai Chi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Man+of+Tai+Chi&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Side by Side… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Side+by+Side&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nebraska… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nebraska&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Immortal Augustus Gladstone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Immortal+Augustus+Gladstone&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Omar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Omar&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death Hunt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+Hunt&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Gospel According to St. Matthew… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Gospel+According+to+St.+Matthew&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Gospel According to St. Matthew -INFO:root:Processing Hell House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hell+House&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ernest & Celestine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ernest+%26+Celestine&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Flowers of St. Francis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Flowers+of+St.+Francis&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jodorowsky's Dune… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jodorowsky%27s+Dune&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Agora… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Agora&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lucifer Rising… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lucifer+Rising&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing May… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=May&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pandorum… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pandorum&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Poultrygeist: Night of the Chicken Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Poultrygeist%3A+Night+of+the+Chicken+Dead&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Signal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Signal&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Signal -INFO:root:Processing House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=House&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mindscape of Alan Moore… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mindscape+of+Alan+Moore&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Angel Heart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Angel+Heart&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lady Eve… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lady+Eve&include_adult=True&year=1941 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Music for One Apartment and Six Drummers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Music+for+One+Apartment+and+Six+Drummers&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Missing Picture… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Missing+Picture&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Comedian… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Comedian&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing We Are Wizards… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=We+Are+Wizards&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cold Lands… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cold+Lands&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing God Told Me To… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=God+Told+Me+To&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bound for Glory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bound+for+Glory&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Branded to Kill… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Branded+to+Kill&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Himiko… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Himiko&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Midnight Clear… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Midnight+Clear&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Colt Is My Passport… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Colt+Is+My+Passport&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Veronica Mars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Veronica+Mars&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing They Came Back… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=They+Came+Back&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Element of Crime… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Element+of+Crime&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Boss of It All… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Boss+of+It+All&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Epidemic… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Epidemic&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stripped… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stripped&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Stripped -INFO:root:Processing Beyond the Valley of the Dolls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beyond+the+Valley+of+the+Dolls&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nowhere to Hide… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nowhere+to+Hide&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead or Alive… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+or+Alive&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Raid 2… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Raid+2&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Odessa File… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Odessa+File&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Parallax View… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Parallax+View&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Darling Clementine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Darling+Clementine&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Spider's Stratagem… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Spider%27s+Stratagem&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sessions… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sessions&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nameless Gangster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nameless+Gangster&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Free to Play… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Free+to+Play&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rust and Bone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rust+and+Bone&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Reality… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Reality&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Elena… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Elena&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hunt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hunt&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Only Lovers Left Alive… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Only+Lovers+Left+Alive&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Metropolitan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Metropolitan&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Highball… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Highball&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Highball -INFO:root:Processing The Dust Bowl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dust+Bowl&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Dust Bowl -INFO:root:Processing The Lawnmower Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lawnmower+Man&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Incubus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Incubus&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Final Member… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Final+Member&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Whistle and I'll Come to You… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Whistle+and+I%27ll+Come+to+You&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Stone Tape… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Stone+Tape&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Borderlands… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Borderlands&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Postman Always Rings Twice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Postman+Always+Rings+Twice&include_adult=True&year=1946 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blue Ruin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blue+Ruin&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Leningrad Cowboys Go America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Leningrad+Cowboys+Go+America&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Young & Beautiful… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Young+%26+Beautiful&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Mouth of Madness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Mouth+of+Madness&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Le Havre… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Le+Havre&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Friday Night… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Friday+Night&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Le Bonheur… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Le+Bonheur&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bad Timing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bad+Timing&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Last Night… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Last+Night&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Birthday Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Birthday+Girl&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Skins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Skins&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ali: Fear Eats the Soul… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ali%3A+Fear+Eats+the+Soul&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Protector… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Protector&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+Girl&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nick of Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nick+of+Time&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Clock… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Clock&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hulk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hulk&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Master of the House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Master+of+the+House&include_adult=True&year=1925 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Reign of Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Reign+of+Fire&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Knight and Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Knight+and+Day&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Land of the Lost… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Land+of+the+Lost&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lost World: Jurassic Park… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lost+World%3A+Jurassic+Park&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing L'Âge d'Or… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=L%27%C3%82ge+d%27Or&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Careful… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Careful&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Henry: Portrait of a Serial Killer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Henry%3A+Portrait+of+a+Serial+Killer&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Millennium Mambo… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Millennium+Mambo&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Way… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Way&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mr. Nobody… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mr.+Nobody&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing King Kong vs. Godzilla… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King+Kong+vs.+Godzilla&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Invasion of Astro-Monster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Invasion+of+Astro-Monster&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Godzilla vs. Mechagodzilla… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Godzilla+vs.+Mechagodzilla&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Godzilla: Final Wars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Godzilla%3A+Final+Wars&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Extraordinary Adventures of Adèle Blanc-Sec… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Extraordinary+Adventures+of+Ad%C3%A8le+Blanc-Sec&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Still Walking… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Still+Walking&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Art School Confidential… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Art+School+Confidential&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hell's Angels… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hell%27s+Angels&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dawn Patrol… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dawn+Patrol&include_adult=True&year=1930 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Veteran… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Veteran&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Name Is Nobody… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Name+Is+Nobody&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Danger: Diabolik… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Danger%3A+Diabolik&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Maverick… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Maverick&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 800 Bullets… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=800+Bullets&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mesrine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mesrine&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Michael Collins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Michael+Collins&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White Tiger… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+Tiger&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chosin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chosin&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Whose Mind Exploded… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Whose+Mind+Exploded&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Richard Pryor: Live in Concert… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Richard+Pryor%3A+Live+in+Concert&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing El Dorado… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=El+Dorado&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Destry Rides Again… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Destry+Rides+Again&include_adult=True&year=1939 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Eddie Murphy Raw… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Eddie+Murphy+Raw&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sarah Silverman: Jesus Is Magic… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sarah+Silverman%3A+Jesus+Is+Magic&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Norm Macdonald: Me Doing Standup… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Norm+Macdonald%3A+Me+Doing+Standup&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waiting for Lightning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waiting+for+Lightning&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dirties… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dirties&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stake Land… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stake+Land&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Time of the Wolf… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Time+of+the+Wolf&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Leviathan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Leviathan&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Leviathan -INFO:root:Processing Burning Bush… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Burning+Bush&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Manakamana… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Manakamana&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Europa Europa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Europa+Europa&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Olivier, Olivier… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Olivier%2C+Olivier&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The World, the Flesh and the Devil… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+World%2C+the+Flesh+and+the+Devil&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kops… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kops&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Kops -INFO:root:Processing Chimes at Midnight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chimes+at+Midnight&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Grand… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Grand&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Signal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Signal&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mind Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mind+Game&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hercules Returns… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hercules+Returns&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Children of Paradise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Children+of+Paradise&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heavy Metal Parking Lot… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heavy+Metal+Parking+Lot&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Policeman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Policeman&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Esther Kahn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Esther+Kahn&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Choke… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Choke&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Big Heat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Big+Heat&include_adult=True&year=1953 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Far from Heaven… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Far+from+Heaven&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Norte, The End of History… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Norte%2C+The+End+of+History&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Welcome, or No Trespassing… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Welcome%2C+or+No+Trespassing&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Emperor's New Groove… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Emperor%27s+New+Groove&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Detour… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Detour&include_adult=True&year=1945 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sunset Boulevard… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sunset+Boulevard&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing High and Low… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=High+and+Low&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lawless Land… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lawless+Land&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Future-Kill… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Future-Kill&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Junebug… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Junebug&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Discreet Charm of the Bourgeoisie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Discreet+Charm+of+the+Bourgeoisie&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Exterminating Angel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Exterminating+Angel&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caught… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Caught&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Close-Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Close-Up&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crimson Gold… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crimson+Gold&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Closed Curtain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Closed+Curtain&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing L'Avventura… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=L%27Avventura&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Godzilla… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Godzilla&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Godzilla -INFO:root:Processing The Immigrant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Immigrant&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Intruder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Intruder&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Intruder -INFO:root:Processing Six-String Samurai… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Six-String+Samurai&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing From Beyond… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=From+Beyond&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing King and Country… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King+and+Country&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black Rain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+Rain&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Black Rain -INFO:root:Processing Overlord… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Overlord&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Oh! What a Lovely War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Oh%21+What+a+Lovely+War&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dangerous Acts Starring the Unstable Elements of Belarus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dangerous+Acts+Starring+the+Unstable+Elements+of+Belarus&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kiss the Water… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kiss+the+Water&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing As the Palaces Burn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=As+the+Palaces+Burn&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 20 Feet from Stardom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=20+Feet+from+Stardom&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Punk Singer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Punk+Singer&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Next Goal Wins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Next+Goal+Wins&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Story of Children and Film… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Story+of+Children+and+Film&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The First Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+First+Movie&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Story of Film: An Odyssey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Story+of+Film%3A+An+Odyssey&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for The Story of Film: An Odyssey -INFO:root:Processing Internet Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Internet+Story&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Transformers: The Premake… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Transformers%3A+The+Premake&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Frank… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Frank&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nostalgia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nostalgia&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Arn: The Knight Templar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Arn%3A+The+Knight+Templar&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Run & Jump… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Run+%26+Jump&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Diggers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Diggers&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black Mama, White Mama… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+Mama%2C+White+Mama&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Papillon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Papillon&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Birdman of Alcatraz… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Birdman+of+Alcatraz&include_adult=True&year=1962 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Popeye… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Popeye&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing World's Greatest Dad… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World%27s+Greatest+Dad&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cadillac Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cadillac+Man&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The World According to Garp… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+World+According+to+Garp&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mrs. Parker and the Vicious Circle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mrs.+Parker+and+the+Vicious+Circle&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Exotica… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Exotica&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Paper… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Paper&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In Hell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+Hell&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death Race… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+Race&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Unleashed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Unleashed&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Unleashed -INFO:root:Processing Passenger 57… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Passenger+57&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Superstar: The Karen Carpenter Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Superstar%3A+The+Karen+Carpenter+Story&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Velvet Goldmine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Velvet+Goldmine&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I'm Not There… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I%27m+Not+There&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chronicle of Anna Magdalena Bach… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chronicle+of+Anna+Magdalena+Bach&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing What's Love Got to Do with It… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=What%27s+Love+Got+to+Do+with+It&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Last Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Last+Days&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Great Balls of Fire!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Great+Balls+of+Fire%21&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Artists and Models… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Artists+and+Models&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Elephant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Elephant&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Spanish Prisoner… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Spanish+Prisoner&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alone in the Zone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alone+in+the+Zone&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alone in the Zone 2: Back to Chernobyl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alone+in+the+Zone+2%3A+Back+to+Chernobyl&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Permanent Midnight… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Permanent+Midnight&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Changeling… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Changeling&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wicked City… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wicked+City&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I've Loved You So Long… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I%27ve+Loved+You+So+Long&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Eldorado… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Eldorado&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Eldorado -INFO:root:Processing Three Monkeys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Three+Monkeys&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Funny Games… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Funny+Games&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Revanche… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Revanche&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Our Idiot Brother… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Our+Idiot+Brother&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enemy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enemy&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Enemy -INFO:root:Processing Proxy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Proxy&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Matewan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Matewan&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Men in Hope… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Men+in+Hope&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Forest of the Hanged… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Forest+of+the+Hanged&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blue Spring… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blue+Spring&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ROCINHA: Daylight of a Favela… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=ROCINHA%3A+Daylight+of+a+Favela&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tundra… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tundra&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Aral, Fishing in an Invisible Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Aral%2C+Fishing+in+an+Invisible+Sea&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Solitude at the End of the World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Solitude+at+the+End+of+the+World&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hunters Since the Beginning of Time… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hunters+Since+the+Beginning+of+Time&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Electric Boogaloo: The Wild, Untold Story of Cannon Films… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Electric+Boogaloo%3A+The+Wild%2C+Untold+Story+of+Cannon+Films&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mommy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mommy&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Trespassing Bergman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Trespassing+Bergman&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Buddha's Lost Children… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Buddha%27s+Lost+Children&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Project Grizzly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Project+Grizzly&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gebo and the Shadow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gebo+and+the+Shadow&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Finding Vivian Maier… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Finding+Vivian+Maier&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing See You Next Tuesday… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=See+You+Next+Tuesday&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Interstellar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Interstellar&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alice, Sweet Alice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alice%2C+Sweet+Alice&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Night of the Creeps… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Night+of+the+Creeps&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Man-Made Monster… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Man-Made+Monster&include_adult=True&year=1941 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Black Cat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Black+Cat&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Vampire Lovers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Vampire+Lovers&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Walking Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Walking+Dead&include_adult=True&year=1936 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rodan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rodan&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bram Stoker's Dracula… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bram+Stoker%27s+Dracula&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Doctor X… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Doctor+X&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 2010… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=2010&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing What Now? Remind Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=What+Now%3F+Remind+Me&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Insidious… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Insidious&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Murders in the Rue Morgue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Murders+in+the+Rue+Morgue&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tourist Trap… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tourist+Trap&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Island of Lost Souls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Island+of+Lost+Souls&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mighty Joe Young… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mighty+Joe+Young&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for It -INFO:root:Processing The Night Walker… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Night+Walker&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Trick 'r Treat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Trick+%27r+Treat&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Maps to the Stars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Maps+to+the+Stars&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Germany Year Zero… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Germany+Year+Zero&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Golden Dream… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Golden+Dream&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Belle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Belle&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Babadook… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Babadook&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nine to Five… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nine+to+Five&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Kingdom of Dreams and Madness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Kingdom+of+Dreams+and+Madness&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dark Horse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dark+Horse&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Maidan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Maidan&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White God… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+God&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing F for Fake… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=F+for+Fake&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 9/11… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=9%2F11&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It Follows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It+Follows&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gangster No. 1… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gangster+No.+1&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Disappearance of Alice Creed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Disappearance+of+Alice+Creed&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Better Things… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Better+Things&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bypass… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bypass&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Tribe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Tribe&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Song of the Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Song+of+the+Sea&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Boxtrolls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Boxtrolls&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Everything is Terrible! Does the Hip-Hop Vol. 1: Gettin' A Bad Rap!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Everything+is+Terrible%21+Does+the+Hip-Hop+Vol.+1%3A+Gettin%27+A+Bad+Rap%21&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tom at the Farm… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tom+at+the+Farm&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Simon Killer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Simon+Killer&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Benny's Video… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Benny%27s+Video&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Groove… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Groove&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Go… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Go&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing High-Rise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=High-Rise&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing What We Do in the Shadows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=What+We+Do+in+the+Shadows&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lost Soul: The Doomed Journey of Richard Stanley's “Island of Dr. Moreau”… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lost+Soul%3A+The+Doomed+Journey+of+Richard+Stanley%27s+%E2%80%9CIsland+of+Dr.+Moreau%E2%80%9D&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Welcome to Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Welcome+to+Me&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Victoria… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Victoria&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Victoria -INFO:root:Processing Mississippi Grind… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mississippi+Grind&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ai Weiwei: The Fake Case… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ai+Weiwei%3A+The+Fake+Case&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coach Zoran and His African Tigers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coach+Zoran+and+His+African+Tigers&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Summit… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Summit&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Notorious Mr. Bout… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Notorious+Mr.+Bout&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cutie and the Boxer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cutie+and+the+Boxer&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Do I Sound Gay?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Do+I+Sound+Gay%3F&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Under Milk Wood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Under+Milk+Wood&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anomalisa… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anomalisa&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shaun the Sheep Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shaun+the+Sheep+Movie&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Son of Saul… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Son+of+Saul&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing To Whom Does the World Belong?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=To+Whom+Does+the+World+Belong%3F&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for To Whom Does the World Belong? -INFO:root:Processing Future Shock! The Story of 2000AD… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Future+Shock%21+The+Story+of+2000AD&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Ecstasy of Wilko Johnson… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ecstasy+of+Wilko+Johnson&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sunset Song… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sunset+Song&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brooklyn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brooklyn&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Brooklyn -INFO:root:Processing Goodbye, Dragon Inn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Goodbye%2C+Dragon+Inn&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Falling… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Falling&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Carol… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Carol&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Girlhood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Girlhood&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Girl Walks Home Alone at Night… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Girl+Walks+Home+Alone+at+Night&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Czech Dream… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Czech+Dream&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gideon's Army… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gideon%27s+Army&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kids for Cash… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kids+for+Cash&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Unknown Known… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Unknown+Known&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Central Park Five… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Central+Park+Five&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Captivated: The Trials of Pamela Smart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Captivated%3A+The+Trials+of+Pamela+Smart&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Newburgh Sting… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Newburgh+Sting&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Space Cop… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Space+Cop&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heneral Luna… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heneral+Luna&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Afghan Breakdown… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Afghan+Breakdown&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing German Concentration Camps Factual Survey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=German+Concentration+Camps+Factual+Survey&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Salaam Cinema… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Salaam+Cinema&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Loss Is to Be Expected… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Loss+Is+to+Be+Expected&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hour of the Furnaces… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hour+of+the+Furnaces&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Gleaners and I… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Gleaners+and+I&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tales of the Grim Sleeper… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tales+of+the+Grim+Sleeper&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rafea: Solar Mama… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rafea%3A+Solar+Mama&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Virunga… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Virunga&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blood of the Beasts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blood+of+the+Beasts&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Primate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Primate&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Amy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Amy&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Amy -INFO:root:Processing Buena Vista Social Club… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Buena+Vista+Social+Club&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Queen of Versailles… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Queen+of+Versailles&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The 3 Rooms of Melancholia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+3+Rooms+of+Melancholia&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pina… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pina&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Lovely Month of May… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Lovely+Month+of+May&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sisters in Law… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sisters+in+Law&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Empire of Dust… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Empire+of+Dust&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Police Tapes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Police+Tapes&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Childhood of a Leader… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Childhood+of+a+Leader&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silencing the Song: An Afghan Fallen Star… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silencing+the+Song%3A+An+Afghan+Fallen+Star&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Love & Friendship… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Love+%26+Friendship&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fan&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Fan -INFO:root:Processing Evolution… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Evolution&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tale of Tales… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tale+of+Tales&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When Marnie Was There… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+Marnie+Was+There&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mustang… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mustang&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Room… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Room&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Embrace of the Serpent… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Embrace+of+the+Serpent&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bestiary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bestiary&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heaven Knows What… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heaven+Knows+What&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Obvious Child… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Obvious+Child&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Goodbye to Language… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Goodbye+to+Language&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mistaken for Strangers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mistaken+for+Strangers&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Phoenix… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Phoenix&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gett: The Trial of Viviane Amsalem… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gett%3A+The+Trial+of+Viviane+Amsalem&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing To Take A Wife… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=To+Take+A+Wife&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Seven Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Seven+Days&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Violent… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Violent&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fool… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fool&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Art and Craft… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Art+and+Craft&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ida… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ida&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Winter Sleep… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Winter+Sleep&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Force Majeure… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Force+Majeure&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Magical Girl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Magical+Girl&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Neon Demon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Neon+Demon&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Witch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Witch&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Witch -INFO:root:Processing Bodyguards: Secret Lives from the Watchtower… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bodyguards%3A+Secret+Lives+from+the+Watchtower&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Neither Heaven Nor Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Neither+Heaven+Nor+Earth&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Nice Guys… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Nice+Guys&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Greasy Strangler… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Greasy+Strangler&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Armstrong Lie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Armstrong+Lie&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fire at Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fire+at+Sea&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A United Kingdom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+United+Kingdom&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Things to Come… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Things+to+Come&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Your Name.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Your+Name.&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Julieta… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Julieta&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Notes on Blindness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Notes+on+Blindness&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Under the Shadow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Under+the+Shadow&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+War&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Feral Heart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Feral+Heart&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Genius on Hold… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Genius+on+Hold&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Realm of the Hackers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Realm+of+the+Hackers&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Heat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Heat&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Free Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Free+Fire&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing April 9th… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=April+9th&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Get Out… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Get+Out&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Raw… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Raw&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kékszakállú… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=K%C3%A9kszak%C3%A1ll%C3%BA&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lipstick Under My Burkha… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lipstick+Under+My+Burkha&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Toni Erdmann… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Toni+Erdmann&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Red Turtle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Red+Turtle&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Levelling… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Levelling&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Loves of a Blonde… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Loves+of+a+Blonde&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Firemen's Ball… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Firemen%27s+Ball&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fall of Berlin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fall+of+Berlin&include_adult=True&year=1950 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ten Seconds to Hell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ten+Seconds+to+Hell&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nocturama… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nocturama&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Philadelphia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Philadelphia&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Liberation Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Liberation+Day&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mystic River… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mystic+River&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Afghantsi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Afghantsi&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bob Roberts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bob+Roberts&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Recount… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Recount&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life with Judy Garland: Me and My Shadows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life+with+Judy+Garland%3A+Me+and+My+Shadows&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Life with Judy Garland: Me and My Shadows -INFO:root:Processing On Her Majesty's Secret Service… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=On+Her+Majesty%27s+Secret+Service&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing From Russia with Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=From+Russia+with+Love&include_adult=True&year=1963 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Goldfinger… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Goldfinger&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing GoldenEye… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=GoldenEye&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Spy Who Loved Me… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Spy+Who+Loved+Me&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Live and Let Die… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Live+and+Let+Die&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Living Daylights… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Living+Daylights&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Pigeon Sat on a Branch Reflecting on Existence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Pigeon+Sat+on+a+Branch+Reflecting+on+Existence&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Woman Under the Influence… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Woman+Under+the+Influence&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Loving Vincent… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Loving+Vincent&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Journey's End… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Journey%27s+End&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thank You for Your Service… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thank+You+for+Your+Service&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Backdraft… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Backdraft&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cable Guy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cable+Guy&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ju-on: The Grudge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ju-on%3A+The+Grudge&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Deathwatch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deathwatch&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing BBS: The Documentary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=BBS%3A+The+Documentary&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for BBS: The Documentary -INFO:root:Processing My Childhood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Childhood&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Ain Folk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Ain+Folk&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Way Home… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Way+Home&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blade Runner 2049… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blade+Runner+2049&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing mother!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=mother%21&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Killing of a Sacred Deer… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Killing+of+a+Sacred+Deer&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Final Girls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Final+Girls&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kung Fury… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kung+Fury&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Southbound… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Southbound&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Seasons… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Seasons&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wolfpack… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wolfpack&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Going Clear: Scientology and the Prison of Belief… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Going+Clear%3A+Scientology+and+the+Prison+of+Belief&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hold Fast… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hold+Fast&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing pickAxe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=pickAxe&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Roses On My Table… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Roses+On+My+Table&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Breaking the Spell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Breaking+the+Spell&include_adult=True&year=1999 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing END:CIV… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=END%3ACIV&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Measure of a Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Measure+of+a+Man&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dheepan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dheepan&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rams… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rams&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chronic… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chronic&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Krisha… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Krisha&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Isle of Dogs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Isle+of+Dogs&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Man Push Cart… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Man+Push+Cart&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Will Follow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Will+Follow&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Shape of Water… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Shape+of+Water&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lady Bird… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lady+Bird&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Daniel & Ana… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Daniel+%26+Ana&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing After Lucia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=After+Lucia&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Do You Trust this Computer?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Do+You+Trust+this+Computer%3F&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ashens and the Quest for the Gamechild… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ashens+and+the+Quest+for+the+Gamechild&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blackboard Jungle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blackboard+Jungle&include_adult=True&year=1955 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Haywire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Haywire&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Identity… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Identity&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Surveillance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Surveillance&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Band of Outsiders… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Band+of+Outsiders&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Django… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Django&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Talking to Americans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Talking+to+Americans&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Searching… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Searching&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Director's Cut… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Director%27s+Cut&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Frontier(s)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Frontier%28s%29&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Seashell and the Clergyman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Seashell+and+the+Clergyman&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing High Tension… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=High+Tension&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing [REC]²… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=%5BREC%5D%C2%B2&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Julia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Julia&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jeanne Dielman, 23, Quai du Commerce 1080 Bruxelles… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jeanne+Dielman%2C+23%2C+Quai+du+Commerce+1080+Bruxelles&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Twelve O'Clock High… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Twelve+O%27Clock+High&include_adult=True&year=1949 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 6 Days to Air: The Making of South Park… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=6+Days+to+Air%3A+The+Making+of+South+Park&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Scientology Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Scientology+Movie&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dying to Know: Ram Dass & Timothy Leary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dying+to+Know%3A+Ram+Dass+%26+Timothy+Leary&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Of Gods and Men… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Of+Gods+and+Men&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bastards of the Party… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bastards+of+the+Party&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Escape Plan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Escape+Plan&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Meru… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Meru&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing On Her Shoulders… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=On+Her+Shoulders&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Widows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Widows&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Saturday Night and Sunday Morning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Saturday+Night+and+Sunday+Morning&include_adult=True&year=1960 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dawn Patrol… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dawn+Patrol&include_adult=True&year=1938 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Iconoclast… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Iconoclast&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wanda… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wanda&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Silkwood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Silkwood&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Daughters of the Dust… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Daughters+of+the+Dust&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Fool and His Money… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Fool+and+His+Money&include_adult=True&year=1912 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Like It Like That… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Like+It+Like+That&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wadjda… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wadjda&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thunder Road… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thunder+Road&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Suspiria… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Suspiria&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Possession… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Possession&include_adult=True&year=1981 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stranded: I've Come from a Plane That Crashed on the Mountains… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stranded%3A+I%27ve+Come+from+a+Plane+That+Crashed+on+the+Mountains&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alive… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alive&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Voyage of Time: Life's Journey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Voyage+of+Time%3A+Life%27s+Journey&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Early Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Early+Man&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Down Terrace… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Down+Terrace&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing White Material… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=White+Material&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing U.S. Go Home… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=U.S.+Go+Home&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing À Nos Amours… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=%C3%80+Nos+Amours&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Graduate First… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Graduate+First&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Portrait of a Young Girl at the End of the 60s in Brussels… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Portrait+of+a+Young+Girl+at+the+End+of+the+60s+in+Brussels&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wild Reeds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wild+Reeds&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Goodbye First Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Goodbye+First+Love&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Chocolat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chocolat&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Woman Who Left… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Woman+Who+Left&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Trouble Every Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Trouble+Every+Day&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 35 Shots of Rum… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=35+Shots+of+Rum&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dawns Here Are Quiet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dawns+Here+Are+Quiet&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pale Rider… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pale+Rider&include_adult=True&year=1985 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing My Country, My Country… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=My+Country%2C+My+Country&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Oath… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Oath&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 1971… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=1971&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Comfort and Joy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Comfort+and+Joy&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Squamish Five… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Squamish+Five&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rebellion in Patagonia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rebellion+in+Patagonia&include_adult=True&year=1974 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jáaji Approx.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=J%C3%A1aji+Approx.&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing If Beale Street Could Talk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=If+Beale+Street+Could+Talk&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Burning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Burning&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Burning -INFO:root:Processing Poetry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Poetry&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Capernaum… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Capernaum&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing All Is True… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+Is+True&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Foxtrot… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Foxtrot&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mule… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mule&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Mule -INFO:root:Processing Dislocation Blues… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dislocation+Blues&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rainy Dog… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rainy+Dog&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Color Wheel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Color+Wheel&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Her Smell… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Her+Smell&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Queen of Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Queen+of+Earth&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In the Land of the Head Hunters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+the+Land+of+the+Head+Hunters&include_adult=True&year=1914 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tehran: City of Love… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tehran%3A+City+of+Love&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Dragon Arrives!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Dragon+Arrives%21&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Letter from Siberia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Letter+from+Siberia&include_adult=True&year=1957 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sorry Angel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sorry+Angel&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ray & Liz… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ray+%26+Liz&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Night Moves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Night+Moves&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Meeting Gorbachev… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Meeting+Gorbachev&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Well Done, Now Sod Off… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Well+Done%2C+Now+Sod+Off&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Out of the Present… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Out+of+the+Present&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wolf Creek… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wolf+Creek&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Midsommar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Midsommar&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Clapping for the Wrong Reasons… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Clapping+for+the+Wrong+Reasons&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Once Upon a Time… in Hollywood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Once+Upon+a+Time%E2%80%A6+in+Hollywood&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kill Me Now… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kill+Me+Now&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Who Killed the Electric Car?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Who+Killed+the+Electric+Car%3F&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Revenge of the Electric Car… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Revenge+of+the+Electric+Car&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sapphire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sapphire&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Consenting Adults… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Consenting+Adults&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Flowers of War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Flowers+of+War&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Varda by Agnès… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Varda+by+Agn%C3%A8s&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Crossing the Line… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Crossing+the+Line&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Holy Flying Circus… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Holy+Flying+Circus&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing One Cut of the Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=One+Cut+of+the+Dead&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing High Fidelity… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=High+Fidelity&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing BPM (Beats per Minute)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=BPM+%28Beats+per+Minute%29&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Down by Law… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Down+by+Law&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Judgment at Nuremberg… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Judgment+at+Nuremberg&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing As If I Am Not There… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=As+If+I+Am+Not+There&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Disorder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Disorder&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marriage Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marriage+Story&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing What Is Democracy?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=What+Is+Democracy%3F&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Am Thor… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Am+Thor&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Vie en Rose… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Vie+en+Rose&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Vermilion Souls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Vermilion+Souls&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Death at a Funeral… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Death+at+a+Funeral&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Pixar Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Pixar+Story&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Savages… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Savages&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man from Earth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+from+Earth&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Aerial… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Aerial&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Secret Sunshine… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Secret+Sunshine&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 71 Fragments of a Chronology of Chance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=71+Fragments+of+a+Chronology+of+Chance&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Zero Motivation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Zero+Motivation&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Elsewhere… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Elsewhere&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Climax… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Climax&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The People vs. Larry Flynt… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+People+vs.+Larry+Flynt&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Secretly, Greatly… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Secretly%2C+Greatly&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Patlabor 2: The Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Patlabor+2%3A+The+Movie&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Irishman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Irishman&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fantastic Fungi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fantastic+Fungi&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Making Waves: The Art of Cinematic Sound… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Making+Waves%3A+The+Art+of+Cinematic+Sound&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing John Mulaney & The Sack Lunch Bunch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=John+Mulaney+%26+The+Sack+Lunch+Bunch&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cheat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cheat&include_adult=True&year=1915 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kaante… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kaante&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dilwale Dulhania Le Jayenge… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dilwale+Dulhania+Le+Jayenge&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fire&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Guru… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Guru&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Supermen of Malegaon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Supermen+of+Malegaon&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Supermen of Malegaon -INFO:root:Processing Veer-Zaara… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Veer-Zaara&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sunrise: A Song of Two Humans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sunrise%3A+A+Song+of+Two+Humans&include_adult=True&year=1927 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Death of Mr. Lazarescu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Death+of+Mr.+Lazarescu&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Birth of Saké… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Birth+of+Sak%C3%A9&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Knuckle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Knuckle&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Booksellers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Booksellers&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Climb… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Climb&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing For Sama… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=For+Sama&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waves&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Waves -INFO:root:Processing Adulthood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Adulthood&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kidulthood… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kidulthood&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Green Street Hooligans… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Green+Street+Hooligans&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Eden Lake… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Eden+Lake&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cherry Tree Lane… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cherry+Tree+Lane&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bob & Carol & Ted & Alice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Bob+%26+Carol+%26+Ted+%26+Alice&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Angels of Sex… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Angels+of+Sex&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Professor Marston and the Wonder Women… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Professor+Marston+and+the+Wonder+Women&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Design for Living… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Design+for+Living&include_adult=True&year=1933 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When Borat Came to Town… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+Borat+Came+to+Town&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sleeping with Other People… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sleeping+with+Other+People&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing They Came Together… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=They+Came+Together&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Sweatbox… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Sweatbox&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Freaked… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Freaked&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing True Stories… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=True+Stories&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ravenous… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ravenous&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Notte… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Notte&include_adult=True&year=1961 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Old Joy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Old+Joy&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Look Who's Back… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Look+Who%27s+Back&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Wavelength… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wavelength&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ghost World… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ghost+World&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Murder on a Sunday Morning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Murder+on+a+Sunday+Morning&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ball of Fire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ball+of+Fire&include_adult=True&year=1941 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Beauty's Worth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Beauty%27s+Worth&include_adult=True&year=1922 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Iron Jawed Angels… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Iron+Jawed+Angels&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Friendly Persuasion… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Friendly+Persuasion&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Me and You and Everyone We Know… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Me+and+You+and+Everyone+We+Know&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Aaaaaaaah!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Aaaaaaaah%21&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cracked Up: The Darrell Hammond Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cracked+Up%3A+The+Darrell+Hammond+Story&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Battle for Haditha… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Battle+for+Haditha&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How Do I Look… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+Do+I+Look&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing City of Lost Souls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=City+of+Lost+Souls&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Education for Death: The Making of the Nazi… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Education+for+Death%3A+The+Making+of+the+Nazi&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 2030… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=2030&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for 2030 -INFO:root:Processing Possum… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Possum&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lagaan: Once Upon a Time in India… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lagaan%3A+Once+Upon+a+Time+in+India&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bāhubali: The Beginning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=B%C4%81hubali%3A+The+Beginning&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Story of a Three-Day Pass… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Story+of+a+Three-Day+Pass&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How to Eat Your Watermelon in White Company (and Enjoy It)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+to+Eat+Your+Watermelon+in+White+Company+%28and+Enjoy+It%29&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Short History of the Long Road… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Short+History+of+the+Long+Road&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When They See Us… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+They+See+Us&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Tongues Untied… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Tongues+Untied&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cockettes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cockettes&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The King of Staten Island… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+King+of+Staten+Island&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ride Lonesome… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ride+Lonesome&include_adult=True&year=1959 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Red River… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Red+River&include_adult=True&year=1948 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Miami Connection… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Miami+Connection&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Accuse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Accuse&include_adult=True&year=1919 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing They Won't Forget… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=They+Won%27t+Forget&include_adult=True&year=1937 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Young Karl Marx… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Young+Karl+Marx&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Imitation of Life… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Imitation+of+Life&include_adult=True&year=1934 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Great Debaters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Great+Debaters&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Freedom Writers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Freedom+Writers&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Words - Live At The Edinburgh Fringe… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Words+-+Live+At+The+Edinburgh+Fringe&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Yes Men Are Revolting… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Yes+Men+Are+Revolting&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Vast of Night… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Vast+of+Night&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dancing Boys of Afghanistan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dancing+Boys+of+Afghanistan&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing La Belle Noiseuse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=La+Belle+Noiseuse&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blow-Up… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blow-Up&include_adult=True&year=1966 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anarchism in America… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anarchism+in+America&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wobblies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wobblies&include_adult=True&year=1979 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Take… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Take&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Schoolgirl's Diary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Schoolgirl%27s+Diary&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Marquise of O… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Marquise+of+O&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Comradeship… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Comradeship&include_adult=True&year=1931 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Survivor's Guide to Prison… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Survivor%27s+Guide+to+Prison&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How to Make Money Selling Drugs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+to+Make+Money+Selling+Drugs&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Germany in Autumn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Germany+in+Autumn&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sacco & Vanzetti… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sacco+%26+Vanzetti&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Feels Good Man… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Feels+Good+Man&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing King Rocker… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King+Rocker&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Coronation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Coronation&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A State of Mind… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+State+of+Mind&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I'm Thinking of Ending Things… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I%27m+Thinking+of+Ending+Things&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Funeral Parade of Roses… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Funeral+Parade+of+Roses&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing American Dream… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=American+Dream&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Morgana… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Morgana&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Monster SeaFood Wars… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Monster+SeaFood+Wars&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Lapsis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Lapsis&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Utu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Utu&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Perfect Human… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Perfect+Human&include_adult=True&year=1968 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Juche Idea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Juche+Idea&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Baxter, Vera Baxter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Baxter%2C+Vera+Baxter&include_adult=True&year=1977 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Labyrinth of Cinema… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Labyrinth+of+Cinema&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Freeway… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Freeway&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Forbidden Zone… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Forbidden+Zone&include_adult=True&year=1980 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Shithouse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Shithouse&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dick Johnson Is Dead… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dick+Johnson+Is+Dead&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Witch Who Came from the Sea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Witch+Who+Came+from+the+Sea&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Color of Fear… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Color+of+Fear&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How Green Was My Valley… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+Green+Was+My+Valley&include_adult=True&year=1941 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enemies of the State… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enemies+of+the+State&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Truffle Hunters… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Truffle+Hunters&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Film… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Film&include_adult=True&year=1965 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Shutka Book of Records… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Shutka+Book+of+Records&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The New Corporation: The Unfortunately Necessary Sequel… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+New+Corporation%3A+The+Unfortunately+Necessary+Sequel&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fechtbuch: The Real Swordfighting behind Kingdom Come… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fechtbuch%3A+The+Real+Swordfighting+behind+Kingdom+Come&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 76 Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=76+Days&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pulse… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pulse&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fireball: Visitors from Darker Worlds… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fireball%3A+Visitors+from+Darker+Worlds&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Cold Blue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Cold+Blue&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing A Gray State… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A+Gray+State&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mr. Jones… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mr.+Jones&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing In My Room… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=In+My+Room&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Los Angeles Plays Itself… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Los+Angeles+Plays+Itself&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Choc'late Soldiers from the USA… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Choc%27late+Soldiers+from+the+USA&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hannah Gadsby: Nanette… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hannah+Gadsby%3A+Nanette&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Possessor… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Possessor&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Walrus and the Whistleblower… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Walrus+and+the+Whistleblower&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Caught in the Net… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Caught+in+the+Net&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Promising Young Woman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Promising+Young+Woman&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Psycho Goreman… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Psycho+Goreman&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dear Mr. Watterson… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dear+Mr.+Watterson&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Framing Britney Spears… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Framing+Britney+Spears&include_adult=True&year=2021 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kin-dza-dza!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kin-dza-dza%21&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Irony of Fate, or Enjoy Your Bath!… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Irony+of+Fate%2C+or+Enjoy+Your+Bath%21&include_adult=True&year=1975 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Howlings in Favour of De Sade… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Howlings+in+Favour+of+De+Sade&include_adult=True&year=1952 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rebels of the Neon God… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rebels+of+the+Neon+God&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pink Floyd: The Wall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pink+Floyd%3A+The+Wall&include_adult=True&year=1982 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Contempt of Conscience… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Contempt+of+Conscience&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sisters with Transistors… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sisters+with+Transistors&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Into the Woods… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Into+the+Woods&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sincerely Louis C.K.… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sincerely+Louis+C.K.&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Bêrîtan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=B%C3%AAr%C3%AEtan&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jefftowne… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jefftowne&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Girls of the Sun… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Girls+of+the+Sun&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Sisters in Arms… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Sisters+in+Arms&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing War Feels Like War… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=War+Feels+Like+War&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dogs in Space… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dogs+in+Space&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It's Such a Beautiful Day… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It%27s+Such+a+Beautiful+Day&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rejected… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rejected&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing World of Tomorrow… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World+of+Tomorrow&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing World of Tomorrow Episode Two: The Burden of Other People's Thoughts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World+of+Tomorrow+Episode+Two%3A+The+Burden+of+Other+People%27s+Thoughts&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing World of Tomorrow Episode Three: The Absent Destinations of David Prime… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World+of+Tomorrow+Episode+Three%3A+The+Absent+Destinations+of+David+Prime&include_adult=True&year=2020 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Severance… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Severance&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Blue Collar… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blue+Collar&include_adult=True&year=1978 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Miss March… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Miss+March&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Trial of Tony Blair… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Trial+of+Tony+Blair&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Gallivant… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Gallivant&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The End Will Be Spectacular… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+End+Will+Be+Spectacular&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mad God… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mad+God&include_adult=True&year=2021 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Handsworth Songs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Handsworth+Songs&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing London… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=London&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Robinson in Space… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Robinson+in+Space&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Robinson in Ruins… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Robinson+in+Ruins&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing London Orbital… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=London+Orbital&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Content… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Content&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Patience (After Sebald)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Patience+%28After+Sebald%29&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing July 14… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=July+14&include_adult=True&year=2017 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Attica… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Attica&include_adult=True&year=2021 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Whistlers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Whistlers&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Street Gang: How We Got to Sesame Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Street+Gang%3A+How+We+Got+to+Sesame+Street&include_adult=True&year=2021 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marx Reloaded… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marx+Reloaded&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Marebito… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Marebito&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Act of Seeing with One's Own Eyes… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Act+of+Seeing+with+One%27s+Own+Eyes&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Behemoth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Behemoth&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Behemoth -INFO:root:Processing Iorram (Boat Song)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Iorram+%28Boat+Song%29&include_adult=True&year=2021 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The UnRedacted… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+UnRedacted&include_adult=True&year=2022 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Great Freedom… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Great+Freedom&include_adult=True&year=2021 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dirk Diggler Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dirk+Diggler+Story&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Good Copy Bad Copy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Good+Copy+Bad+Copy&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Death of Dick Long… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Death+of+Dick+Long&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 'Til Madness Do Us Part… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=%27Til+Madness+Do+Us+Part&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Souls… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Souls&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Meow Wolf: Origin Story… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Meow+Wolf%3A+Origin+Story&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Finished processing items -INFO:root:Processing items… -INFO:root:Processing items… -INFO:root:Processing Blackberry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blackberry&include_adult=True&year=2023 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing items… -INFO:root:Processing Blackberry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blackberry&include_adult=True&year=2023 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt21867434 (Blackberry)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt21867434?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing items… -INFO:root:Processing Blackberry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blackberry&include_adult=True&year=2023 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt21867434 (Blackberry)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt21867434?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How Not to Make a Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+Not+to+Make+a+Movie&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for How Not to Make a Movie (2013) -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing Wall Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wall+Street&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Wall Street (1987) -INFO:root:Processing ID tt0094291 (Wall Street)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0094291?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Message… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Message&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Message (1976) -INFO:root:Processing ID tt0074896 (The Message)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0074896?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Milk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Milk&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Milk (2008) -INFO:root:Processing ID tt1013753 (Milk)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1013753?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Nazis: A Warning from History… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Nazis%3A+A+Warning+from+History&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The Nazis: A Warning from History (1997) -INFO:root:Processing ID (The Nazis: A Warning from History)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/?external_source=imdb_id HTTP/1.1" 404 None -ERROR:root:{"success":false,"status_code":34,"status_message":"The resource you requested could not be found."} -INFO:root:Processing items… -INFO:root:Processing Blackberry… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Blackberry&include_adult=True&year=2023 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt21867434 (Blackberry)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt21867434?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing How Not to Make a Movie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=How+Not+to+Make+a+Movie&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for How Not to Make a Movie (2013) -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing Wall Street… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Wall+Street&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Wall Street (1987) -INFO:root:Processing ID tt0094291 (Wall Street)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0094291?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Message… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Message&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Message (1976) -INFO:root:Processing ID tt0074896 (The Message)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0074896?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Milk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Milk&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Milk (2008) -INFO:root:Processing ID tt1013753 (Milk)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1013753?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing When the Levees Broke: A Requiem in Four Acts… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=When+the+Levees+Broke%3A+A+Requiem+in+Four+Acts&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for When the Levees Broke: A Requiem in Four Acts (2006) -WARNING:root:Skipped When the Levees Broke: A Requiem in Four Acts (2006) -INFO:root:Processing King: A Filmed Record... Montgomery to Memphis… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=King%3A+A+Filmed+Record...+Montgomery+to+Memphis&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for King: A Filmed Record... Montgomery to Memphis (1970) -INFO:root:Processing ID tt0065944 (King: A Filmed Record... Montgomery to Memphis)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0065944?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The National Parks: America's Best Idea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+National+Parks%3A+America%27s+Best+Idea&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The National Parks: America's Best Idea (2009) -WARNING:root:Skipped The National Parks: America's Best Idea (2009) -INFO:root:Processing The Inner Circle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Inner+Circle&include_adult=True&year=1991 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Inner Circle (1991) -INFO:root:Processing ID tt0103838 (The Inner Circle)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0103838?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hated: GG Allin & The Murder Junkies… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hated%3A+GG+Allin+%26+The+Murder+Junkies&include_adult=True&year=1994 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Hated: GG Allin & The Murder Junkies (1994) -WARNING:root:Skipped Hated: GG Allin & The Murder Junkies (1994) -INFO:root:Processing Heathers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heathers&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Heathers (1988) -INFO:root:Processing ID tt0097493 (Heathers)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0097493?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Thirst… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Thirst&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Thirst (2009) -INFO:root:Processing ID tt0762073 (Thirst)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0762073?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Weekend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Weekend&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Weekend (2011) -INFO:root:Processing ID tt1714210 (Weekend)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1714210?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Jak rozpętałem drugą wojnę światową… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Jak+rozp%C4%99ta%C5%82em+drug%C4%85+wojn%C4%99+%C5%9Bwiatow%C4%85&include_adult=True&year=1970 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0065908 (Jak rozpętałem drugą wojnę światową)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0065908?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Jak rozpętałem drugą wojnę światową -INFO:root:Processing Uksuum Cauyai: The Drums of Winter… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Uksuum+Cauyai%3A+The+Drums+of+Winter&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Uksuum Cauyai: The Drums of Winter (1988) -INFO:root:Processing ID tt0929487 (Uksuum Cauyai: The Drums of Winter)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0929487?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Man Who Knew Too Much… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Man+Who+Knew+Too+Much&include_adult=True&year=1956 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Man Who Knew Too Much (1956) -INFO:root:Processing ID tt0049470 (The Man Who Knew Too Much)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0049470?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Martin… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Martin&include_adult=True&year=1976 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Skipped Martin (1976) -INFO:root:Processing On Death Row… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=On+Death+Row&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Skipped On Death Row (2012) -INFO:root:Processing Chocolate… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chocolate&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Chocolate (2008) -INFO:root:Processing ID tt1183252 (Chocolate)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1183252?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mother… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mother&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Mother (2009) -INFO:root:Processing ID tt1216496 (Mother)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1216496?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mouth to Mouth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mouth+to+Mouth&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Mouth to Mouth (2005) -INFO:root:Processing ID tt0383518 (Mouth to Mouth)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0383518?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Ray… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ray&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Ray (2004) -INFO:root:Processing ID tt0350258 (Ray)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0350258?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Island… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Island&include_adult=True&year=2006 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Island (2006) -INFO:root:Processing ID tt0851577 (The Island)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0851577?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mark of Cain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mark+of+Cain&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The Mark of Cain (2000) -INFO:root:Processing ID tt0288114 (The Mark of Cain)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0288114?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Return… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Return&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Return (2003) -INFO:root:Processing ID tt0376968 (The Return)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0376968?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Heimat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heimat&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Skipped Heimat (1984) -INFO:root:Processing The Artist… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Artist&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Artist (2011) -INFO:root:Processing ID tt1655442 (The Artist)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1655442?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Rampage… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Rampage&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Rampage (2009) -INFO:root:Processing ID tt1337057 (Rampage)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1337057?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Alice… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Alice&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Alice (1988) -INFO:root:Processing ID tt0095715 (Alice)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0095715?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Big Blue… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Big+Blue&include_adult=True&year=1988 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Big Blue (1988) -INFO:root:Processing ID tt0095250 (The Big Blue)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0095250?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Control… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Control&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0373981 (Control)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0373981?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Black (2005) -INFO:root:Processing ID tt0375611 (Black)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0375611?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Promise… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Promise&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0117398 (The Promise)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0117398?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brightness… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brightness&include_adult=True&year=1987 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Brightness (1987) -INFO:root:Processing ID tt0094349 (Brightness)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0094349?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Crying Game… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Crying+Game&include_adult=True&year=1992 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Crying Game (1992) -INFO:root:Processing ID tt0104036 (The Crying Game)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0104036?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Weekend… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Weekend&include_adult=True&year=1967 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Weekend (1967) -INFO:root:Processing ID tt0062480 (Weekend)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0062480?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing V… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=V&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Skipped V (1983) -INFO:root:Processing V: The Final Battle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=V%3A+The+Final+Battle&include_adult=True&year=1984 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for V: The Final Battle (1984) -WARNING:root:Skipped V: The Final Battle (1984) -INFO:root:Processing Dunkirk… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dunkirk&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Skipped Dunkirk (2004) -INFO:root:Processing The Ballad of Big Al… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Ballad+of+Big+Al&include_adult=True&year=2000 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The Ballad of Big Al (2000) -WARNING:root:Skipped The Ballad of Big Al (2000) -INFO:root:Processing Chased by Dinosaurs… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Chased+by+Dinosaurs&include_adult=True&year=2002 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Chased by Dinosaurs (2002) -WARNING:root:Skipped Chased by Dinosaurs (2002) -INFO:root:Processing Deep Throat… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Deep+Throat&include_adult=True&year=1972 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Deep Throat (1972) -INFO:root:Processing ID tt0068468 (Deep Throat)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0068468?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Pocahontas… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Pocahontas&include_adult=True&year=1995 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Pocahontas (1995) -INFO:root:Processing ID tt0114148 (Pocahontas)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0114148?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Anastasia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Anastasia&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Anastasia (1997) -INFO:root:Processing ID tt0118617 (Anastasia)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0118617?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Hunchback of Notre Dame… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Hunchback+of+Notre+Dame&include_adult=True&year=1996 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Hunchback of Notre Dame (1996) -INFO:root:Processing ID tt0116583 (The Hunchback of Notre Dame)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0116583?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hercules… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hercules&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Hercules (1997) -INFO:root:Processing ID tt0119282 (Hercules)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0119282?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Mulan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Mulan&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Mulan (1998) -INFO:root:Processing ID tt0120762 (Mulan)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0120762?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Hemp for Victory… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Hemp+for+Victory&include_adult=True&year=1943 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Hemp for Victory (1943) -INFO:root:Processing ID tt0367837 (Hemp for Victory)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0367837?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 9… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=9&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for 9 (2009) -INFO:root:Processing ID tt0472033 (9)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0472033?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dead Space: Aftermath… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dead+Space%3A+Aftermath&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Dead Space: Aftermath (2010) -INFO:root:Processing ID tt1711366 (Dead Space: Aftermath)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1711366?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fist of the North Star… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fist+of+the+North+Star&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Fist of the North Star (1986) -INFO:root:Processing ID tt0142371 (Fist of the North Star)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0142371?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dog Days… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dog+Days&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Dog Days (2001) -INFO:root:Processing ID tt0290661 (Dog Days)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0290661?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Devil in the Flesh… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Devil+in+the+Flesh&include_adult=True&year=1986 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Devil in the Flesh (1986) -INFO:root:Processing ID tt0097194 (Devil in the Flesh)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0097194?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Paranoia… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Paranoia&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Paranoia (2011) -INFO:root:Processing ID tt1911613 (Paranoia)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1911613?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Wall… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Wall&include_adult=True&year=1983 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Wall (1983) -INFO:root:Processing ID tt0090982 (The Wall)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0090982?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing I Love Alaska… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=I+Love+Alaska&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for I Love Alaska (2009) -INFO:root:Processing ID tt1455044 (I Love Alaska)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1455044?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for I Love Alaska -INFO:root:Processing Ringu… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Ringu&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0178868 (Ringu)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0178868?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Society of the Spectacle… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Society+of+the+Spectacle&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The Society of the Spectacle (1973) -INFO:root:Processing ID tt0070712 (The Society of the Spectacle)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0070712?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing L.A. Zombie… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=L.A.+Zombie&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for L.A. Zombie (2010) -INFO:root:Processing ID tt1594921 (L.A. Zombie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1594921?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Nerds 2.0.1: A Brief History of the Internet… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Nerds+2.0.1%3A+A+Brief+History+of+the+Internet&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Nerds 2.0.1: A Brief History of the Internet (1998) -WARNING:root:Skipped Nerds 2.0.1: A Brief History of the Internet (1998) -INFO:root:Processing A… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=A&include_adult=True&year=1998 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for A (1998) -INFO:root:Processing ID tt0241146 (A)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0241146?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Medea… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Medea&include_adult=True&year=1969 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Medea (1969) -INFO:root:Processing ID tt0066065 (Medea)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0066065?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Safe House… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Safe+House&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Safe House (2012) -WARNING:root:Skipped Safe House (2012) -INFO:root:Processing Heimat II: A Chronicle of a Generation… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Heimat+II%3A+A+Chronicle+of+a+Generation&include_adult=True&year=1993 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Heimat II: A Chronicle of a Generation (1993) -INFO:root:Processing ID Enter IMDB ID for Mouth to Mouth (2005):tt0383518 (Heimat II: A Chronicle of a Generation)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/Enter%20IMDB%20ID%20for%20Mouth%20to%20Mouth%20(2005):tt0383518?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for Heimat II: A Chronicle of a Generation -INFO:root:Processing All the Right Noises… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=All+the+Right+Noises&include_adult=True&year=1971 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for All the Right Noises (1971) -INFO:root:Processing ID tt0064004 (All the Right Noises)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0064004?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Dr. Jekyll and Mr. Hyde… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Dr.+Jekyll+and+Mr.+Hyde&include_adult=True&year=1920 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Dr. Jekyll and Mr. Hyde (1920) -INFO:root:Processing ID tt0011130 (Dr. Jekyll and Mr. Hyde)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0011130?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Fall of the House of Usher… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Fall+of+the+House+of+Usher&include_adult=True&year=1928 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Fall of the House of Usher (1928) -INFO:root:Processing ID tt0018770 (The Fall of the House of Usher)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0018770?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Three Musketeers… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Three+Musketeers&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Three Musketeers (1973) -INFO:root:Processing ID tt0072281 (The Three Musketeers)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0072281?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Cyrano de Bergerac… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Cyrano+de+Bergerac&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Cyrano de Bergerac (1990) -INFO:root:Processing ID tt0099334 (Cyrano de Bergerac)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0099334?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stalled… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stalled&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Stalled (2013) -INFO:root:Processing ID tt2140429 (Stalled)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt2140429?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing World on a Wire… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=World+on+a+Wire&include_adult=True&year=1973 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for World on a Wire (1973) -WARNING:root:Skipped World on a Wire (1973) -INFO:root:Processing Prohibition… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Prohibition&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Prohibition (2011) -WARNING:root:Skipped Prohibition (2011) -INFO:root:Processing Howl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Howl&include_adult=True&year=2010 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Howl (2010) -INFO:root:Processing ID tt1049402 (Howl)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1049402?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Gospel According to St. Matthew… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Gospel+According+to+St.+Matthew&include_adult=True&year=1964 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The Gospel According to St. Matthew (1964) -INFO:root:Processing ID tt0058715 (The Gospel According to St. Matthew)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0058715?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Signal… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Signal&include_adult=True&year=2007 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Signal (2007) -INFO:root:Processing ID tt0780607 (The Signal)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0780607?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Stripped… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Stripped&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Stripped (2014) -INFO:root:Processing ID tt2488042 (Stripped)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt2488042?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Highball… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Highball&include_adult=True&year=1997 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Highball (1997) -INFO:root:Processing ID tt0119291 (Highball)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0119291?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Dust Bowl… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Dust+Bowl&include_adult=True&year=2012 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The Dust Bowl (2012) -WARNING:root:Skipped The Dust Bowl (2012) -INFO:root:Processing Leviathan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Leviathan&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Leviathan (2014) -INFO:root:Processing ID tt2802154 (Leviathan)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt2802154?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Kops… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Kops&include_adult=True&year=2003 HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing ID tt0339230 (Kops)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0339230?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Godzilla… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Godzilla&include_adult=True&year=2014 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Godzilla (2014) -INFO:root:Processing ID tt0831387 (Godzilla)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0831387?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Intruder… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Intruder&include_adult=True&year=2004 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Intruder (2004) -INFO:root:Processing ID tt0422491 (The Intruder)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0422491?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Black Rain… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Black+Rain&include_adult=True&year=1989 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Black Rain (1989) -INFO:root:Processing ID tt0097694 (Black Rain)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0097694?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Story of Film: An Odyssey… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Story+of+Film%3A+An+Odyssey&include_adult=True&year=2011 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for The Story of Film: An Odyssey (2011) -WARNING:root:Skipped The Story of Film: An Odyssey (2011) -INFO:root:Processing Unleashed… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Unleashed&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Unleashed (2005) -INFO:root:Processing ID tt0342258 (Unleashed)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0342258?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Eldorado… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Eldorado&include_adult=True&year=2008 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Eldorado (2008) -INFO:root:Processing ID tt1176954 (Eldorado)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1176954?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Enemy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Enemy&include_adult=True&year=2013 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Enemy (2013) -INFO:root:Processing ID tt2316411 (Enemy)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt2316411?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing It… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=It&include_adult=True&year=1990 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Skipped It (1990) -INFO:root:Processing Victoria… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Victoria&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Victoria (2015) -INFO:root:Processing ID tt4226388 (Victoria)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4226388?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing To Whom Does the World Belong?… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=To+Whom+Does+the+World+Belong%3F&include_adult=True&year=1932 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for To Whom Does the World Belong? (1932) -INFO:root:Processing ID tt0023104 (To Whom Does the World Belong?)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt0023104?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Brooklyn… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Brooklyn&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Brooklyn (2015) -INFO:root:Processing ID tt2381111 (Brooklyn)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt2381111?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Amy… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Amy&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Amy (2015) -INFO:root:Processing ID tt2870648 (Amy)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt2870648?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Fan… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Fan&include_adult=True&year=2016 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Fan (2016) -INFO:root:Processing ID tt3495026 (Fan)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt3495026?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Witch… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Witch&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Witch (2015) -INFO:root:Processing ID tt4263482 (The Witch)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4263482?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Life with Judy Garland: Me and My Shadows… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Life+with+Judy+Garland%3A+Me+and+My+Shadows&include_adult=True&year=2001 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Life with Judy Garland: Me and My Shadows (2001) -WARNING:root:Skipped Life with Judy Garland: Me and My Shadows (2001) -INFO:root:Processing BBS: The Documentary… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=BBS%3A+The+Documentary&include_adult=True&year=2005 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for BBS: The Documentary (2005) -WARNING:root:Skipped BBS: The Documentary (2005) -INFO:root:Processing Burning… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Burning&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Burning (2018) -INFO:root:Processing ID tt7282468 (Burning)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt7282468?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing The Mule… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=The+Mule&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for The Mule (2018) -INFO:root:Processing ID tt7959026 (The Mule)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt7959026?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Supermen of Malegaon… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Supermen+of+Malegaon&include_adult=True&year=2009 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned no results for Supermen of Malegaon (2009) -INFO:root:Processing ID tt1479380 (Supermen of Malegaon)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt1479380?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Waves… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Waves&include_adult=True&year=2019 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Waves (2019) -INFO:root:Processing ID tt8652728 (Waves)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt8652728?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing 2030… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=2030&include_adult=True&year=2018 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for 2030 (2018) -INFO:root:Processing ID tt9032070 (2030)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt9032070?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Processing Behemoth… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/search/movie?query=Behemoth&include_adult=True&year=2015 HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returned more than one film for Behemoth (2015) -INFO:root:Processing ID tt4901304 (Behemoth)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4901304?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -INFO:root:Finished processing items -INFO:root:Processing items… -INFO:root:Processing ID tt4053592 (How Not to Make a Movie)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/tt4053592?external_source=imdb_id HTTP/1.1" 200 None -INFO:root:200 -WARNING:root:Returning no results for How Not to Make a Movie -INFO:root:Processing ID (Hated: GG Allin & The Murder Junkies)… -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.themoviedb.org:443 -DEBUG:urllib3.connectionpool:https://api.themoviedb.org:443 "GET /3/find/?external_source=imdb_id HTTP/1.1" 404 None -ERROR:root:{"success":false,"status_code":34,"status_message":"The resource you requested could not be found."}