When trying to retrieve Quandl data, using their specified symbol codes with underscores (such as BRK_B), there is an AssertionError thrown:
import pandas_datareader.data as web
price_data = web.DataReader(name='BRK_B', data_source='quandl', start='2018-01-01', end='2018-12-31')
Error returned:
.../quandl.py", line 77, in url
assert mm, "Symbol '%s' must conform to Quandl convention 'DB/SYM'" % symbol
AssertionError: Symbol 'BRK_B' must conform to Quandl convention 'DB/SYM'
When trying to retrieve Quandl data, using their specified symbol codes with underscores (such as BRK_B), there is an AssertionError thrown:
Error returned: