我刚刚在 Windows 10、Python 2.7 系统上使用conda
. 当我尝试使用 中的函数fetch_csv
时zipline.api
,出现错误
AttributeError: 'NoneType' object has no attribute 'fetch_csv'
为什么我不能加载函数fetch_csv
?
from zipline.api import fetch_csv
fetch_csv('./test.csv')
我刚刚在 Windows 10、Python 2.7 系统上使用conda
. 当我尝试使用 中的函数fetch_csv
时zipline.api
,出现错误
AttributeError: 'NoneType' object has no attribute 'fetch_csv'
为什么我不能加载函数fetch_csv
?
from zipline.api import fetch_csv
fetch_csv('./test.csv')
Zipline API 参考说这种方法是“从远程 url 获取 csv” 。对于本地文件,我建议pandas:
pandas.read_csv('./test.csv')