~/anaconda3/envs/py36/lib/python3.6/site-packages/pandas/io/pytables.py in get(self, key)
717 group = self.get_node(key)
718 if group is None:
→ 719 raise KeyError(“No object named {key} in the file”.format(key=key))
720 return self._read_group(group)
721
KeyError: ‘No object named quandl/wiki/prices in the file’`
KeyError: ‘No object named quandl/wiki/prices in the file’`
with pd.HDFStore('assets.h5') as store:
print(store.info()
does the result contain the wiki price data? This assumes your are using the right path, in other words running this command in the data directory. If you see the data, then the path you used above (DATA_STORE) is not pointing to the right file - perhaps you organized your folders differently? If you do not see the file, you should revisit the steps in create_dataset.,