Product description
==================================
`Product Page <https://products.aspose.com/diagram/python-net>`_ | `Docs <https://docs.aspose.com/diagram/python-net/>`_ | `Demos <https://products.aspose.app/diagram/family/>`_ | `Blog <https://blog.aspose.com/category/diagram/>`_ | `Code Samples <https://github.com/aspose-diagram/Aspose.Diagram-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/diagram>`_ | `Temporary License <https://purchase.aspose.com/temporary-license>`_ | `EULA <https://company.aspose.com/legal/eula>`_
Try our `free online apps <https://products.aspose.app/diagram/family>`_ demonstrating some of the most popular Aspose.diagram functionality.
Aspose.Diagram for Python via .Net is a scalable and feature-rich API to process visio files using Python. API offers Visio file creation, manipulation, conversion, rendering. Developers can format pages to the most granular level, create and manipulate shape, render pages, shapes to PDF and images, and much more - all without any dependency on Microsoft Office or Visio application.
Diagram API Features
-------------------------
Aspose.Diagram offers a wide arrange of features for creating, reading, manipulating and saving visio files:
* Create visio files via API.
* Convert shapes to images or PDF.
* Manage comments & hyperlinks.
* Convert pages to PDF, XPS & SVG formats.
* Inter-convert files to popular visio formats.
Performance and Scalability
-----------------------------------
Aspose.Diagram for Python via .NET is designed to perform equally well on the server or client-side. Aspose.Diagram for Python via .NET is a single .NET library that can be deployed with any .NET application by simply copying it. You do not have to worry about other services or modules.
Supported Document Formats
-----------------------------------
Aspose.Diagram for Python supports `a wide range of formats for loading and saving documents<https://docs.aspose.com/diagram/python-net/supported-file-formats/>`, some of them are listed below:
**Microsoft Visio**: VSD, VSX,VTX, VDX, VSDX, VSTX, VSSX, VSTM, VSSM
**Fixed Layout**: PDF, XPS
**Images**: JPEG, PNG, BMP, SVG, TIFF, GIF, EMF
**Web**: HTML
Detect Diagram Format Programming Sample
-------------------------------------------
.. code-block:: python
from aspose.diagram import *
# For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET
# Detect the format of a diagram file
fileFormatInfo = FileFormatUtil.detectFileFormat(test.vsdx")
# Display the file format
print("File Format: " + str(fileFormatInfo))
Creating a diagram Document: Programming Samples
--------------------------------------------------
.. code-block:: python
from aspose.diagram import *
# For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET
# The path to the documents directory.
#Initialize a Diagram class
diagram = Diagram()
# Save diagram in the VSDX format
diagram.save("CreateNewVisio_out.vsdx", SaveFileFormat.VSDX)
Create a PDF with a Diagram
------------------------------------------------
.. code-block:: python
from aspose.diagram import *
# Load an exiting Visio diagram
vsdDiagram = Diagram("Drawing1.vsd")
# Save as PDF
vsdDiagram.save("SaveDiagramToPDFwithAspose_out.pdf", SaveFileFormat.PDF)
`Product Page <https://products.aspose.com/diagram/python-net>`_ | `Docs <https://docs.aspose.com/diagram/python-net/>`_ | `Demos <https://products.aspose.app/diagram/family/>`_ | `Blog <https://blog.aspose.com/category/diagram/>`_ | `Code Samples <https://github.com/aspose-diagram/Aspose.Diagram-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/diagram>`_ | `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/diagram/",
"name": "aspose-diagram-python",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.12,>=3.6",
"maintainer_email": null,
"keywords": "vsd, vsdx, vsdm, vstm, vstx, vdx, vsx, vtx, dxf, html5, pdf, png, emf, jpeg, visio, modeling, conversion, geometry, ",
"author": "aspose-diagram",
"author_email": null,
"download_url": null,
"platform": "macos_x86_64",
"description": "Product description \n==================================\n\n\n`Product Page <https://products.aspose.com/diagram/python-net>`_ | `Docs <https://docs.aspose.com/diagram/python-net/>`_ | `Demos <https://products.aspose.app/diagram/family/>`_ | `Blog <https://blog.aspose.com/category/diagram/>`_ | `Code Samples <https://github.com/aspose-diagram/Aspose.Diagram-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/diagram>`_ | `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/diagram/family>`_ demonstrating some of the most popular Aspose.diagram functionality.\n\nAspose.Diagram for Python via .Net is a scalable and feature-rich API to process visio files using Python. API offers Visio file creation, manipulation, conversion, rendering. Developers can format pages to the most granular level, create and manipulate shape, render pages, shapes to PDF and images, and much more - all without any dependency on Microsoft Office or Visio application.\n\n\n\nDiagram API Features\n-------------------------\n\nAspose.Diagram offers a wide arrange of features for creating, reading, manipulating and saving visio files:\n\n* Create visio files via API.\n* Convert shapes to images or PDF.\n* Manage comments & hyperlinks.\n* Convert pages to PDF, XPS & SVG formats.\n* Inter-convert files to popular visio formats.\n\n\nPerformance and Scalability\n-----------------------------------\n\nAspose.Diagram for Python via .NET is designed to perform equally well on the server or client-side. Aspose.Diagram for Python via .NET is a single .NET library that can be deployed with any .NET application by simply copying it. You do not have to worry about other services or modules.\n\n\n\nSupported Document Formats\n-----------------------------------\n\n\nAspose.Diagram for Python supports `a wide range of formats for loading and saving documents<https://docs.aspose.com/diagram/python-net/supported-file-formats/>`, some of them are listed below: \n\n**Microsoft Visio**: VSD, VSX,VTX, VDX, VSDX, VSTX, VSSX, VSTM, VSSM\n**Fixed Layout**: PDF, XPS\n**Images**: JPEG, PNG, BMP, SVG, TIFF, GIF, EMF\n**Web**: HTML\n\n\nDetect Diagram Format Programming Sample \n-------------------------------------------\n\n.. code-block:: python\n\n from aspose.diagram import *\n # For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET\n # Detect the format of a diagram file\n fileFormatInfo = FileFormatUtil.detectFileFormat(test.vsdx\")\n # Display the file format\n print(\"File Format: \" + str(fileFormatInfo))\n\n\nCreating a diagram Document: Programming Samples \n--------------------------------------------------\n\n.. code-block:: python\n\n from aspose.diagram import *\n # For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET\n # The path to the documents directory.\n #Initialize a Diagram class\n diagram = Diagram()\n # Save diagram in the VSDX format\n diagram.save(\"CreateNewVisio_out.vsdx\", SaveFileFormat.VSDX)\n\n\nCreate a PDF with a Diagram\n------------------------------------------------\n\n.. code-block:: python\n\n from aspose.diagram import *\n # Load an exiting Visio diagram\n vsdDiagram = Diagram(\"Drawing1.vsd\")\n\n # Save as PDF\n vsdDiagram.save(\"SaveDiagramToPDFwithAspose_out.pdf\", SaveFileFormat.PDF)\n\n\n\n`Product Page <https://products.aspose.com/diagram/python-net>`_ | `Docs <https://docs.aspose.com/diagram/python-net/>`_ | `Demos <https://products.aspose.app/diagram/family/>`_ | `Blog <https://blog.aspose.com/category/diagram/>`_ | `Code Samples <https://github.com/aspose-diagram/Aspose.Diagram-for-Python-via-.NET>`_ | `Free Support <https://forum.aspose.com/c/diagram>`_ | `Temporary License <https://purchase.aspose.com/temporary-license>`_ | `EULA <https://company.aspose.com/legal/eula>`_\n\n\n\n",
"bugtrack_url": null,
"license": "https://company.aspose.com/legal/eula",
"summary": "Aspose.Diagram for Python via .NET is a scalable and feature-rich API to process visio files using Python. API offers Visio file creation, manipulation, conversion and rendering. Developers can format pages to the most granular level, create and manipulate shape, render pages, shapes to PDF and images, and much more - all without any dependency on Microsoft Office or Visio application.",
"version": "24.10",
"project_urls": {
"Homepage": "https://products.aspose.com/diagram/"
},
"split_keywords": [
"vsd",
" vsdx",
" vsdm",
" vstm",
" vstx",
" vdx",
" vsx",
" vtx",
" dxf",
" html5",
" pdf",
" png",
" emf",
" jpeg",
" visio",
" modeling",
" conversion",
" geometry",
" "
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e9960e626f7232c403f76e834a1a508e88100734a036fcae31c76c384e731fad",
"md5": "0678789d496e6a88b9ab72abb3a9d91f",
"sha256": "123c771193dfec352257d3acff7d53097db082d3853b7623e5cea5545e1925d8"
},
"downloads": -1,
"filename": "aspose_diagram_python-24.10-py3-none-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "0678789d496e6a88b9ab72abb3a9d91f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.6",
"size": 51948488,
"upload_time": "2024-10-17T02:13:50",
"upload_time_iso_8601": "2024-10-17T02:13:50.543501Z",
"url": "https://files.pythonhosted.org/packages/e9/96/0e626f7232c403f76e834a1a508e88100734a036fcae31c76c384e731fad/aspose_diagram_python-24.10-py3-none-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ab05d1dcdf9da36dd495a5295e74ac939ceebdefe9e926ef17cb8d0e632a2eb",
"md5": "22ee29a36f4cb70e79e8ab66eff16b7a",
"sha256": "cfa1f4b2341d9b6f8d02772c94373c1a8114582148ac37fd0eda2bb51c429087"
},
"downloads": -1,
"filename": "aspose_diagram_python-24.10-py3-none-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "22ee29a36f4cb70e79e8ab66eff16b7a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.6",
"size": 39972566,
"upload_time": "2024-10-17T02:14:35",
"upload_time_iso_8601": "2024-10-17T02:14:35.772721Z",
"url": "https://files.pythonhosted.org/packages/0a/b0/5d1dcdf9da36dd495a5295e74ac939ceebdefe9e926ef17cb8d0e632a2eb/aspose_diagram_python-24.10-py3-none-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "217cdf31e11f2ea5a2943da732e0d8abe68b00ec21bae60e67736d55e4396dc5",
"md5": "8b8e706d21c7af94f354eb9af508cdfa",
"sha256": "fb08304fd6f023acfaa08ec371309c0346787f7164083d8055baae2d07ed6036"
},
"downloads": -1,
"filename": "aspose_diagram_python-24.10-py3-none-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "8b8e706d21c7af94f354eb9af508cdfa",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.6",
"size": 55846907,
"upload_time": "2024-10-17T02:14:58",
"upload_time_iso_8601": "2024-10-17T02:14:58.830450Z",
"url": "https://files.pythonhosted.org/packages/21/7c/df31e11f2ea5a2943da732e0d8abe68b00ec21bae60e67736d55e4396dc5/aspose_diagram_python-24.10-py3-none-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a3fb74341726350173892e9aa4d8c12660b6c6b52c5440ede1f452323aa8a49",
"md5": "d7146e64c5e8b36803a941edcbfd636b",
"sha256": "63eaed65f1d17caee3a55ac1ccffc6046b5ccf1d6157dc6e3f22fa50a1c6ac61"
},
"downloads": -1,
"filename": "aspose_diagram_python-24.10-py3-none-win32.whl",
"has_sig": false,
"md5_digest": "d7146e64c5e8b36803a941edcbfd636b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.6",
"size": 38539773,
"upload_time": "2024-10-17T02:16:36",
"upload_time_iso_8601": "2024-10-17T02:16:36.908315Z",
"url": "https://files.pythonhosted.org/packages/0a/3f/b74341726350173892e9aa4d8c12660b6c6b52c5440ede1f452323aa8a49/aspose_diagram_python-24.10-py3-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9cd5264cc7c0d98ba2c8520530a677e7a13f1c68d6daf2dcbe8b855d01e4471c",
"md5": "993a475b3846cb9306488382cc36f454",
"sha256": "4b31610986213d7fd4f68b2ff200b04e6afdd1a3f7e254a1cd744abcfb702c1b"
},
"downloads": -1,
"filename": "aspose_diagram_python-24.10-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "993a475b3846cb9306488382cc36f454",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.12,>=3.6",
"size": 43936099,
"upload_time": "2024-10-17T02:16:18",
"upload_time_iso_8601": "2024-10-17T02:16:18.179815Z",
"url": "https://files.pythonhosted.org/packages/9c/d5/264cc7c0d98ba2c8520530a677e7a13f1c68d6daf2dcbe8b855d01e4471c/aspose_diagram_python-24.10-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-17 02:13:50",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "aspose-diagram-python"
}