Zipline错误:AttributeError:'NoneType'对象没有属性'fetch_csv'

时间:2016-10-16 19:19:42

标签: python python-2.7 zipline

我刚刚使用conda在Windows 10,Python 2.7系统上安装了Zipline。当我tried to use a function fetch_csv from zipline.api时,我收到错误

AttributeError: 'NoneType' object has no attribute 'fetch_csv'

为什么我无法加载函数fetch_csv

from zipline.api import fetch_csv

fetch_csv('./test.csv')

1 个答案:

答案 0 :(得分:0)

Zipline API reference表示此方法是“从远程网址获取csv”。对于本地文件,我建议pandas

pandas.read_csv('./test.csv')