Hi,
If I save a quandl csv file to dropbox and then call the fetcher it throws an error. I have no idea why?
fetch_csv('http://www.quandl.com/api/v1/datasets/EUREX/FDAXH2014.csv?trim_start=2013-09-09',
date_column='Date',
symbol='fdax',
pre_func=set_headers,
post_func=rename_col,
date_format='%Y-%m-%d')
fetch_csv(
'https://www.dropbox.com/s/xxxxxx/FDAXH2014.csv',
date_column='Date',
symbol='fdax',
pre_func=set_headers,
post_func=rename_col,
date_format='%Y-%m-%d' )
Error:
Something went wrong on our end. Sorry for the inconvenience.
CParserError: Error tokenizing data. C error: Expected 1 fields in line 3, saw 2
File test_algorithm_sycheck.py:42, in initialize
File algoproxy.py:1477, in fetch_csv
File requests_csv.py:364, in __init__
File requests_csv.py:247, in load_df
File requests_csv.py:370, in fetch_data
File parsers.py:400, in parser_f
File parsers.py:205, in _read
File parsers.py:608, in read
File parsers.py:1028, in read
File parser.pyx:706, in pandas.parser.TextReader.read (pandas/parser.c:6745)
File parser.pyx:728, in pandas.parser.TextReader._read_low_memory (pandas/parser.c:6964)
File parser.pyx:781, in pandas.parser.TextReader._read_rows (pandas/parser.c:7568)
File parser.pyx:768, in pandas.parser.TextReader._tokenize_rows (pandas/parser.c:7451)
File parser.pyx:1661, in pandas.parser.raise_parser_error (pandas/parser.c:18744)