Overview This script will ask for a movie title and a year and then query IMDB for it. Command Line IMDB Scraper First step is to import the necessary modules. #!/usr/bin/env python27 #Importing the modules from BeautifulSoup import BeautifulSoup import sys import urllib2 import re import json #Ask for movie ...