aspose-html-net 25.7.0__py3-none-manylinux1_x86_64.whl → 25.8.0__py3-none-manylinux1_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
@@ -6951,6 +6951,7 @@ class SVGDescElement(SVGElement):
6951
6951
 
6952
6952
  class SVGDocument(aspose.html.dom.Document):
6953
6953
  '''An ``SVGDocument`` is the root of the SVG hierarchy and holds the entire content. Besides providing access to the hierarchy, it also provides some convenience methods for accessing certain sets of information from the document.
6954
+ In addition to loading standard .svg files, both the constructors and the :py:func:`aspose.html.dom.Document.navigate` method can load gzip-compressed .svgz files.
6954
6955
  When an ‘svg’ element is embedded inline as a component of a document from another namespace, such as when an ‘svg’ element is embedded inline within an XHTML document [XHTML], then an SVGDocument object will not exist; instead, the root object in the document object hierarchy will be a Document object of a different type, such as an HTMLDocument object.
6955
6956
  However, an SVGDocument object will indeed exist when the root element of the XML document hierarchy is an ‘svg’ element, such as when viewing a stand-alone SVG file(i.e., a file with MIME type "image/svg+xml"). In this case, the SVGDocument object will be the root object of the document object model hierarchy.'''
6956
6957
 
@@ -7206,6 +7207,7 @@ class SVGDocument(aspose.html.dom.Document):
7206
7207
  def save(self, url : aspose.html.Url):
7207
7208
  '''Saves the document to local file specified by ``url``. All resources used in this document will be saved in
7208
7209
  to adjacent folder, whose name will be constructed as: output_file_name + "_files".
7210
+ If the specified ``url`` ends with ".svgz", the document will be saved as a compressed SVGZ file.
7209
7211
 
7210
7212
  :param url: Local URL to output file.'''
7211
7213
  ...
@@ -7214,6 +7216,7 @@ class SVGDocument(aspose.html.dom.Document):
7214
7216
  def save(self, path : str):
7215
7217
  '''Saves the document to local file specified by ``path``. All resources used in this document will be saved in
7216
7218
  to adjacent folder, whose name will be constructed as: output_file_name + "_files".
7219
+ If the specified ``url`` ends with ".svgz", the document will be saved as a compressed SVGZ file.
7217
7220
 
7218
7221
  :param path: Local path to output file.'''
7219
7222
  ...
@@ -7244,11 +7247,13 @@ class SVGDocument(aspose.html.dom.Document):
7244
7247
 
7245
7248
  @overload
7246
7249
  def save(self, path : str, save_options : aspose.html.dom.svg.saving.SVGSaveOptions):
7247
- '''Saves the document to local file specified by ``path``. All resources used in this document will be saved in
7248
- to adjacent folder, whose name will be constructed as: output_file_name + "_files".
7250
+ '''Saves the document as an ``.svg`` file to the local path specified by
7251
+ ``path``.
7252
+ Any external resources are written to a sibling folder named
7253
+ ``{output_file_name}_files``.
7249
7254
 
7250
- :param path: Local path to output file.
7251
- :param save_options: SVG save options.'''
7255
+ :param path: Absolute or relative path of the target ``.svg`` file.
7256
+ :param save_options: Options that control plain-SVG serialization.'''
7252
7257
  ...
7253
7258
 
7254
7259
  @overload
@@ -7270,11 +7275,41 @@ class SVGDocument(aspose.html.dom.Document):
7270
7275
 
7271
7276
  @overload
7272
7277
  def save(self, url : aspose.html.Url, save_options : aspose.html.dom.svg.saving.SVGSaveOptions):
7273
- '''Saves the document to local file specified by ``url``. All resources used in this document will be saved in
7274
- to adjacent folder, whose name will be constructed as: output_file_name + "_files".
7278
+ '''Saves the document as an ``.svg`` file to ``url``.
7279
+ All external resources are placed in a sibling folder named
7280
+ ``{output_file_name}_files``.
7275
7281
 
