aspose-html-net 24.7.0__py3-none-win32.whl → 24.9.0__py3-none-win32.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. aspose/__init__.py +75 -132
  2. aspose/assemblies/html/Aspose.HTML.dll +0 -0
  3. aspose/assemblies/html/WrpInterop.Aspose.Html.dll +0 -0
  4. aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll +0 -0
  5. aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll +0 -0
  6. aspose/assemblies/pygc/Aspose.PyGC.dll +0 -0
  7. aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll +0 -0
  8. aspose/html/__nuitka/__init__.pyi +1 -0
  9. aspose/html/__nuitka/aspose-html.nuitka-package.config.yml +19 -0
  10. aspose/html/drawing/__init__.pyi +511 -35
  11. aspose/html/rendering/__init__.pyi +69 -73
  12. aspose/html/rendering/doc/__init__.pyi +5 -5
  13. aspose/html/rendering/image/__init__.pyi +19 -88
  14. aspose/html/rendering/pdf/__init__.pyi +18 -88
  15. aspose/html/rendering/xps/__init__.pyi +21 -89
  16. aspose/html/toolkit/markdown/syntax/__init__.pyi +1 -1
  17. aspose/html.cp310-win32.pyd +0 -0
  18. aspose/html.cp311-win32.pyd +0 -0
  19. aspose/html.cp35-win32.pyd +0 -0
  20. aspose/html.cp36-win32.pyd +0 -0
  21. aspose/html.cp37-win32.pyd +0 -0
  22. aspose/html.cp38-win32.pyd +0 -0
  23. aspose/html.cp39-win32.pyd +0 -0
  24. aspose/netcore/netcore3.1/aspose.embed.coreclrwrap.dll +0 -0
  25. aspose/pycore.cp310-win32.pyd +0 -0
  26. aspose/pycore.cp311-win32.pyd +0 -0
  27. aspose/pycore.cp35-win32.pyd +0 -0
  28. aspose/pycore.cp36-win32.pyd +0 -0
  29. aspose/pycore.cp37-win32.pyd +0 -0
  30. aspose/pycore.cp38-win32.pyd +0 -0
  31. aspose/pycore.cp39-win32.pyd +0 -0
  32. aspose/pydrawing.cp310-win32.pyd +0 -0
  33. aspose/pydrawing.cp311-win32.pyd +0 -0
  34. aspose/pydrawing.cp35-win32.pyd +0 -0
  35. aspose/pydrawing.cp36-win32.pyd +0 -0
  36. aspose/pydrawing.cp37-win32.pyd +0 -0
  37. aspose/pydrawing.cp38-win32.pyd +0 -0
  38. aspose/pydrawing.cp39-win32.pyd +0 -0
  39. aspose/pygc.cp310-win32.pyd +0 -0
  40. aspose/pygc.cp311-win32.pyd +0 -0
  41. aspose/pygc.cp35-win32.pyd +0 -0
  42. aspose/pygc.cp36-win32.pyd +0 -0
  43. aspose/pygc.cp37-win32.pyd +0 -0
  44. aspose/pygc.cp38-win32.pyd +0 -0
  45. aspose/pygc.cp39-win32.pyd +0 -0
  46. aspose/pyreflection.cp310-win32.pyd +0 -0
  47. aspose/pyreflection.cp311-win32.pyd +0 -0
  48. aspose/pyreflection.cp35-win32.pyd +0 -0
  49. aspose/pyreflection.cp36-win32.pyd +0 -0
  50. aspose/pyreflection.cp37-win32.pyd +0 -0
  51. aspose/pyreflection.cp38-win32.pyd +0 -0
  52. aspose/pyreflection.cp39-win32.pyd +0 -0
  53. {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/METADATA +2 -2
  54. {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/RECORD +57 -55
  55. {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/WHEEL +0 -0
  56. {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/entry_points.txt +0 -0
  57. {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/top_level.txt +0 -0
@@ -56,135 +56,67 @@ import aspose.html.window
56
56
  class XpsDevice(aspose.html.rendering.Device):
57
57
  '''Represents rendering to a xps document.'''
58
58
 
59
- def restore_graphic_context(self):
60
- '''Restores the entire graphics context to its former value by popping it from the stack.'''
59
+ def save_graphic_context(self):
61
60
  ...
62
61
 
63
- def line_to(self, pt : aspose.pydrawing.PointF):
64
- '''Appends a straight line segment from the current point to the point (pt). The new current point is pt.
65
-
66
- :param pt: Point of where to create the line to.'''
62
+ def restore_graphic_context(self):
67
63
  ...
68
64
 
69
- def move_to(self, pt : aspose.pydrawing.PointF):
70
- '''Begins a new subpath by moving the current point to coordinates of the parameter pt, omitting any connecting line segment.
71
- If the previous path construction method in the current path was also "MoveTo", the new "MoveTo" overrides it;
72
- no vestige of the previous "MoveTo" operation remains in the path.
73
-
74
- :param pt: Point of where to move the path to.'''
65
+ def begin_document(self, document : aspose.html.dom.Document):
75
66
  ...
76
67
 
77
- def cubic_bezier_to(self, pt1 : aspose.pydrawing.PointF, pt2 : aspose.pydrawing.PointF, pt3 : aspose.pydrawing.PointF):
78
- '''Appends a cubic Bézier curve to the current path. The curve extends from the current point to the point pt2,
79
- using pt1 and pt2 as the Bézier control points. The new current point is pt3.
80
-
81
- :param pt1: Coordinates of first point
82
- :param pt2: Coordinates of second point
83
- :param pt3: Coordinates of third point'''
68
+ def end_document(self):
84
69
  ...
85
70
 
86
- def add_rect(self, rect : aspose.pydrawing.RectangleF):
87
- '''Appends a rectangle to the current path as a complete subpath.
88
-
89
- :param rect: A rectangle to draw.'''
71
+ def begin_page(self, size : aspose.pydrawing.SizeF):
90
72
  ...
91
73
 
92
- def close_path(self):
93
- '''Closes the current subpath by appending a straight line segment from the current point to the starting point of the subpath.
94
- If the current subpath is already closed, "ClosePath" does nothing.
95
- This operator terminates the current subpath. Appending another segment to the current path begins a new subpath,
96
- even if the new segment begins at the endpoint reached by the "ClosePath" method.'''
74
+ def end_page(self):
97
75
  ...
98
76
 
99
- def clip(self, mode : aspose.pydrawing.drawing2d.FillMode):
100
- '''Modifies the current clipping path by intersecting it with the current path, using the FillMode rule to determine the region to fill.
101
- This method terminates current path.
102
-
103
- :param mode: Filling mode specifies how the interior of a closed path is clipped'''
77
+ def flush(self):
104
78
  ...
105
79
 
106
- def fill(self, mode : aspose.pydrawing.drawing2d.FillMode):
107
- '''Fills the entire region enclosed by the current path.
108
- If the path consists of several disconnected subpaths, it fills the insides of all subpaths,
109
- considered together.
110
- This method terminates current path.
111
-
112
- :param mode: Filling mode specifies how the interior of a closed path is filled'''
80
+ def begin_element(self, element : aspose.html.dom.Element, rect : aspose.pydrawing.RectangleF) -> bool:
113
81
  ...
114
82
 
115
- def stroke_and_fill(self, mode : aspose.pydrawing.drawing2d.FillMode):
116
- '''Strokes and fill current path.
117
- This method terminates current path.
118
-
119
- :param mode: Filling mode specifies how the interior of a closed path is filled.'''
83
+ def end_element(self, element : aspose.html.dom.Element):
120
84
  ...
121
85
 
122
- def stroke(self):
123
- '''Strokes a line along the current path. The stroked line follows each straight or curved segment in the path,
124
- centered on the segment with sides parallel to it. Each of the path’s subpaths is treated separately.
125
- This method terminates current path.'''
86
+ def close_path(self):
126
87
  ...
127
88
 
128
- def fill_text(self, text : str, pt : aspose.pydrawing.PointF):
129
- '''Fills the specified text string at the specified location.
130
-
131
- :param text: String to fill.
132
- :param pt: Point that specifies the coordinates of the text.'''
89
+ def move_to(self, pt : aspose.pydrawing.PointF):
133
90
  ...
134
91
 
135
- def stroke_text(self, text : str, pt : aspose.pydrawing.PointF):
136
- '''Strokes the specified text string at the specified location.
137
-
138
- :param text: String to stroke.
139
- :param pt: Point that specifies the coordinates where to start the text.'''
92
+ def line_to(self, pt : aspose.pydrawing.PointF):
140
93
  ...
141
94
 
142
- def begin_document(self, document : aspose.html.dom.Document):
143
- '''Begins rendering of the document.
144
-
145
- :param document: The document.'''
95
+ def add_rect(self, rect : aspose.pydrawing.RectangleF):
146
96
  ...
147
97
 
148
- def begin_element(self, element : aspose.html.dom.Element, rect : aspose.pydrawing.RectangleF) -> bool:
149
- '''Begins rendering of the element.
150
-
151
- :param element: The :py:class:`aspose.html.dom.Element`.
152
- :param rect: Bounding box of the node.
153
- :returns: Returns [true] if element should be processed.'''
98
+ def cubic_bezier_to(self, pt1 : aspose.pydrawing.PointF, pt2 : aspose.pydrawing.PointF, pt3 : aspose.pydrawing.PointF):
154
99
  ...
155
100
 
156
- def begin_page(self, size : aspose.pydrawing.SizeF):
157
- '''Begins rendering of the new page.
158
-
159
- :param size: Size of the page.'''
101
+ def stroke(self):
160
102
  ...
161
103
 
162
- def end_page(self):
163
- '''Ends rendering of the current page.'''
104
+ def fill(self, rule : aspose.html.rendering.FillRule):
164
105
  ...
165
106
 
166
- def flush(self):
167
- '''Flushes all data to output stream.'''
107
+ def clip(self, rule : aspose.html.rendering.FillRule):
168
108
  ...
169
109
 
170
- def end_element(self, element : aspose.html.dom.Element):
171
- '''Ends rendering of the element.
172
-
173
- :param element: The :py:class:`aspose.html.dom.Element`.'''
110
+ def stroke_and_fill(self, rule : aspose.html.rendering.FillRule):
174
111
  ...
175
112
 
176
- def draw_image(self, data : bytes, type : aspose.html.rendering.ImageType, rect : aspose.pydrawing.RectangleF):
177
- '''Draws the specified image.
178
-
179
- :param data: An array of bytes representing the image.
180
- :param type: Image type.
181
- :param rect: A rectangel which determines position and size to draw.'''
113
+ def fill_text(self, text : str, pt : aspose.pydrawing.PointF):
182
114
  ...
183
115
 
184
- def save_graphic_context(self):
116
+ def stroke_text(self, text : str, pt : aspose.pydrawing.PointF):
185
117
  ...
186
118
 
187
- def end_document(self):
119
+ def draw_image(self, data : bytes, image_format : aspose.html.drawing.WebImageFormat, rect : aspose.pydrawing.RectangleF):
188
120
  ...
189
121
 
190
122
  @property
@@ -3548,7 +3548,7 @@ class MarkdownSyntaxNodeFilter:
3548
3548
  '''Base implementation of the MarkdownSyntaxNodeFilter.'''
3549
3549
 
3550
3550
  def accept_node(self, n : aspose.html.toolkit.markdown.syntax.MarkdownSyntaxNode) -> int:
3551
- '''Defines the interface for accept node.
3551
+ '''Defines the interface for accepting node.
3552
3552
 
3553
3553
  :param n: The MarkdownSyntaxNode.
3554
3554
  :returns: The short value.'''
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
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: 24.7.0
3
+ Version: 24.9.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/2024/aspose-html-for-python-via-dotnet-24-7-release-notes/
9
+ Project-URL: Release Notes, https://releases.aspose.com/html/python-net/release-notes/2024/aspose-html-for-python-via-dotnet-24-9-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/
@@ -21,7 +21,7 @@ aspose/html/dom/traversal/__init__.pyi,sha256=W_FveEsZsDyvUb73E20J7qOR-JTA1jHb6X
21
21
  aspose/html/dom/traversal/filters/__init__.pyi,sha256=uPdrDOVXLQbeW6E5DgMltZ2CrzfL_r7xKWX3zlAEUAo,6577
22
22
  aspose/html/dom/views/__init__.pyi,sha256=PMxQeyqsLhFagjjgMZm3SEc9dYtrSpIXlivvv1zLicA,2690
23
23
  aspose/html/dom/xpath/__init__.pyi,sha256=kf3MZXFYHEF3MKDaSzen6JCrj8suTgEr6UwYheAa8zs,16613
24
- aspose/html/drawing/__init__.pyi,sha256=MGOJZqCLy-XiAGbIC2sgwxExO6Kdq9dE8z6NznOZNaI,106141
24
+ aspose/html/drawing/__init__.pyi,sha256=WTQ-O1FEh38Yi78NozsqcLVuo0SdGt4fKvpzXyAgaEk,122342
25
25
  aspose/html/forms/__init__.pyi,sha256=ciot_0JVGPP690wTV4EAVfae9U8avSxtVo2rqxxGQeE,32696
26
26
  aspose/html/io/__init__.pyi,sha256=Ee2uUHULBIK9ZxgjljnAIob3z0B4pNckEAjW_fEG5a8,9030
27
27
  aspose/html/loading/__init__.pyi,sha256=c_nQ6UXcsG0KljIHAZMi8kCg06EzoneRlsMjzR7ce2w,2189
@@ -29,19 +29,19 @@ aspose/html/net/__init__.pyi,sha256=ZrSI4XhpIiPm7TGd33S-i-Gos1_wXbHkDAH47zHvyy4,
29
29
  aspose/html/net/headers/__init__.pyi,sha256=rJZz8lFUDfXmOyOcTsAE4UAWaYGquWx0xEI268wKZls,3928
30
30
  aspose/html/net/messagefilters/__init__.pyi,sha256=LBja6-9Gx1C9Smnw-1UVkwDuOaA5TXbSrBRBZzWhUn8,2413
31
31
  aspose/html/net/messagehandlers/__init__.pyi,sha256=W8rKWeDI5tkaU8HIQJH7pELnTIEDhuLpxEecrEkirUI,3513
32
- aspose/html/rendering/__init__.pyi,sha256=7KYPHaJLfhFJjes-jNFHqHE6DSvhg2RxIPul-nWzXdE,26907
33
- aspose/html/rendering/doc/__init__.pyi,sha256=4b7qgbP-Y4Vb01WcPPhmsLocH9wBdKoKZ5zhl6s2i5A,10236
32
+ aspose/html/rendering/__init__.pyi,sha256=cykIQIBLDvpBUgQUoXTtuNJ4ud0UluJ1_HrHo2wXSec,26923
33
+ aspose/html/rendering/doc/__init__.pyi,sha256=HtYWI9yI2095vp3UZ-oz182j9eKSkxLjUTr11klK7xU,10242
34
34
  aspose/html/rendering/fonts/__init__.pyi,sha256=qAhsgJyNZIAVrvoizkQhs3O-gs0Q0Fu-w8wPwu5vtJk,3117
35
- aspose/html/rendering/image/__init__.pyi,sha256=zw3tMcIrPe42e3WAnTiYGtON3ZcRIWis-sdcHin16Lc,13181
36
- aspose/html/rendering/pdf/__init__.pyi,sha256=aLIfaiJ6IconYKv7yUpxGhM9ZjaZaTXGGkUDzCJIXZs,12815
35
+ aspose/html/rendering/image/__init__.pyi,sha256=HFaozWcltt6uMFrL2SemlOpwi9fMSGIMd6YmeC9A7yk,9131
36
+ aspose/html/rendering/pdf/__init__.pyi,sha256=ZtI9GpTpQSlXkwvoR1KWopD0_bbLayoCFXSkBd1VE9s,8667
37
37
  aspose/html/rendering/pdf/encryption/__init__.pyi,sha256=j-jiC4SNYFUSxKv1eaHzlSAs2WPSGzMpqQaQb_v1FDQ,6347
38
- aspose/html/rendering/xps/__init__.pyi,sha256=xFYMqvE_1jBlqSxgIoTo4GPPg3jeRKV4U7Ca_5unxbI,9077
38
+ aspose/html/rendering/xps/__init__.pyi,sha256=1REHSpMav_PfiFKrnq0xGWIyePVRynJ-vKRHB88Ik0c,5052
39
39
  aspose/html/saving/__init__.pyi,sha256=zzRQQKil5DLxR-ZxzCDIzHVGYPwCh3Y24MfvnZnKKCU,23251
40
40
  aspose/html/saving/resourcehandlers/__init__.pyi,sha256=7b_oAGRM6LZjPP7nsyqg4wYdDIUXuLUNPRpZIXeNrBM,4712
41
41
  aspose/html/services/__init__.pyi,sha256=UqDsopqZfuqdu5hwjsJwcIONtWqdefjjoy1stlgCado,5376
42
42
  aspose/html/toolkit/__init__.pyi,sha256=kSb43XalpXzU_jC2qyDedrwHzb8DZ8et00U_J2wm_i0,1904
43
43
  aspose/html/toolkit/markdown/__init__.pyi,sha256=kSb43XalpXzU_jC2qyDedrwHzb8DZ8et00U_J2wm_i0,1904
44
- aspose/html/toolkit/markdown/syntax/__init__.pyi,sha256=yBwCqsAlqeP5agYXa35bPfsBGsiBAiuH88zDMveU6SY,232016
44
+ aspose/html/toolkit/markdown/syntax/__init__.pyi,sha256=oRoO8jlFJ8uMH2HVelWvkaxN0F_ffLm-ZRMhe4nrBqQ,232019
45
45
  aspose/html/toolkit/markdown/syntax/extensions/__init__.pyi,sha256=2cP4pyVorjOME4O4jHtc8GcS2AhZFM7uDpDOqTExOHk,19433
46
46
  aspose/html/toolkit/markdown/syntax/parser/__init__.pyi,sha256=tZ1aR680D1RZKs0aNXi_QMYZbMUT484tzPjU2pYfsYQ,20291
47
47
  aspose/html/toolkit/markdown/syntax/parser/extensions/__init__.pyi,sha256=kSb43XalpXzU_jC2qyDedrwHzb8DZ8et00U_J2wm_i0,1904
@@ -49,45 +49,45 @@ aspose/html/toolkit/markdown/syntax/parser/extensions/gfm/__init__.pyi,sha256=jS
49
49
  aspose/html/toolkit/markdown/syntax/text/__init__.pyi,sha256=-9WTh4ly6egmBERni9QlIfYIdg2zAzFe4f8qY18cdoE,10627
50
50
  aspose/html/toolkit/optimizers/__init__.pyi,sha256=VL8zyEuP1HV8MRRdvMDCLRsnWumaCumtS4ut8yxpOyg,6675
51
51
  aspose/html/window/__init__.pyi,sha256=jaBDu0HRV7O81xImESUdwYHfVv4Xb-XNvqZ-YR1IJRY,24263
52
- aspose/__init__.py,sha256=st03zZNGmNpfRezhEytqfWrds_sn97vzWyo7nK6dRLQ,4919
53
- aspose/html.cp310-win32.pyd,sha256=ZinCH2K3dyhiiidQR6qL2zwodymd-lXmBZrmZKolEQo,4035072
54
- aspose/html.cp311-win32.pyd,sha256=nY-FblWQCSaw2yLsx2hhMdAG8mS2I70tcbE2vEd7Xd0,4035584
55
- aspose/html.cp35-win32.pyd,sha256=vM4B_bwEQiRxnbhQDErw6ZDHpcZuID75Tj2WeOp6DHA,4135424
56
- aspose/html.cp36-win32.pyd,sha256=XnQ_4tuyX671OiHS1WgdFHA-mq4xvp2LWJOnbWVGhxY,4135424
57
- aspose/html.cp37-win32.pyd,sha256=xOiri57Ss6npVorEMrVKuwntCwUEg8NekpzdYf3gSUA,4134400
58
- aspose/html.cp38-win32.pyd,sha256=Ik3yCWOILUxa_08aaXuducGQ2EI8Awvt5ucVD-ni9yg,4140544
59
- aspose/html.cp39-win32.pyd,sha256=Y8j4_ul90resHXjDzgk4lBipoD60kYs25H4aNJH0Xz0,4043264
60
- aspose/pycore.cp310-win32.pyd,sha256=dB_gSuNkZuwCYOX8zT2u9hUdC64-epp0zzPS1kmwwPY,95232
61
- aspose/pycore.cp311-win32.pyd,sha256=GxnSqh1-fTSI8h1UgNjsIBCvFRPTGtmycZ4LzuVW-s4,95232
62
- aspose/pycore.cp35-win32.pyd,sha256=ceyZPkIsnIhH5gZd6VSgpYXiIt9uW1mITwaAdLjfVm4,95232
63
- aspose/pycore.cp36-win32.pyd,sha256=vsYO9v7oXeB_8PDaOUc07H1Ml6cKzvziv_6BL_PHRso,95232
64
- aspose/pycore.cp37-win32.pyd,sha256=imdEwrVUaqoeATSpPWAxs6qkz8Eyc7TlRLTaUnoi_F0,95232
65
- aspose/pycore.cp38-win32.pyd,sha256=_WG0o8l6cgwJO_Rjfrb6TNpKTgT37GX9hmZb8TYkUk4,95232
66
- aspose/pycore.cp39-win32.pyd,sha256=qTNow53T8LtK5Z6k0WhB2qqKXbbzFKDKCOcKrVMBZao,95232
67
- aspose/pydrawing.cp310-win32.pyd,sha256=1mf4vIkpo6V2IMmQSOCb9xda6DJubkw_Bi6tUaolH7s,1622016
68
- aspose/pydrawing.cp311-win32.pyd,sha256=VBH--PqaAd_hado_6zhImsYLFN4Ctt2NjW0ZfW7oRkg,1622016
69
- aspose/pydrawing.cp35-win32.pyd,sha256=sazaGYYWUfvZg45Ifc7pKR5d3RqLJT9QZGAI6yFdAJs,1645056
70
- aspose/pydrawing.cp36-win32.pyd,sha256=IsTVSoaucj-JxhiWFympFlBZDZkrsydTMTtYKSNXwlo,1645056
71
- aspose/pydrawing.cp37-win32.pyd,sha256=D9pfaAMMzRIr_-1tny5Z-SK730BlQQyvsiJh7QIxN64,1645056
72
- aspose/pydrawing.cp38-win32.pyd,sha256=yxnVHWq7upwJAbcyMhXYxwvkHws6S-f1uW6NKhiEyvk,1631232
73
- aspose/pydrawing.cp39-win32.pyd,sha256=R6qvt7GA5WJdJ6h86j5-ygs3WG2KGsO8kGWXtvePeeA,1627136
74
- aspose/pygc.cp310-win32.pyd,sha256=gW1EVmvR2WJZE5gpV0zkVmR-CZY5xTyl1Lov6dHBQ78,83968
75
- aspose/pygc.cp311-win32.pyd,sha256=v6VwbIf_XPqUMXE4if-yoC6gjJ0WWuGkaq6b_X7gsP0,84480
76
- aspose/pygc.cp35-win32.pyd,sha256=P3GGBktzPmhL9acD18TcjZiZ9mWAWFjhuh5M2q74RkQ,84480
77
- aspose/pygc.cp36-win32.pyd,sha256=T-q_meVixK-Lh3s_e5z4vHhB8S-XuUIgrJIXLwL9KPM,84480
78
- aspose/pygc.cp37-win32.pyd,sha256=JSgqOzTlh9Nxzvqlb3jTW-OWqKtPVsvdKPTQ5EUEEvg,84480
79
- aspose/pygc.cp38-win32.pyd,sha256=Sd1e6RGzWQGbzOGu9i5rWhVtvoGweUgsW8O5r0IL62Q,84480
80
- aspose/pygc.cp39-win32.pyd,sha256=Hb57lOs85hb5jk-G6MBdf8pkN1dFb7ZQVL7OiEtTZ4o,84480
81
- aspose/pyreflection.cp310-win32.pyd,sha256=6CQmH-fz-DFNsosgRa-UiVxSEbU0AdqcoxB837f_k5w,259584
82
- aspose/pyreflection.cp311-win32.pyd,sha256=QstP-DslHQ93i48k-R74NPZIOetprbhKn_n5e1I1K4s,260096
83
- aspose/pyreflection.cp35-win32.pyd,sha256=9NPtWvbZIAU8_2TIzA2Tl6NebGmZvGQmbwhpH9TEl6o,262144
84
- aspose/pyreflection.cp36-win32.pyd,sha256=5KWShTGNQo0RBNYnG5ise5RxuL0Qp9FKRGffNbSsMLI,262144
85
- aspose/pyreflection.cp37-win32.pyd,sha256=pZCyjnRcCPzWMrZJAzZh6L5h0XcUbg_bh25bUnV4Q1U,261632
86
- aspose/pyreflection.cp38-win32.pyd,sha256=gWesJFChWBkIyN5XaoZ-UYCoOGuxICKaDs7M86bB-SI,260608
87
- aspose/pyreflection.cp39-win32.pyd,sha256=uy07HdHPYio59_SJn0DSVk1BeZ5U5HzjRDX4KM42A2k,260096
52
+ aspose/__init__.py,sha256=BZzm7zoBt2MkmKtNe7cyCVeUKSx7QjTyZke3W5jbaAE,3188
53
+ aspose/html.cp310-win32.pyd,sha256=A0X-6UcgH3j7JYW1Ul3KWMA-A_MmoalmZDo7-4ZCw8M,4082688
54
+ aspose/html.cp311-win32.pyd,sha256=8DmC4oQvzc-uqviPiLaObspCV_remeS4l8fzK0ejatk,4082688
55
+ aspose/html.cp35-win32.pyd,sha256=T8Oy7_7bJOdrWrJbBy0kuxeV6KgMBN2fCXy0bGoOhGs,4181504
56
+ aspose/html.cp36-win32.pyd,sha256=QZy2QX4YHVADejHWPAuxk00GTbNgGI-MJg3xpjpxmk4,4181504
57
+ aspose/html.cp37-win32.pyd,sha256=UF0nI4Y8R36KBN_6a3K5IDNftHJyKarHTQt7cIWfGRs,4180480
58
+ aspose/html.cp38-win32.pyd,sha256=0ST91KCe9a0k34T8OUcGluzrFSoa-ssY-DK83Dvhof0,4184064
59
+ aspose/html.cp39-win32.pyd,sha256=3Mw-WVugKURgl2ANg3M4B3wniPVcdgRPMSvhrgZlI38,4091392
60
+ aspose/pycore.cp310-win32.pyd,sha256=V39cNUcEXAiqQZjscSZWFi8UA1HOQ-y8fB9l0vsHOm8,95744
61
+ aspose/pycore.cp311-win32.pyd,sha256=KL9P8O1qGLhnoopwpDG_LKkmEnPPKXA_0lcs8MqHj7s,95744
62
+ aspose/pycore.cp35-win32.pyd,sha256=dEqvGyDcyU97OKiTLunZrAGMVztqsAIDXKd8KksvtZU,95744
63
+ aspose/pycore.cp36-win32.pyd,sha256=Db-6elAz4cpmWcqJz6wMQ2cbHSW9x12dr4QBpuizMbQ,95744
64
+ aspose/pycore.cp37-win32.pyd,sha256=LkLt9rK8WYT8QFRDccJ0eEGa4k6svlbdmDFLU28pJsw,95744
65
+ aspose/pycore.cp38-win32.pyd,sha256=4aS0dLqmTv9_d0uajLLPU6lDJ4evlj08fvJ4tDAhR6k,96256
66
+ aspose/pycore.cp39-win32.pyd,sha256=uNEfYg636Gek205GLjrCI_YTW0SrB_RHA7sPronNpOg,96256
67
+ aspose/pydrawing.cp310-win32.pyd,sha256=ny9JQ4oLDDvg3RkVdLVitY_OqUEFGQPOyS-zfNGBegQ,1623552
68
+ aspose/pydrawing.cp311-win32.pyd,sha256=NbsZ7QKDU464hTp5efBMkKn1E6NQza_NbWQzPthBnvo,1623552
69
+ aspose/pydrawing.cp35-win32.pyd,sha256=yhJrbuR6FMBYImmsAxjk11XFRX6Kvft9sePffaAD7gQ,1646080
70
+ aspose/pydrawing.cp36-win32.pyd,sha256=ndApMubKZUZrdJe5QUFdu8lqkYT_WOYWSE9K0d4BxaY,1646080
71
+ aspose/pydrawing.cp37-win32.pyd,sha256=B3d0LIQJnUrtzZJNSpr7-3hJjQLWkG_F1nB7eUL-oKM,1646080
72
+ aspose/pydrawing.cp38-win32.pyd,sha256=KkXI1UjgOq4fU0YK0NAALosGYGfzj05Od58o3QB2L8U,1633792
73
+ aspose/pydrawing.cp39-win32.pyd,sha256=U6DUJjFCV6GZ8xyrOCuFfy8DNCo_AcwpvRXXsfPvM20,1628672
74
+ aspose/pygc.cp310-win32.pyd,sha256=v6wDRP6b2BJpNDNtc46GWcfZVLAFxbwU7leGyR39hTs,84992
75
+ aspose/pygc.cp311-win32.pyd,sha256=agZ8qKEON84WPPjF8uWkjiZBf8TJif8zL8MhavwqahA,84992
76
+ aspose/pygc.cp35-win32.pyd,sha256=N1Htw3MD7yt8aOuLKdBgCHFtdPJOltc1bCyQlwxThXA,86016
77
+ aspose/pygc.cp36-win32.pyd,sha256=ELvdE9J6IySfxcpkICpWVf7qLF1qB8dTfDIgz3GT6GU,86016
78
+ aspose/pygc.cp37-win32.pyd,sha256=JArobD3RgvBZCj9gjNBOR-48vS5zw0xPRJHDKqySvJ0,84992
79
+ aspose/pygc.cp38-win32.pyd,sha256=FOOu3O0lfDYfmsTx8N8NRrYSgwM0y_zV69Q0ag3VH_E,84992
80
+ aspose/pygc.cp39-win32.pyd,sha256=SZ6dd9ia9bDQG6Kqv0Mj34s0VGcYa8zvtBzehoE3r30,84992
81
+ aspose/pyreflection.cp310-win32.pyd,sha256=gP7b83dAe79vHwgqRiF3j6505RzXP5_MxxaOPieWX0g,261120
82
+ aspose/pyreflection.cp311-win32.pyd,sha256=5zXNReI93RSsJPW-cVFjxNKjK_ym-fBh1gze_0FTFts,261120
83
+ aspose/pyreflection.cp35-win32.pyd,sha256=6PdWRa6fKCkXA8KTRiqX7ZV9IVVkJJ97Fp-HHTf2TqY,263168
84
+ aspose/pyreflection.cp36-win32.pyd,sha256=DzbH4WDQpzHMTu_uEai2bAcL2xB4EV8vkpm-FTyIvDM,262656
85
+ aspose/pyreflection.cp37-win32.pyd,sha256=n1jtMjsZ9uudqGz7hk1F_9l30_QbEsOh1T8VEZ2PpP8,262656
86
+ aspose/pyreflection.cp38-win32.pyd,sha256=TSAtOh6Y3Btsl93FAOy02zTR2INIqx9K1nFe86Q5uoU,261632
87
+ aspose/pyreflection.cp39-win32.pyd,sha256=9XyLydmIeNLsoDJXVL6YFDTMgTqk_TpZ0crPQPrcijs,261632
88
88
  aspose/__pyinstaller/__init__.pyi,sha256=JUQjpLnZGSJEDwHrogA4y1SSuAI9uGQxXL40_PPuGes,31
89
89
  aspose/__pyinstaller/hook-aspose.py,sha256=G2uQAF1mgFtEjkZFyvcElHUEzLLoFGdqVOMAs9bsTi0,258
90
- aspose/assemblies/html/Aspose.HTML.dll,sha256=GqzRlleIU4wGNZOhT-OWrmO8tx1EhS5jEjen3YsoITU,8877864
90
+ aspose/assemblies/html/Aspose.HTML.dll,sha256=ocyzEd-U_I9xSZ4WmIom3MoQ7VGd278qLOVHFiCeSUA,8892712
91
91
  aspose/assemblies/html/Microsoft.Extensions.Logging.Abstractions.dll,sha256=ugmwtqiRElj4isMBMibMwG59NCgNiQb_IGZvvYEtOvQ,66176
92
92
  aspose/assemblies/html/Microsoft.Win32.SystemEvents.dll,sha256=ByxMO9MLtnP--Va1d3JNGUp76EBFi8nkQo7-VeS45EQ,52104
93
93
  aspose/assemblies/html/System.Diagnostics.DiagnosticSource.dll,sha256=-GyWeDxbygECfqj6Vrr75_1lzdDcJb9OxfZoHsn6t1Q,159872
@@ -97,14 +97,16 @@ aspose/assemblies/html/System.Security.AccessControl.dll,sha256=lNMvvnB8WhYsH343
97
97
  aspose/assemblies/html/System.Security.Permissions.dll,sha256=Fc4jFXYMaWW2W3h8IdcgJ75gPchQugiuaBea-ERGco4,97160
98
98
  aspose/assemblies/html/System.Security.Principal.Windows.dll,sha256=Ct2Tol_U4BHbVcrJ58BiuAfZhEe8gnLPOiSwa3Q3wWw,81800
99
99
  aspose/assemblies/html/System.Windows.Extensions.dll,sha256=qzkm2EsQpetm_yFDX2b0ejVyPjCHXPrbLUP0op7gn-M,42376
100
- aspose/assemblies/html/WrpInterop.Aspose.Html.dll,sha256=3GXdp7r1hifyoCuV-R9_zX9gMuipPi8XVzUXa3AS5Pg,1234944
101
- aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=L5QJbfoZctYYgy9EB6Kk5sxrSAve6RcfBdoQe4JJPhQ,94208
100
+ aspose/assemblies/html/WrpInterop.Aspose.Html.dll,sha256=AtKJc5wkgE0q_rOuVRBseWhctZXgbzM8dyPDswxzZlQ,1247744
101
+ aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=hJ5my6vvvBN81kaGT8rirGhLV80G0JZ6KIr_Fk-XDqA,94720
102
102
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=ByxMO9MLtnP--Va1d3JNGUp76EBFi8nkQo7-VeS45EQ,52104
103
103
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=cx5hkSgY-2ueuE0JMJtdBUWVeAtp0D9G7Zd5YorlVW8,436600
104
- aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll,sha256=4ukPQVIO8QhTCBbOoZFdvhBwVEuI1OB0n9_Ig3fZut8,502272
105
- aspose/assemblies/pygc/Aspose.PyGC.dll,sha256=bDl9JZgxkNy-A54BUxwmpP2UrIsF0Tj9XVPbuVA-WHg,97280
106
- aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll,sha256=EUfVecTrH0RZ8DfCLzadwkvZuASgGC8taaGvpPKA-5E,122880
104
+ aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll,sha256=C4SQEnoktGqIbR7GkQRIApKp6U_xcCrR76NsPvA_f-I,503296
105
+ aspose/assemblies/pygc/Aspose.PyGC.dll,sha256=hzmFkOBUyiFqRGzhpvu-GeEuAWi0JqTjS8A2G2NnVPE,97792
106
+ aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll,sha256=GoI8JvljoyVBW0XgBnDzr_HUV9EeHkZ7OwEB3UjWnjQ,123392
107
107
  aspose/html/__init__.pyi,sha256=R-wp7naF-unc3g_y0tz0RCL1-wthiwlb59_i_EDAQCE,267
108
+ aspose/html/__nuitka/__init__.pyi,sha256=N25cxgISNOFTiv8Y-DbSjgiKwaP3Qf7yN4IuNMRJ4wg,26
109
+ aspose/html/__nuitka/aspose-html.nuitka-package.config.yml,sha256=Ki7CYNzavaLmCufVJ6IsVdzkH9erTjsrMCgO_Z_tPNA,444
108
110
  aspose/html/__pyinstaller/__init__.pyi,sha256=JUQjpLnZGSJEDwHrogA4y1SSuAI9uGQxXL40_PPuGes,31
109
111
  aspose/html/__pyinstaller/hook-aspose.html.py,sha256=6ykDobx5-6t6V-mMVbfW4z51v1TaD75pPvb1AcQ9ia4,325
110
112
  aspose/netcore/netcore3.1/API-MS-Win-core-xstate-l2-1-0.dll,sha256=SHn-PqWNhT8hZYrvxei5K35jM9d8CvMaa_n_dpR19v0,12704
@@ -313,7 +315,7 @@ aspose/netcore/netcore3.1/api-ms-win-crt-stdio-l1-1-0.dll,sha256=e8q0ygD7H4X-op3
313
315
  aspose/netcore/netcore3.1/api-ms-win-crt-string-l1-1-0.dll,sha256=c6shYadwCDWyoVt0hwRaaVcGzBi87ig7EUBCVwu5wKo,24328
314
316
  aspose/netcore/netcore3.1/api-ms-win-crt-time-l1-1-0.dll,sha256=TQ8OpuhHgTKJL55nTifivDRmIvyJiccE5bIpmhjB0Tg,20744
315
317
  aspose/netcore/netcore3.1/api-ms-win-crt-utility-l1-1-0.dll,sha256=fmszpMDITxjyvilOxjISJFr0_YNUY2gE_-Xumg1SbZU,18696
316
- aspose/netcore/netcore3.1/aspose.embed.coreclrwrap.dll,sha256=RGYIv4gfUUFzPCOFfM8QmKloeAPn9JHcRuQOUOQyR1U,9216
318
+ aspose/netcore/netcore3.1/aspose.embed.coreclrwrap.dll,sha256=yNGATe-HlidEw7voX0OEeE4JD2319Yue3yZyUmhw1T8,9216
317
319
  aspose/netcore/netcore3.1/clrcompression.dll,sha256=usHw_TKAUclWuVcUtUmKzRvmcHEwvlAKkYiCmnQKGG8,740760
318
320
  aspose/netcore/netcore3.1/clretwrc.dll,sha256=A6KGv8YbtObO8crUAEO7nxYeWBC1rFb4Hm0KdTPz0-Y,244640
319
321
  aspose/netcore/netcore3.1/clrjit.dll,sha256=Ug7yKtXNxAAl-JZNDO-zmwyIzsTg99SYY_AEiHrezJU,1115552
@@ -341,8 +343,8 @@ aspose/pygc/__pyinstaller/hook-aspose.pygc.py,sha256=6R0gEknOsHoQBZRHzyvgD4-PU30
341
343
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
342
344
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
343
345
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
344
- aspose_html_net-24.7.0.dist-info/METADATA,sha256=K0H8uhtBxuVndiatA9zfb8c5dREUae1xuQbXHI9Nk4E,7509
345
- aspose_html_net-24.7.0.dist-info/WHEEL,sha256=Qp0pkwX2grZiaAQR0_2-Tf5RWO1YRFeNKTRIWlXCrLE,94
346
- aspose_html_net-24.7.0.dist-info/entry_points.txt,sha256=ncOOUOA7P4CKYv0p9YBs_Erf12mciNs3kqNIdTh4bvw,67
347
- aspose_html_net-24.7.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
348
- aspose_html_net-24.7.0.dist-info/RECORD,,
346
+ aspose_html_net-24.9.0.dist-info/METADATA,sha256=cywYwTzEqLz-YQ8srHyB21AnBLDYAVoAW2WWyyFbJns,7509
347
+ aspose_html_net-24.9.0.dist-info/WHEEL,sha256=Qp0pkwX2grZiaAQR0_2-Tf5RWO1YRFeNKTRIWlXCrLE,94
348
+ aspose_html_net-24.9.0.dist-info/entry_points.txt,sha256=ncOOUOA7P4CKYv0p9YBs_Erf12mciNs3kqNIdTh4bvw,67
349
+ aspose_html_net-24.9.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
350
+ aspose_html_net-24.9.0.dist-info/RECORD,,