Task requirements:
- Use the IMDbPY (https://imdbpy.readthedocs.io/en/latest/index.html) package to get movie data from IMDB database.
- Get the list of bottom 100 movies (use the builtin method - get_bottom100_movies())
- Get director name for each movies (use the builtin method - get_movie())
- Collect only the movie names and director names(in ascending order by director names)
- Pretty-print the data in json and store in a json file
The completed application collects required data and stores it in json file.