7276
- :param url: Local URL to output file.
7277
- :param save_options: SVG save options.'''
7282
+ :param url: Local path of the target ``.svg`` file.
7283
+ :param save_options: Options that control plain-SVG serialization.'''
7284
+ ...
7285
+
7286
+ @overload
7287
+ def save(self, url : aspose.html.Url, save_options : aspose.html.dom.svg.saving.SVGZSaveOptions):
7288
+ '''Saves the document as a compressed ``.svgz`` file to ``url``.
7289
+ All external resources are placed in a sibling folder named
7290
+ ``{output_file_name}_files``.
7291
+
7292
+ :param url: Local path of the target ``.svgz`` file.
7293
+ :param save_options: Options that control SVGZ serialization.'''
7294
+ ...
7295
+
7296
+ @overload
7297
+ def save(self, resource_handler : aspose.html.saving.resourcehandlers.ResourceHandler, save_options : aspose.html.dom.svg.saving.SVGZSaveOptions):
7298
+ '''Saves the document content and associated resources using the specified :py:class:`aspose.html.saving.resourcehandlers.ResourceHandler`.
7299
+
7300
+ :param resource_handler: The resource handler to manage document resources, such as file system or memory-based storage.
7301
+ :param save_options: Options that specify additional saving parameters, such as vectorization preferences.'''
7302
+ ...
7303
+
7304
+ @overload
7305
+ def save(self, path : str, save_options : aspose.html.dom.svg.saving.SVGZSaveOptions):
7306
+ '''Saves the document as a compressed ``.svgz`` file to the local path specified by
7307
+ ``path``.
7308
+ Any external resources are written to a sibling folder named
7309
+ ``{output_file_name}_files``.
7310
+
7311
+ :param path: Absolute or relative path of the target ``.svgz`` file.
7312
+ :param save_options: Options that control SVGZ serialization.'''
7278
7313
  ...
7279
7314
 
7280
7315
  def get_platform_type(self) -> Type:
@@ -70,6 +70,23 @@ class SVGSaveOptions(aspose.html.saving.SaveOptions):
70
70
 
71
71
  ...
72
72
 
73
+ class SVGZSaveOptions(aspose.html.saving.SaveOptions):
74
+ '''Represents SVGZ save options.'''
75
+
76
+ @property
77
+ def resource_handling_options(self) -> aspose.html.saving.ResourceHandlingOptions:
78
+ ...
79
+
80
+ @property
81
+ def vectorize_text(self) -> bool:
82
+ ...
83
+
84
+ @vectorize_text.setter
85
+ def vectorize_text(self, value : bool):
86
+ ...
87
+
88
+ ...
89
+
73
90
  class SVGSaveFormat:
74
91
  '''Specifies format in which document is saved.'''
75
92
 
@@ -79,5 +96,11 @@ class SVGSaveFormat:
79
96
  '''Document will be saved as SVG.'''
80
97
  ...
81
98
 
99
+ @classmethod
100
+ @property
101
+ def SVGZ(cls) -> SVGSaveFormat:
102
+ '''Document will be saved as SVGZ.'''
103
+ ...
104
+
82
105
  ...
83
106
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aspose-html-net
3
- Version: 25.7.0
3
+ Version: 25.8.0
4
4
  Summary: Aspose.HTML for Python via .NET is a powerful API for Python that provides a headless browser functionality, allowing you to work with HTML documents in a variety of ways. With this API, you can easily create new HTML documents or open existing ones from different sources. Once you have the document, you can perform various manipulation operations, such as removing and replacing HTML nodes.
5
5
  Home-page: https://products.aspose.com/html/python-net/
6
6
  Author: Aspose
7
7
  License: UNKNOWN
8
8
  Project-URL: Docs, https://docs.aspose.com/html/python-net/
9
- Project-URL: Release Notes, https://releases.aspose.com/html/python-net/release-notes/2025/aspose-html-for-python-via-dotnet-25-7-release-notes/
9
+ Project-URL: Release Notes, https://releases.aspose.com/html/python-net/release-notes/2025/aspose-html-for-python-via-dotnet-25-8-release-notes/
10
10
  Project-URL: Demos, https://products.aspose.app/html/applications
11
11
  Project-URL: API Reference, https://reference.aspose.com/html/python-net/
