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": "linux_x86_64",
"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",
"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.11",
"project_urls": {
"Homepage": "https://products.aspose.com/finance/"
},
"split_keywords": [
"xbrl",
" ixbrl",
" ofx",
" finance",
" conversion"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0dd9e5e30e313cc8bc97af6dbba180a89893f8985f8f886998e41c2fe13cbfae",
"md5": "2053f91092db96ceb2461fd33df2ee06",
"sha256": "71af31ad3d3d220ea0c6fb0acb650d0d1162bad14034ed586bedb1dbb58d72f9"
},
"downloads": -1,
"filename": "aspose_finance-24.11-py3-none-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "2053f91092db96ceb2461fd33df2ee06",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.5",
"size": 77737557,
"upload_time": "2024-11-30T01:08:08",
"upload_time_iso_8601": "2024-11-30T01:08:08.887622Z",
"url": "https://files.pythonhosted.org/packages/0d/d9/e5e30e313cc8bc97af6dbba180a89893f8985f8f886998e41c2fe13cbfae/aspose_finance-24.11-py3-none-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "123e5922e6b4cd752b93dafe6366876e7f269b20c372f0fa78dc3f4fdae5f409",
"md5": "b2753236cb387f05da328e8889d1c281",
"sha256": "4eac996efad41a49426f7fafd9060eb068bdcc6f416b7d5d7b9f968bb466de54"
},
"downloads": -1,
"filename": "aspose_finance-24.11-py3-none-win32.whl",
"has_sig": false,
"md5_digest": "b2753236cb387f05da328e8889d1c281",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.5",
"size": 42350735,
"upload_time": "2024-11-30T01:32:11",
"upload_time_iso_8601": "2024-11-30T01:32:11.038584Z",
"url": "https://files.pythonhosted.org/packages/12/3e/5922e6b4cd752b93dafe6366876e7f269b20c372f0fa78dc3f4fdae5f409/aspose_finance-24.11-py3-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "781032734206d4a9b59993c9225657db8dabc4f2efb467c6500917ce806757a1",
"md5": "ca51c3d570220be9c601d92b0cc5f6e1",
"sha256": "8ecb725ca94be8b42575294ecad4d6d2928c7802a828df3d2264379aa3bcbcf4"
},
"downloads": -1,
"filename": "aspose_finance-24.11-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "ca51c3d570220be9c601d92b0cc5f6e1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.5",
"size": 50357444,
"upload_time": "2024-11-30T01:30:55",
"upload_time_iso_8601": "2024-11-30T01:30:55.696537Z",
"url": "https://files.pythonhosted.org/packages/78/10/32734206d4a9b59993c9225657db8dabc4f2efb467c6500917ce806757a1/aspose_finance-24.11-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-30 01:08:08",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "aspose-finance"
}