aspose-svg-net


Nameaspose-svg-net JSON
Version 25.8.0 PyPI version JSON
download
home_pagehttps://products.aspose.com/svg/python-net/
SummaryAspose.SVG for Python via .NET enables creating, editing, rendering, and converting SVGs to formats like PNG, PDF, and more, excelling in image vectorization. Perfect for developing SVG tools.
upload_time2025-08-29 10:07:17
maintainerNone
docs_urlNone
authorAspose
requires_python<3.14,>=3.5
licenseNone
keywords aspose aspose.svg aspose.total python component conholdate conholdate.total convert converter vectorization vectorizer vectorize encoding base64 css dom dom-manipulation image jpeg library linux macos microsoft mvc net-standard netcore netstandard to pdf png rotate security standard svg svg-to-gif svg-to-jpeg svg-to-pdf svg-to-png svg-to-tiff svg-to-xps png-to-svg jpg-to-svg visualstudio xpath xps svg windows vector graphics line bezier curves cubic glyphs paths text scaling rotation skewing fill dots bitmap html filters gaussian shadow lighting effects color linear radial
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Process & Manipulate SVG via Python API

<!--- banner links to [Temporary License](https://purchase.aspose.com/temporary-license) -->
[![banner](https://products.aspose.com/svg/images/aspose_svg-for-python-banner-TL.png)](https://purchase.aspose.com/temporary-license)

[Product Page](https://products.aspose.com/svg/python-net/) | [Docs](https://docs.aspose.com/svg/python-net/) | [Demos](https://products.aspose.app/svg/applications) | [API Reference](https://reference.aspose.com/svg/) | [Examples](https://github.com/aspose-svg/) | [Blog](https://blog.aspose.com/categories/aspose.svg-product-family/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/svg) 

[Aspose.SVG for Python via .NET](https://products.aspose.com/svg/python-net/) is a powerful on-premise class library designed to seamlessly work with SVG files in a wide range of operations without the need for additional SVG manipulation tools. It allows you to create, edit, optimize, and convert SVG. Python API allows you to manipulate documents and elements and provides robust navigation and inspection functionalities, such as XPath queries and CSS selectors. Developers can also vectorize images and texts, apply SVG transformations, filters, gradients, and patterns, and specify colors in different color formats. Aspose.SVG for Python via .NET supports both Windows and Unix platforms, making it perfectly suited for building applications such as SVG editors, converters, mergers, and image vectorizers catering to developers who require extensive SVG processing capabilities.

## SVG API Features

### Why Choose Aspose.SVG for Python via .NET

- **Cross-Platform Compatibility** – Aspose.SVG can be used to develop applications across different operating systems including Windows, Linux, and macOS.
- **Direct Programmatic Access** – The Python API provides developers with direct access to the SVG elements and their properties, facilitating precise control over SVG content.
- **Versatile Document Manipulation** The Python API enables comprehensive manipulation of SVG files, supporting a wide range of SVG specifications.
- **Extensive Documentation and Examples** – Aspose.SVG for Python via .NET provides detailed documentation and guides to help developers understand and use the API effectively, along with code examples for common tasks.

### General Features

The following are some popular features of Aspose.SVG for Python via .NET:

- **SVG Document Creation and Loading** – Create SVGs from scratch or load them from strings, streams, files, or URLs. Async loading is supported for efficiently handling external resources.
- **SVG Document Editing and Modification** – Insert new elements, update existing content, draw shapes, apply colors,  and refine paths - all through intuitive Python code that manipulates the DOM.
- **SVG Navigation and Inspection** – Navigate the SVG structure and inspect SVG documents using DOM methods, CSS selectors, or XPath queries to locate and work with specific elements.
- **High-Quality Conversion and Rendering** – Convert SVG content to PDF, XPS, or image formats such as PNG and JPEG, with advanced rendering controls for resolution, background, and layout.
- **Image and Text Vectorization** – Convert raster images into scalable SVG graphics, apply stylized stencil effects, or transform text into path elements.

## Supported File Formats

| Format  | Description                          | Load | Save |
|---------|--------------------------------------|------|------|
| [SVG](https://docs.fileformat.com/page-description-language/svg/)     | Scalable Vector Graphics Format      | ✔️    | ✔️    |
| [SVGZ](https://docs.fileformat.com/image/svgz/)    | Compressed version of SVG            | ✔️    | ✔️    |
| [PDF](https://docs.fileformat.com/pdf/)     | Portable Document Format             |      | ✔️    |
| [XPS](https://docs.fileformat.com/page-description-language/xps/)     | XML Paper Specification              |      | ✔️    |
| [TIFF](https://docs.fileformat.com/image/tiff/)    | Tagged Image File Format             |      | ✔️    |
| [BMP](https://docs.fileformat.com/image/bmp/)     | Bitmap Image File Format             |      | ✔️    |
| [PNG](https://docs.fileformat.com/image/png/)     | Portable Network Graphics            |      | ✔️    |
| [JPEG](https://docs.fileformat.com/image/jpeg/)    | Joint Photographic Expert Group      |      | ✔️    |
| [GIF](https://docs.fileformat.com/image/gif/)     | Graphical Interchange Format         |      | ✔️    |

## Platform Independence

Aspose.SVG for Python via .NET is currently supported on Windows for developing applications where Python 3.6 or later is installed. You can build both 32-bit and 64-bit Python applications. Support for Linux and macOS X is planned for future versions.

## Get Started

Ready to give Aspose.SVG for Python via .NET a try?

Simply run ```pip install aspose-svg-net``` from the Console to fetch the package.
If you already have Aspose.SVG for Python via .NET and want to upgrade the version, please run ```pip install --upgrade aspose-svg-net``` to get the latest version.

You can run the following snippets in your environment to see how Aspose.SVG works, or check out the [GitHub Repository](https://github.com/aspose-svg/) or [Aspose.SVG for Python via .NET Documentation](https://docs.aspose.com/svg/python-net/) for other common use cases.

## Create SVG Using Aspose.SVG for Python via .NET

You can create SVG from a string content using `SVGDocument(content, base_uri)` constructor:

```python
from aspose.svg import SVGDocument

documentContent = "<svg xmlns='http://www.w3.org/2000/svg'><circle cx='100' cy='100' r='40' stroke='#ff9390' stroke-width='4' fill='#FF7F50' /></svg>";

# Create a new SVG document
document = SVGDocument(documentContent, ".")

# Save the document
document.save("create-svg-from-string.svg")

```
Source - [Create SVG File, Load and Read SVG in Python](https://docs.aspose.com/svg/python-net/create-svg-file/)

## Convert SVG to PNG

Aspose.SVG for Python via .NET also allows you to convert SVG to PDF, XPS, PNG, JPEG, TIFF, WEBP, and other file formats. The following snippet demonstrates the conversion from SVG to PNG literally with a single line of code!

```python
from aspose.svg.converters import Converter
from aspose.svg.saving import ImageSaveOptions

# Convert SVG to PNG
Converter.convert_svg("document.svg", ImageSaveOptions(), "result.png")
```
Source - [Convert SVG to PNG](https://docs.aspose.com/svg/python-net/convert-svg-to-png/)

## Convert SVG to PDF using PdfSaveOptions

Aspose.SVG for Python via .NET also allows you to convert SVG to PDF, XPS, PNG, JPEG, TIFF, WEBP, and other file formats. The following snippet demonstrates the conversion from SVG to PNG literally with a single line of code!

```python
from aspose.svg import SVGDocument
from aspose.svg.converters import Converter
from aspose.svg.rendering import SizingType
from aspose.svg.drawing import Resolution
from aspose.svg.saving import PdfSaveOptions
from aspose.pydrawing import Color

# Open the SVG file
with SVGDocument("document.svg") as document:

	# Create PDF save options and customize them
	options = PdfSaveOptions()
	options.background_color = Color.from_argb(0, 255, 255, 255)
	options.page_setup.sizing = SizingType.FIT_CONTENT
	options.horizontal_resolution = Resolution.from_dots_per_inch(96.0)
	options.vertical_resolution = Resolution.from_dots_per_inch(96.0)
	options.jpeg_quality = 80

	# Convert SVG to PDF
	Converter.convert_svg(document, options, "document.pdf")
```
Source - [Convert SVG to PDF](https://docs.aspose.com/svg/python-net/convert-svg-to-pdf/)

## Using Python to Vectorize Images

Aspose.SVG for Python via .NET also allows you can convert a raster image to vector graphic using default or custom configuration options. You will be able to apply custom settings to get the best result of the image-to-vector conversion and save the output SVG file to your computer. The following snippet demonstrates the image vectorization:

```python
from aspose.svg.imagevectorization import BezierPathBuilder, ImageTraceSmoother, ImageVectorizer

# Set up Bezier path builder with smoothing and curve-fitting parameters
path_builder = BezierPathBuilder()
path_builder.trace_smoother = ImageTraceSmoother(2)
path_builder.error_threshold = 30.0
path_builder.max_iterations = 30

# Initialize the image vectorizer
vectorizer = ImageVectorizer()
vectorizer.configuration.path_builder = path_builder
vectorizer.configuration.colors_limit = 25
vectorizer.configuration.line_width = 1.0

# Vectorize the image
with vectorizer.vectorize("flower.jpg") as document:
    document.save("flower.svg")
```
Source - [Vectorizing Images](https://docs.aspose.com/svg/python-net/vectorize-images/)

[Product Page](https://products.aspose.com/svg/python-net/) | [Docs](https://docs.aspose.com/svg/python-net/) | [Demos](https://products.aspose.app/svg/applications) | [API Reference](https://reference.aspose.com/svg/python-net/) | [Examples](https://github.com/aspose-svg/) | [Blog](https://blog.aspose.com/categories/aspose.svg-product-family/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/svg) | [Temporary License](https://purchase.aspose.com/temporary-license)


            

Raw data

            {
    "_id": null,
    "home_page": "https://products.aspose.com/svg/python-net/",
    "name": "aspose-svg-net",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.14,>=3.5",
    "maintainer_email": null,
    "keywords": "Aspose, Aspose.SVG, Aspose.Total, Python, Component, Conholdate, Conholdate.Total, convert, converter, vectorization, vectorizer, vectorize, encoding, base64, css, DOM, dom-manipulation, image, JPEG, Library, Linux, macOS, Microsoft, mvc, net-standard, netcore, netstandard, to PDF, PNG, rotate, security, Standard, svg, svg-to-gif, svg-to-jpeg, svg-to-pdf, svg-to-png, svg-to-tiff, svg-to-xps, png-to-svg, jpg-to-svg, VisualStudio, XPath, XPS, SVG, Windows, Vector Graphics, line, Bezier Curves, Cubic, Glyphs, Paths, Text, Scaling, Rotation, Skewing, Fill, Dots, Bitmap, HTML, Filters, Gaussian, Shadow, Lighting Effects, Color, Linear, Radial",
    "author": "Aspose",
    "author_email": null,
    "download_url": null,
    "platform": "linux_x86_64",
    "description": "# Process & Manipulate SVG via Python API\n\n<!--- banner links to [Temporary License](https://purchase.aspose.com/temporary-license) -->\n[![banner](https://products.aspose.com/svg/images/aspose_svg-for-python-banner-TL.png)](https://purchase.aspose.com/temporary-license)\n\n[Product Page](https://products.aspose.com/svg/python-net/) | [Docs](https://docs.aspose.com/svg/python-net/) | [Demos](https://products.aspose.app/svg/applications) | [API Reference](https://reference.aspose.com/svg/) | [Examples](https://github.com/aspose-svg/) | [Blog](https://blog.aspose.com/categories/aspose.svg-product-family/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/svg) \n\n[Aspose.SVG for Python via .NET](https://products.aspose.com/svg/python-net/) is a powerful on-premise class library designed to seamlessly work with SVG files in a wide range of operations without the need for additional SVG manipulation tools. It allows you to create, edit, optimize, and convert SVG. Python API allows you to manipulate documents and elements and provides robust navigation and inspection functionalities, such as XPath queries and CSS selectors. Developers can also vectorize images and texts, apply SVG transformations, filters, gradients, and patterns, and specify colors in different color formats. Aspose.SVG for Python via .NET supports both Windows and Unix platforms, making it perfectly suited for building applications such as SVG editors, converters, mergers, and image vectorizers catering to developers who require extensive SVG processing capabilities.\n\n## SVG API Features\n\n### Why Choose Aspose.SVG for Python via .NET\n\n- **Cross-Platform Compatibility** \u2013 Aspose.SVG can be used to develop applications across different operating systems including Windows, Linux, and macOS.\n- **Direct Programmatic Access** \u2013 The Python API provides developers with direct access to the SVG elements and their properties, facilitating precise control over SVG content.\n- **Versatile Document Manipulation** The Python API enables comprehensive manipulation of SVG files, supporting a wide range of SVG specifications.\n- **Extensive Documentation and Examples** \u2013 Aspose.SVG for Python via .NET provides detailed documentation and guides to help developers understand and use the API effectively, along with code examples for common tasks.\n\n### General Features\n\nThe following are some popular features of Aspose.SVG for Python via .NET:\n\n- **SVG Document Creation and Loading** \u2013 Create SVGs from scratch or load them from strings, streams, files, or URLs. Async loading is supported for efficiently handling external resources.\n- **SVG Document Editing and Modification** \u2013 Insert new elements, update existing content, draw shapes, apply colors,  and refine paths - all through intuitive Python code that manipulates the DOM.\n- **SVG Navigation and Inspection** \u2013 Navigate the SVG structure and inspect SVG documents using DOM methods, CSS selectors, or XPath queries to locate and work with specific elements.\n- **High-Quality Conversion and Rendering** \u2013 Convert SVG content to PDF, XPS, or image formats such as PNG and JPEG, with advanced rendering controls for resolution, background, and layout.\n- **Image and Text Vectorization** \u2013 Convert raster images into scalable SVG graphics, apply stylized stencil effects, or transform text into path elements.\n\n## Supported File Formats\n\n| Format  | Description                          | Load | Save |\n|---------|--------------------------------------|------|------|\n| [SVG](https://docs.fileformat.com/page-description-language/svg/)     | Scalable Vector Graphics Format      | \u2714\ufe0f    | \u2714\ufe0f    |\n| [SVGZ](https://docs.fileformat.com/image/svgz/)    | Compressed version of SVG            | \u2714\ufe0f    | \u2714\ufe0f    |\n| [PDF](https://docs.fileformat.com/pdf/)     | Portable Document Format             |      | \u2714\ufe0f    |\n| [XPS](https://docs.fileformat.com/page-description-language/xps/)     | XML Paper Specification              |      | \u2714\ufe0f    |\n| [TIFF](https://docs.fileformat.com/image/tiff/)    | Tagged Image File Format             |      | \u2714\ufe0f    |\n| [BMP](https://docs.fileformat.com/image/bmp/)     | Bitmap Image File Format             |      | \u2714\ufe0f    |\n| [PNG](https://docs.fileformat.com/image/png/)     | Portable Network Graphics            |      | \u2714\ufe0f    |\n| [JPEG](https://docs.fileformat.com/image/jpeg/)    | Joint Photographic Expert Group      |      | \u2714\ufe0f    |\n| [GIF](https://docs.fileformat.com/image/gif/)     | Graphical Interchange Format         |      | \u2714\ufe0f    |\n\n## Platform Independence\n\nAspose.SVG for Python via .NET is currently supported on Windows for developing applications where Python 3.6 or later is installed. You can build both 32-bit and 64-bit Python applications. Support for Linux and macOS X is planned for future versions.\n\n## Get Started\n\nReady to give Aspose.SVG for Python via .NET a try?\n\nSimply run ```pip install aspose-svg-net``` from the Console to fetch the package.\nIf you already have Aspose.SVG for Python via .NET and want to upgrade the version, please run ```pip install --upgrade aspose-svg-net``` to get the latest version.\n\nYou can run the following snippets in your environment to see how Aspose.SVG works, or check out the [GitHub Repository](https://github.com/aspose-svg/) or [Aspose.SVG for Python via .NET Documentation](https://docs.aspose.com/svg/python-net/) for other common use cases.\n\n## Create SVG Using Aspose.SVG for Python via .NET\n\nYou can create SVG from a string content using `SVGDocument(content, base_uri)` constructor:\n\n```python\nfrom aspose.svg import SVGDocument\n\ndocumentContent = \"<svg xmlns='http://www.w3.org/2000/svg'><circle cx='100' cy='100' r='40' stroke='#ff9390' stroke-width='4' fill='#FF7F50' /></svg>\";\n\n# Create a new SVG document\ndocument = SVGDocument(documentContent, \".\")\n\n# Save the document\ndocument.save(\"create-svg-from-string.svg\")\n\n```\nSource - [Create SVG File, Load and Read SVG in Python](https://docs.aspose.com/svg/python-net/create-svg-file/)\n\n## Convert SVG to PNG\n\nAspose.SVG for Python via .NET also allows you to convert SVG to PDF, XPS, PNG, JPEG, TIFF, WEBP, and other file formats. The following snippet demonstrates the conversion from SVG to PNG literally with a single line of code!\n\n```python\nfrom aspose.svg.converters import Converter\nfrom aspose.svg.saving import ImageSaveOptions\n\n# Convert SVG to PNG\nConverter.convert_svg(\"document.svg\", ImageSaveOptions(), \"result.png\")\n```\nSource - [Convert SVG to PNG](https://docs.aspose.com/svg/python-net/convert-svg-to-png/)\n\n## Convert SVG to PDF using PdfSaveOptions\n\nAspose.SVG for Python via .NET also allows you to convert SVG to PDF, XPS, PNG, JPEG, TIFF, WEBP, and other file formats. The following snippet demonstrates the conversion from SVG to PNG literally with a single line of code!\n\n```python\nfrom aspose.svg import SVGDocument\nfrom aspose.svg.converters import Converter\nfrom aspose.svg.rendering import SizingType\nfrom aspose.svg.drawing import Resolution\nfrom aspose.svg.saving import PdfSaveOptions\nfrom aspose.pydrawing import Color\n\n# Open the SVG file\nwith SVGDocument(\"document.svg\") as document:\n\n\t# Create PDF save options and customize them\n\toptions = PdfSaveOptions()\n\toptions.background_color = Color.from_argb(0, 255, 255, 255)\n\toptions.page_setup.sizing = SizingType.FIT_CONTENT\n\toptions.horizontal_resolution = Resolution.from_dots_per_inch(96.0)\n\toptions.vertical_resolution = Resolution.from_dots_per_inch(96.0)\n\toptions.jpeg_quality = 80\n\n\t# Convert SVG to PDF\n\tConverter.convert_svg(document, options, \"document.pdf\")\n```\nSource - [Convert SVG to PDF](https://docs.aspose.com/svg/python-net/convert-svg-to-pdf/)\n\n## Using Python to Vectorize Images\n\nAspose.SVG for Python via .NET also allows you can convert a raster image to vector graphic using default or custom configuration options. You will be able to apply custom settings to get the best result of the image-to-vector conversion and save the output SVG file to your computer. The following snippet demonstrates the image vectorization:\n\n```python\nfrom aspose.svg.imagevectorization import BezierPathBuilder, ImageTraceSmoother, ImageVectorizer\n\n# Set up Bezier path builder with smoothing and curve-fitting parameters\npath_builder = BezierPathBuilder()\npath_builder.trace_smoother = ImageTraceSmoother(2)\npath_builder.error_threshold = 30.0\npath_builder.max_iterations = 30\n\n# Initialize the image vectorizer\nvectorizer = ImageVectorizer()\nvectorizer.configuration.path_builder = path_builder\nvectorizer.configuration.colors_limit = 25\nvectorizer.configuration.line_width = 1.0\n\n# Vectorize the image\nwith vectorizer.vectorize(\"flower.jpg\") as document:\n    document.save(\"flower.svg\")\n```\nSource - [Vectorizing Images](https://docs.aspose.com/svg/python-net/vectorize-images/)\n\n[Product Page](https://products.aspose.com/svg/python-net/) | [Docs](https://docs.aspose.com/svg/python-net/) | [Demos](https://products.aspose.app/svg/applications) | [API Reference](https://reference.aspose.com/svg/python-net/) | [Examples](https://github.com/aspose-svg/) | [Blog](https://blog.aspose.com/categories/aspose.svg-product-family/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/svg) | [Temporary License](https://purchase.aspose.com/temporary-license)\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Aspose.SVG for Python via .NET enables creating, editing, rendering, and converting SVGs to formats like PNG, PDF, and more, excelling in image vectorization. Perfect for developing SVG tools.",
    "version": "25.8.0",
    "project_urls": {
        "API Reference": "https://reference.aspose.com/svg/python-net/",
        "Blog": "https://blog.aspose.com/category/svg/",
        "Demos": "https://products.aspose.app/svg/family",
        "Docs": "https://docs.aspose.com/svg/python-net/",
        "Examples": "https://github.com/aspose-svg/Aspose.SVG-for-Python-via-.NET/",
        "Free Support": "https://forum.aspose.com/c/svg",
        "Homepage": "https://products.aspose.com/svg/python-net/",
        "Release Notes": "https://releases.aspose.com/svg/python-net/release-notes/2025/aspose-svg-python-via-dotnet-25-8-release-notes/",
        "Temporary License": "https://purchase.aspose.com/temporary-license"
    },
    "split_keywords": [
        "aspose",
        " aspose.svg",
        " aspose.total",
        " python",
        " component",
        " conholdate",
        " conholdate.total",
        " convert",
        " converter",
        " vectorization",
        " vectorizer",
        " vectorize",
        " encoding",
        " base64",
        " css",
        " dom",
        " dom-manipulation",
        " image",
        " jpeg",
        " library",
        " linux",
        " macos",
        " microsoft",
        " mvc",
        " net-standard",
        " netcore",
        " netstandard",
        " to pdf",
        " png",
        " rotate",
        " security",
        " standard",
        " svg",
        " svg-to-gif",
        " svg-to-jpeg",
        " svg-to-pdf",
        " svg-to-png",
        " svg-to-tiff",
        " svg-to-xps",
        " png-to-svg",
        " jpg-to-svg",
        " visualstudio",
        " xpath",
        " xps",
        " svg",
        " windows",
        " vector graphics",
        " line",
        " bezier curves",
        " cubic",
        " glyphs",
        " paths",
        " text",
        " scaling",
        " rotation",
        " skewing",
        " fill",
        " dots",
        " bitmap",
        " html",
        " filters",
        " gaussian",
        " shadow",
        " lighting effects",
        " color",
        " linear",
        " radial"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "630d27ef70ec4381e04308b0f6f9cfc46cb32a088f68dd63720faa30086a576c",
                "md5": "54af5f165393583e7fb12cc0265a9ae1",
                "sha256": "dd8a15e018754c5424cf17458016ca209010142dc4381731760f5ac681525bd8"
            },
            "downloads": -1,
            "filename": "aspose_svg_net-25.8.0-py3-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54af5f165393583e7fb12cc0265a9ae1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.14,>=3.5",
            "size": 78597499,
            "upload_time": "2025-08-29T10:07:17",
            "upload_time_iso_8601": "2025-08-29T10:07:17.696934Z",
            "url": "https://files.pythonhosted.org/packages/63/0d/27ef70ec4381e04308b0f6f9cfc46cb32a088f68dd63720faa30086a576c/aspose_svg_net-25.8.0-py3-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d2b8473387efef1bc71dd6d94993dda54c68625de52fe527bea861bea914ae0",
                "md5": "cb3aec6f9046e008d731b69a0b9727f0",
                "sha256": "c483de231b3bfc8182d4420b30adcee4247383bc04f411959e08c695a37d5b1f"
            },
            "downloads": -1,
            "filename": "aspose_svg_net-25.8.0-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "cb3aec6f9046e008d731b69a0b9727f0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.14,>=3.5",
            "size": 49995069,
            "upload_time": "2025-08-29T10:07:21",
            "upload_time_iso_8601": "2025-08-29T10:07:21.626816Z",
            "url": "https://files.pythonhosted.org/packages/5d/2b/8473387efef1bc71dd6d94993dda54c68625de52fe527bea861bea914ae0/aspose_svg_net-25.8.0-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f384e605158d7736c260c1e98c85c90fc1944d2f7f5653584e1dfbabcba021e",
                "md5": "4f004abf3c612347dec65e8f3c448b17",
                "sha256": "931bb080720b2c3ceb1d6b6e2f972681bd293aed1b1233bbe6087d0a7b8b472a"
            },
            "downloads": -1,
            "filename": "aspose_svg_net-25.8.0-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f004abf3c612347dec65e8f3c448b17",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.14,>=3.5",
            "size": 57184172,
            "upload_time": "2025-08-29T10:07:25",
            "upload_time_iso_8601": "2025-08-29T10:07:25.600166Z",
            "url": "https://files.pythonhosted.org/packages/4f/38/4e605158d7736c260c1e98c85c90fc1944d2f7f5653584e1dfbabcba021e/aspose_svg_net-25.8.0-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-29 10:07:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aspose-svg",
    "github_project": "Aspose.SVG-for-Python-via-.NET",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "aspose-svg-net"
}
        
Elapsed time: 3.24785s