Product description
==================================
`Product Page <https://products.aspose.com/finance/python-net>`_ | `Docs <https://docs.aspose.com/finance/python-net/>`_ | `Demos <https://products.aspose.app/finance/family/>`_ | `Blog <https://blog.aspose.com/category/finance/>`_ | `Code Samples <https://github.com/aspose-finance/Aspose.Finance-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/finance>`_ | `Temporary License <https://purchase.aspose.com/temporary-license>`_ | `EULA <https://company.aspose.com/legal/eula>`_
Try our `free online apps <https://products.aspose.app/finance/family>`_ demonstrating some of the most popular Aspose.Finance functionality.
Aspose.Finance for Python via .NET is a a scalable and feature-rich API to process finance-related formats, such as XBRL iXBRL and OFX, using Python. API offers XBRL, iXBRL, OFX file creation, manipulation and conversion. It allows you to open files and manipulate XBRL/iXBRL, OFX, and then export to XBRL,OFX file formats.
Finance API Features
-------------------------
Aspose.Finance offers a wide arrange of features for creating, reading, manipulating and saving xbrl,ixbrl,ofx files:
* Create XBRL instance from scratch
* Create iXBRL(inline XBRL) from scratch
* Read XBRL and iXBRL Formats
* Validate XBRL and iXBRL
* Convert XBRL to iXBRL
* Convert XBRL to XLSX
* Convert iXBRL to XBRL
* Create OFX Request File
* Create OFX Response File
* Convert OFX Request File from 1.03 to 2.2 format
* Convert OFX Response File from 1.03 to 2.2 format
Performance and Scalability
-----------------------------------
Aspose.Finance for Python via .NET is designed to perform equally well on the server or client-side.
Supported Document Formats
-----------------------------------
Aspose.Finance for Python supports `a wide range of formats for loading and saving documents <https://docs.aspose.com/finance/python-net/supported-file-formats/>`_, some of them are listed below:
**XBRL**: XBRL iXBRL, XLSX
**OFX**: OFX, OFX Version 1
Create a XBRL Document: Programming Samples
--------------------------------------------------
.. code-block:: python
from aspose.finance.xbrl import *
document = XbrlDocument()
xbrlInstances = document.xbrl_instances
xbrlInstance = xbrlInstances[xbrlInstances.add()]
document.save(os.path.join(outputDir, "CreateXbrlFile.xbrl"))
Convert a XBRL Document to XLSX file: Programming Samples
----------------------------------------------------------------
.. code-block:: python
from aspose.finance.xbrl import *
document = XbrlDocument(os.path.join(sourceDir, "IdScopeContextPeriodStartAfterEnd.xml"))
# Set save options
saveOptions = SaveOptions()
saveOptions.save_format = SaveFormat.XLSX
# Save file to XLSX format
document.save(os.path.join(outputDir, "ConvertXbrlToXlsx_out.xlsx"), saveOptions)
Convert OFX Request Version 1 File To OFX Request Verver 2 File
---------------------------------------------------------------------
.. code-block:: python
from aspose.finance.ofx import *
document = OfxRequestDocument(os.path.join(sourceDir, "bankTransactionReq.sgml"))
document.save(os.path.join(outputDir, "ConvertOfxRequestFileToOfxRequestV2.xml"), OfxVersionEnum.V2X)
`Product Page <https://products.aspose.com/finance/python-net>`_ | `Docs <https://docs.aspose.com/finance/python-net/>`_ | `Demos <https://products.aspose.app/finance/family/>`_ | `Blog <https://blog.aspose.com/category/finance/>`_ | `Code Samples <https://github.com/aspose-finance/Aspose.Finance-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/finance>`_ | `Temporary License <https://purchase.aspose.com/temporary-license>`_ | `EULA <https://company.aspose.com/legal/eula>`_
Raw data
{
"_id": null,
"home_page": "https://products.aspose.com/finance/",
"name": "aspose-finance",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.12,>=3.5",
"maintainer_email": null,
"keywords": "xbrl, ixbrl, ofx, finance, conversion",
"author": "aspose-finance",
"author_email": null,
"download_url": null,
"platform": "win_amd64",
"description": "Product description \n==================================\n\n\n`Product Page <https://products.aspose.com/finance/python-net>`_ | `Docs <https://docs.aspose.com/finance/python-net/>`_ | `Demos <https://products.aspose.app/finance/family/>`_ | `Blog <https://blog.aspose.com/category/finance/>`_ | `Code Samples <https://github.com/aspose-finance/Aspose.Finance-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/finance>`_ | `Temporary License <https://purchase.aspose.com/temporary-license>`_ | `EULA <https://company.aspose.com/legal/eula>`_\n\nTry our `free online apps <https://products.aspose.app/finance/family>`_ demonstrating some of the most popular Aspose.Finance functionality.\n\nAspose.Finance for Python via .NET is a a scalable and feature-rich API to process finance-related formats, such as XBRL iXBRL and OFX, using Python. API offers XBRL, iXBRL, OFX file creation, manipulation and conversion. It allows you to open files and manipulate XBRL/iXBRL, OFX, and then export to XBRL,OFX file formats.\n\n\n\nFinance API Features\n-------------------------\n\nAspose.Finance offers a wide arrange of features for creating, reading, manipulating and saving xbrl,ixbrl,ofx files:\n\n* Create XBRL instance from scratch\n* Create iXBRL(inline XBRL) from scratch\n* Read XBRL and iXBRL Formats\n* Validate XBRL and iXBRL\n* Convert XBRL to iXBRL\n* Convert XBRL to XLSX\n* Convert iXBRL to XBRL\n* Create OFX Request File\n* Create OFX Response File\n* Convert OFX Request File from 1.03 to 2.2 format\n* Convert OFX Response File from 1.03 to 2.2 format\n\n\nPerformance and Scalability\n-----------------------------------\n\nAspose.Finance for Python via .NET is designed to perform equally well on the server or client-side. \n\n\n\nSupported Document Formats\n-----------------------------------\n\n\nAspose.Finance for Python supports `a wide range of formats for loading and saving documents <https://docs.aspose.com/finance/python-net/supported-file-formats/>`_, some of them are listed below: \n\n**XBRL**: XBRL iXBRL, XLSX\n**OFX**: OFX, OFX Version 1\n\n\nCreate a XBRL Document: Programming Samples \n--------------------------------------------------\n\n.. code-block:: python\n\n from aspose.finance.xbrl import *\n document = XbrlDocument()\n xbrlInstances = document.xbrl_instances\n xbrlInstance = xbrlInstances[xbrlInstances.add()]\n document.save(os.path.join(outputDir, \"CreateXbrlFile.xbrl\"))\n\n\nConvert a XBRL Document to XLSX file: Programming Samples \n----------------------------------------------------------------\n\n.. code-block:: python\n\n from aspose.finance.xbrl import *\n document = XbrlDocument(os.path.join(sourceDir, \"IdScopeContextPeriodStartAfterEnd.xml\"))\n # Set save options\n saveOptions = SaveOptions()\n saveOptions.save_format = SaveFormat.XLSX\n # Save file to XLSX format\n document.save(os.path.join(outputDir, \"ConvertXbrlToXlsx_out.xlsx\"), saveOptions)\n\n\nConvert OFX Request Version 1 File To OFX Request Verver 2 File\n---------------------------------------------------------------------\n\n.. code-block:: python\n\n from aspose.finance.ofx import *\n document = OfxRequestDocument(os.path.join(sourceDir, \"bankTransactionReq.sgml\"))\n document.save(os.path.join(outputDir, \"ConvertOfxRequestFileToOfxRequestV2.xml\"), OfxVersionEnum.V2X)\n\n\n\n\n`Product Page <https://products.aspose.com/finance/python-net>`_ | `Docs <https://docs.aspose.com/finance/python-net/>`_ | `Demos <https://products.aspose.app/finance/family/>`_ | `Blog <https://blog.aspose.com/category/finance/>`_ | `Code Samples <https://github.com/aspose-finance/Aspose.Finance-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/finance>`_ | `Temporary License <https://purchase.aspose.com/temporary-license>`_ | `EULA <https://company.aspose.com/legal/eula>`_\n\n\n",
"bugtrack_url": null,
"license": "https://company.aspose.com/legal/eula",
"summary": "Aspose.Finance for Python via .NET is a scalable and feature-rich API to process finance-related formats, such as, XBRL iXBRL and OFX, using Python. API offers XBRL,iXBRL,OFX file creation, manipulation and conversion.",
"version": "24.10",
"project_urls": {
"Homepage": "https://products.aspose.com/finance/"
},
"split_keywords": [
"xbrl",
" ixbrl",
" ofx",
" finance",
" conversion"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ef70cfbf7098b258bc153bd9df35df3b427c7bb7e7adc4e0360a7f03fd92a960",
"md5": "c009d663186c7b5b0a3e27aadea54ace",
"sha256": "b81c223311c1eecdee75370ea2adaa8993a3256da92a6b24ff5063721e3cc9f9"
},
"downloads": -1,
"filename": "aspose_finance-24.10-py3-none-win32.whl",
"has_sig": false,
"md5_digest": "c009d663186c7b5b0a3e27aadea54ace",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.5",
"size": 42339877,
"upload_time": "2024-10-30T22:49:37",
"upload_time_iso_8601": "2024-10-30T22:49:37.522953Z",
"url": "https://files.pythonhosted.org/packages/ef/70/cfbf7098b258bc153bd9df35df3b427c7bb7e7adc4e0360a7f03fd92a960/aspose_finance-24.10-py3-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f36c84bde7023d4065158e85d804a4fb8b47c38d09b833ff4b36118a7d63ba3",
"md5": "a54911758919c1590fc59a14725429e5",
"sha256": "967d2e983127211078d34aa1754e268f174e3009e2e0e86c12d20421cabef70b"
},
"downloads": -1,
"filename": "aspose_finance-24.10-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "a54911758919c1590fc59a14725429e5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.5",
"size": 50357781,
"upload_time": "2024-10-30T22:48:36",
"upload_time_iso_8601": "2024-10-30T22:48:36.817623Z",
"url": "https://files.pythonhosted.org/packages/7f/36/c84bde7023d4065158e85d804a4fb8b47c38d09b833ff4b36118a7d63ba3/aspose_finance-24.10-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-30 22:49:37",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "aspose-finance"
}