安装

系统要求

首先,您必须检查并确认机器的规格符合系统要求.

通过 .NET 为 Python 安装 Aspose.Finance

pip是最简单的下载安装方式Aspose.Finance 为 Python 通过 .NET.

要安装 Aspose.Finance,请运行此命令:pip install aspose-finance

通过 .NET 将 Aspose.Finance 用于 Python

完成模块安装后,您可以通过以下方式从 Python 代码中使用 Aspose.Finance:

import aspose.finance.xbrl as afx

xbrlDoc = afx.XbrlDocument()
xbrlInstances = xbrlDoc.xbrl_instances
xbrlInstance = xbrlInstances[xbrlInstances.add()]
schemaRefs = xbrlInstance.schema_refs
schemaRefs.add(os.path.join(sourceDir, "schema.xsd"), "example", "http://example.com/xbrl/taxonomy")
xbrlDoc.save(os.path.join(outputDir, "dochavingItem.xbrl"))