Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Words for Python via .NET 24.4.0 macOS 10.14 Mojave x86_64

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 73.8MB
  • Date Added:
  • 9/4/2024

Description

This wheel contains Aspose.Words for Python via .NET version 24.4.0, built for macOS 10.14 (Mojave) and targeting the x86_64 architecture.

File Details

Aspose.Words for Python via .NET 24.4.0 brings a range of new features and enhancements for Python developers to supercharge their Python Word document processing applications on macOS x64 systems.

Export Documents as WEBP Images

Save your Word documents as high-quality WEBP images with the addition of the SaveFormat.WebP enumeration member. This update to the Python Word document API allows for seamless integration of WEBP images into your workflows.

Chart Customization at Your Fingertips

The enhanced Chart API in Aspose.Words for Python via .NET 24.4.0 lets you control the appearance of various chart elements, including the title and legend. Unleash your creativity and create stunning, customized charts directly within your Python apps. Please check the Python code sample below for more:

import aspose.words as aw

doc = aw.Document()
builder = aw.DocumentBuilder(doc)

shape = builder.insert_chart(chart_type=aw.drawing.charts.ChartType.COLUMN, width=432, height=252)
chart = shape.chart

series = chart.series
series.clear()

categories = ["Category 1", "Category 2"]
series.add(series_name="Series 1", categories=categories, values=[1, 2])
series.add(series_name="Series 2", categories=categories, values=[3, 4])

chart.format.fill.solid(drawing.Color.dark_slate_gray)

chart.axis_x.tick_labels.position = aw.drawing.charts.AxisTickLabelPosition.NONE
chart.axis_y.tick_labels.position = aw.drawing.charts.AxisTickLabelPosition.NONE

chart.title.format.fill.solid(drawing.Color.light_goldenrod_yellow)

chart.axis_x.title.show = True
chart.axis_x.title.format.fill.solid(drawing.Color.light_goldenrod_yellow)

chart.legend.format.fill.solid(drawing.Color.light_goldenrod_yellow)
doc.save("Charts.ChartFormat.docx")

Source*

Digital Signatures Made Easy

Effortlessly add digital signatures with comments and timestamps to your Word documents. This update introduces new features that allow you to specify signing options while saving documents, enhancing document security and traceability. The provided Python code example demonstrates this functionality in action:

import aspose.words as aw
from datetime import datetime

doc = aw.Document("Document.docx")

certificate_holder = aw.digitalsignatures.CertificateHolder.create("morzal.pfx", "aw")
save_options = aw.saving.OoxmlSaveOptions()
sign_options = aw.digitalsignatures.SignOptions()
sign_options.comments = "Some comments"
sign_options.sign_time = datetime.now()
save_options.digital_signature_details = aw.saving.DigitalSignatureDetails(certificate_holder, sign_options)

doc.save("OoxmlSaveOptions.DigitalSignature.docx", save_options)

Source*

Font Embedding Simplified

This update streamlines font handling within your Python apps on macOS x64. Now, you can embed fonts declared within @font-face rules when loading HTML documents and ensure consistent font rendering in the resulting Word document, as illustrated by the provided Python code example:

import aspose.words as aw

load_options = aw.loading.HtmlLoadOptions()
load_options.support_font_face_rules = True
doc = aw.Document("Html with FontFace.html", load_options)
self.assertEqual("Squarish Sans CT Regular", doc.font_infos[0].name)

Source*

Enhance Your Visuals

Freshen up your documents by applying glow and reflection effects to drawing objects with version 24.4.0 of the Python API. Create dynamic shapes that grab attention and enhance the visual appeal of your content. Explore the manipulation of glow effects through this Python code example:

import aspose.words as aw
import aspose.pydrawing

doc = aw.Document("Various shapes.docx")
shape = doc.get_child(aw.NodeType.SHAPE, 0, True).as_shape()

shape.glow.color = aspose.pydrawing.Color.salmon
shape.glow.radius = 30
shape.glow.transparency = 0.15

doc.save("Shape.Glow.docx")

doc = aw.Document("Shape.Glow.docx")
shape = doc.get_child(aw.NodeType.SHAPE, 0, True).as_shape()

self.assertEqual(aspose.pydrawing.Color.from_argb(217, 250, 128, 114).to_argb(), shape.glow.color.to_argb())
self.assertEqual(30, shape.glow.radius)
self.assertAlmostEqual(0.15, shape.glow.transparency, delta=0.01)

shape.glow.remove()

self.assertEqual(aspose.pydrawing.Color.black.to_argb(), shape.glow.color.to_argb())
self.assertEqual(0, shape.glow.radius)
self.assertEqual(0, shape.glow.transparency)

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Words for Python via .NET 24.4.0 Release Notes.

 English