12
12
  Project-URL: Examples, https://github.com/aspose-html/
@@ -11,12 +11,12 @@ aspose/html/dom/canvas/__init__.pyi,sha256=WyFJfu6CuZywNSy1rvjLiYv7FLGqDaWLoL9H-
11
11
  aspose/html/dom/css/__init__.pyi,sha256=bJ9WcHj5ZN1esKmjcYNcDmboypO1dAyeU-9efgU3gdQ,93106
12
12
  aspose/html/dom/events/__init__.pyi,sha256=LMdIvHkw4TIZg2FshjsKXcrlDXC7j9CjljQfCjZJRiE,50887
13
13
  aspose/html/dom/mutations/__init__.pyi,sha256=_lR2KrfT5Cf8nIB0kxydOZo-ggTqZJN0ZQr_wzx7EA0,9339
14
- aspose/html/dom/svg/__init__.pyi,sha256=VYLELAXcDUBgk6w37OZ5y2TvUZQSec_whDj0bjuf1AE,1472138
14
+ aspose/html/dom/svg/__init__.pyi,sha256=zQIMoNo47ZBKBYFKJTOGXU7f6_575f4H_havn_FZ1Hk,1474106
15
15
  aspose/html/dom/svg/datatypes/__init__.pyi,sha256=f7hzhyqmUXA1dAN09IArfTv-Lm4m5toVRb-HV9zivL4,40381
16
16
  aspose/html/dom/svg/events/__init__.pyi,sha256=5R6tslFJS-Kqw0tOh_DFmZDtsWZLnuYWcsQXn3fgG6Y,9859
17
17
  aspose/html/dom/svg/filters/__init__.pyi,sha256=OlBQyaoM9h-adpku9v4jfavgr_sTUMffSHt_4K2QBm0,725881
18
18
  aspose/html/dom/svg/paths/__init__.pyi,sha256=x9BjJRWEBfzCppTK0bXvfbhefe5_OjMylIskZ-xbr58,101633
19
- aspose/html/dom/svg/saving/__init__.pyi,sha256=dtaQi1V77-ZWDkhPuu_FJ_NPNeMRr3sIclpigmVe_nI,2449
19
+ aspose/html/dom/svg/saving/__init__.pyi,sha256=nSMRK3eT1HHwCsT1WfGzAGQHBeUMu1hCjLYeQV8EYkY,2963
20
20
  aspose/html/dom/traversal/__init__.pyi,sha256=NM_s8MNbuD6u8DkkLkd3Cxl4TtBxHYWQAXAiMxLlYHc,19285
21
21
  aspose/html/dom/traversal/filters/__init__.pyi,sha256=I3UqxZvtjZmlEiTjv2fMDD6ZOvz6VUgfjsL3wO9fDVU,6377
22
22
  aspose/html/dom/views/__init__.pyi,sha256=mJh8z8E_3IsOgUDRJ89CBmm8znV57MWK-MkKJGQxQfA,2611
@@ -50,14 +50,14 @@ aspose/html/toolkit/markdown/syntax/text/__init__.pyi,sha256=ie7eNsE_xdzDipof40L
50
50
  aspose/html/toolkit/optimizers/__init__.pyi,sha256=aGegLBHHcasELmZdgCe43_xFOTcOVAHZ_eFFBSyhWQk,6442
51
51
  aspose/html/window/__init__.pyi,sha256=voPSQu-nno8xjCIiKs2HNTM0OY06ZEijOzAbdT_FEME,24865
52
52
  aspose/__init__.py,sha256=BZzm7zoBt2MkmKtNe7cyCVeUKSx7QjTyZke3W5jbaAE,3188
53
- aspose/html.cpython-310-x86_64-linux-gnu.so,sha256=LLQcImmY25kPbBDv9Kg1pOLioZCC609LHLpKyIPc_28,13278680
54
- aspose/html.cpython-311-x86_64-linux-gnu.so,sha256=fMJMj_VQgPErAb7G16tjxifi8I1xNNcztACkf7rMhZ4,13278672
55
- aspose/html.cpython-313-x86_64-linux-gnu.so,sha256=vd6ar6c7rLZrlOnJlXIticQ4hPwUsu7Y4e7EptOqyxE,13453936
56
- aspose/html.cpython-35m-x86_64-linux-gnu.so,sha256=urQcIUZrtqUSGp_dogEFBhgJ0ZFDP7AV4wCP00QOHXI,13220072
57
- aspose/html.cpython-36m-x86_64-linux-gnu.so,sha256=FrNzmR9adakRcPS3taqf6fWkgLjXrOYySieCo9LFkvI,13220072
58
- aspose/html.cpython-37m-x86_64-linux-gnu.so,sha256=TRR9LLtyUhQusXtOUfI5FQVnDwDx2qBw_sJR6_mH-L4,13220032
59
- aspose/html.cpython-38-x86_64-linux-gnu.so,sha256=JTuWdG0dUq3mgYblFJ_1T99yxrSkQW03-g4rPTtvEJ8,13270384
60
- aspose/html.cpython-39-x86_64-linux-gnu.so,sha256=pU580IUzPzd6dxQ6g8GbTm2ZEWK9RJxcbXhhNtegBM0,13278696
53
+ aspose/html.cpython-310-x86_64-linux-gnu.so,sha256=082-nm2dAHgI8iS7pI4HbuVW2W6OgrlKZhvGm5w6uyc,13291872
54
+ aspose/html.cpython-311-x86_64-linux-gnu.so,sha256=e9vhMK5UYeZKmJd47zxQFBYS8UK0d_wnJ7o9FrGGFNg,13291872
55
+ aspose/html.cpython-313-x86_64-linux-gnu.so,sha256=YQOzq1N8_yBraQVQzLyNe0ZDhd6w9wnU6ZKdnd3gTE4,13467128
56
+ aspose/html.cpython-35m-x86_64-linux-gnu.so,sha256=nLn73P4NUNTX4I55KGWF4WJ1kI57UxQuJpT9JfHajr4,13237368
57
+ aspose/html.cpython-36m-x86_64-linux-gnu.so,sha256=5lEWVACDqYPv_4uOz0ViAqSIffho8aCoKljX_x5gYO8,13237368
58
+ aspose/html.cpython-37m-x86_64-linux-gnu.so,sha256=GppcB8tv7hzgmbJkOdZAIcjRU5zwr4vH5hk_cLdAq8A,13237320
59
+ aspose/html.cpython-38-x86_64-linux-gnu.so,sha256=bf04oTeC_mekobunAkWVslyNYnJNQVGPDZU0JpvIiXI,13283584
60
+ aspose/html.cpython-39-x86_64-linux-gnu.so,sha256=l0-SHFqDXvU9MnFr5UlW_cY40M37LabAJdB6yF90O_o,13291888
61
61
  aspose/pycore.cpython-310-x86_64-linux-gnu.so,sha256=MJJqnWv03T03alL5kuR3hNRVpZdVCJgrAVPTkVdggfM,171072
62
62
  aspose/pycore.cpython-311-x86_64-linux-gnu.so,sha256=BzFQggLQGVyx8UOyd6ELT4QD1pjU-WMu_90jTqqLHrM,171072
63
63
  aspose/pycore.cpython-313-x86_64-linux-gnu.so,sha256=WgF2vmP68v4NJTK6EoqB1xwNfZauJwZbeW01uqpKv8U,171016
@@ -92,7 +92,7 @@ aspose/pyreflection.cpython-38-x86_64-linux-gnu.so,sha256=ff2CzzjYLyo4TYPElZXxzY
92
92
  aspose/pyreflection.cpython-39-x86_64-linux-gnu.so,sha256=ejlT4FnfrWlL6XGOcQhb1DAWTrEuVTgpHlqHboILRo8,666496
93
93
  aspose/__pyinstaller/__init__.pyi,sha256=JUQjpLnZGSJEDwHrogA4y1SSuAI9uGQxXL40_PPuGes,31
94
94
  aspose/__pyinstaller/hook-aspose.py,sha256=G2uQAF1mgFtEjkZFyvcElHUEzLLoFGdqVOMAs9bsTi0,258
95
- aspose/assemblies/html/Aspose.HTML.dll,sha256=bEVpCOjqH011Qcy-5PIj8dxg74tviFejf_4q999JmTU,8944992
95
+ aspose/assemblies/html/Aspose.HTML.dll,sha256=rlimIRUYZbGEyk7-gV9ruNqzW4dZNLqnN3tdqks1RdU,8957792
96
96
  aspose/assemblies/html/Microsoft.Extensions.Logging.Abstractions.dll,sha256=ugmwtqiRElj4isMBMibMwG59NCgNiQb_IGZvvYEtOvQ,66176
97
97
  aspose/assemblies/html/Microsoft.Win32.SystemEvents.dll,sha256=QV6B1p_dQJO7qHvPN0JZr5UKKFp-s9zZSnViNcpgVN8,27528
98
98
  aspose/assemblies/html/System.Diagnostics.DiagnosticSource.dll,sha256=-GyWeDxbygECfqj6Vrr75_1lzdDcJb9OxfZoHsn6t1Q,159872
@@ -102,7 +102,7 @@ aspose/assemblies/html/System.Security.AccessControl.dll,sha256=kwhIScF6IfZBwTyf
102
102
  aspose/assemblies/html/System.Security.Permissions.dll,sha256=Fc4jFXYMaWW2W3h8IdcgJ75gPchQugiuaBea-ERGco4,97160
103
103
  aspose/assemblies/html/System.Security.Principal.Windows.dll,sha256=9HDH7g-Z9c6qJfUZcJiM-83b4PjdhJHKPpz0-fUv23U,37768
104
104
  aspose/assemblies/html/System.Windows.Extensions.dll,sha256=BbG3Acl8iXmfE3LuNvbKYS6X2odUBKq_rEdnj-dGEos,25480
105
- aspose/assemblies/html/WrpInterop.Aspose.Html.dll,sha256=THI1XhDtOgUHTs8AM8HvEUrgTCmE2SI72qOm7HSqauk,1249792
105
+ aspose/assemblies/html/WrpInterop.Aspose.Html.dll,sha256=HYCpYyzvJ5is2T-feGuYawdf3jskm3_BJYwiAxgTGpo,1251328
106
106
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=FpZww8Viow3BxyQptCxPKo7dVYTDqs5eL2_1aFi8_Wc,93696
107
107
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=QV6B1p_dQJO7qHvPN0JZr5UKKFp-s9zZSnViNcpgVN8,27528
108
108
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=-Jy68TM39pwgsw9ojLHIK5U-YBC2a81c9yMGYaqXd48,419720
@@ -313,8 +313,8 @@ aspose/pygc/__pyinstaller/hook-aspose.pygc.py,sha256=6R0gEknOsHoQBZRHzyvgD4-PU30
313
313
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
314
314
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
315
315
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
316
- aspose_html_net-25.7.0.dist-info/METADATA,sha256=lxbZy4b8a5XV6sGYp2nyL0aGVUCnoS1HhdEoafrZHYg,13978
317
- aspose_html_net-25.7.0.dist-info/WHEEL,sha256=-kQi_VMfvRQozZJT7HUPMfY-5vLo0LVTmAylNJ3Ft98,106
318
- aspose_html_net-25.7.0.dist-info/entry_points.txt,sha256=ncOOUOA7P4CKYv0p9YBs_Erf12mciNs3kqNIdTh4bvw,67
319
- aspose_html_net-25.7.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
320
- aspose_html_net-25.7.0.dist-info/RECORD,,
316
+ aspose_html_net-25.8.0.dist-info/METADATA,sha256=_7N1cmxpjeMvlcV-QyiwClbWCq4UCzwVrNTXGHV5-fA,13978
317
+ aspose_html_net-25.8.0.dist-info/WHEEL,sha256=-kQi_VMfvRQozZJT7HUPMfY-5vLo0LVTmAylNJ3Ft98,106
318
+ aspose_html_net-25.8.0.dist-info/entry_points.txt,sha256=ncOOUOA7P4CKYv0p9YBs_Erf12mciNs3kqNIdTh4bvw,67
319
+ aspose_html_net-25.8.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
320
+ aspose_html_net-25.8.0.dist-info/RECORD,,