Hello,
I am strucked at this step. Can anyone help me what could be the probable issues?
import quandl
from datetime import datetime
quantrautil is a module specific to Quantra to fetch stock data
import sys
sys.path.append("…")
from data_modules.quantrautil import get_quantinsti_api_key
api_key = get_quantinsti_api_key()
data = quandl.get('EOD/AAPL', start_date='2017-1-1',
end_date='2018-1-1', api_key=api_key)
While running this code on my colab sheet. I am getting the following error
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-12-97156e0b5c49> in <module>() ----> 1 from data_modules.quantrautil import get_quantinsti_api_key 2 api_key = get_quantinsti_api_key()
ModuleNotFoundError: No module named 'data_modules' Please help me resolve this issue