Quantlib和utils无法导入名称' to_datetime'

时间:2018-06-04 10:45:46

标签: python libraries quantlib

我正试图重新启动this video中解释的notebbok。但是,当我尝试导入在我的系统(Win 7企业版)上正确安装的to_datetime表单utils库时,我收到错误消息。

Here you can find the screenshot of the error

任何解决方案的想法?

1 个答案:

答案 0 :(得分:1)

视频中导入的模块utils.py包含一些我不会在每个笔记本中明确定义的小功能,以减少冗长。它可以与QuantLib Python Cookbook一起下载,也可以与笔记本本身一起下载。您系统上的模块可能与同名的模块不同。

如果您不想获得食谱,该功能很简单,可以自己写。给定QuantLib日期对象d,您必须返回datetime.date(d.year(), d.month(), d.dayOfMonth())