1. Setting Environment Variables
# Import system and operating system libraries
import sys
import os
# Insert parent directory to system path so we can import configurations from there
sys.path.insert(0, os.path.abspath('..'))
# Import and set envi...