In [2]:
"""
Setup notebook environment
"""
# Load the "autoreload" extension
%load_ext autoreload
%autoreload 1
import os
import sys
# add the 'src' directory as one where we can import modules
src_dir = os.path.join(os.getcwd(), os.pardir, 'src')
sys.path.append(src_dir)
In [ ]: