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.
- aspose/__init__.py +75 -132
- aspose/assemblies/html/Aspose.HTML.dll +0 -0
- aspose/assemblies/html/WrpInterop.Aspose.Html.dll +0 -0
- aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll +0 -0
- aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll +0 -0
- aspose/assemblies/pygc/Aspose.PyGC.dll +0 -0
- aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll +0 -0
- aspose/html/__nuitka/__init__.pyi +1 -0
- aspose/html/__nuitka/aspose-html.nuitka-package.config.yml +19 -0
- aspose/html/drawing/__init__.pyi +511 -35
- aspose/html/rendering/__init__.pyi +69 -73
- aspose/html/rendering/doc/__init__.pyi +5 -5
- aspose/html/rendering/image/__init__.pyi +19 -88
- aspose/html/rendering/pdf/__init__.pyi +18 -88
- aspose/html/rendering/xps/__init__.pyi +21 -89
- aspose/html/toolkit/markdown/syntax/__init__.pyi +1 -1
- aspose/html.cp310-win32.pyd +0 -0
- aspose/html.cp311-win32.pyd +0 -0
- aspose/html.cp35-win32.pyd +0 -0
- aspose/html.cp36-win32.pyd +0 -0
- aspose/html.cp37-win32.pyd +0 -0
- aspose/html.cp38-win32.pyd +0 -0
- aspose/html.cp39-win32.pyd +0 -0
- aspose/netcore/netcore3.1/aspose.embed.coreclrwrap.dll +0 -0
- aspose/pycore.cp310-win32.pyd +0 -0
- aspose/pycore.cp311-win32.pyd +0 -0
- aspose/pycore.cp35-win32.pyd +0 -0
- aspose/pycore.cp36-win32.pyd +0 -0
- aspose/pycore.cp37-win32.pyd +0 -0
- aspose/pycore.cp38-win32.pyd +0 -0
- aspose/pycore.cp39-win32.pyd +0 -0
- aspose/pydrawing.cp310-win32.pyd +0 -0
- aspose/pydrawing.cp311-win32.pyd +0 -0
- aspose/pydrawing.cp35-win32.pyd +0 -0
- aspose/pydrawing.cp36-win32.pyd +0 -0
- aspose/pydrawing.cp37-win32.pyd +0 -0
- aspose/pydrawing.cp38-win32.pyd +0 -0
- aspose/pydrawing.cp39-win32.pyd +0 -0
- aspose/pygc.cp310-win32.pyd +0 -0
- aspose/pygc.cp311-win32.pyd +0 -0
- aspose/pygc.cp35-win32.pyd +0 -0
- aspose/pygc.cp36-win32.pyd +0 -0
- aspose/pygc.cp37-win32.pyd +0 -0
- aspose/pygc.cp38-win32.pyd +0 -0
- aspose/pygc.cp39-win32.pyd +0 -0
- aspose/pyreflection.cp310-win32.pyd +0 -0
- aspose/pyreflection.cp311-win32.pyd +0 -0
- aspose/pyreflection.cp35-win32.pyd +0 -0
- aspose/pyreflection.cp36-win32.pyd +0 -0
- aspose/pyreflection.cp37-win32.pyd +0 -0
- aspose/pyreflection.cp38-win32.pyd +0 -0
- aspose/pyreflection.cp39-win32.pyd +0 -0
- {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/METADATA +2 -2
- {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/RECORD +57 -55
- {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/WHEEL +0 -0
- {aspose_html_net-24.7.0.dist-info → aspose_html_net-24.9.0.dist-info}/entry_points.txt +0 -0
- {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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
163
|
-
'''Ends rendering of the current page.'''
|
104
|
+
def fill(self, rule : aspose.html.rendering.FillRule):
|
164
105
|
...
|
165
106
|
|
166
|
-
def
|
167
|
-
'''Flushes all data to output stream.'''
|
107
|
+
def clip(self, rule : aspose.html.rendering.FillRule):
|
168
108
|
...
|
169
109
|
|
170
|
-
def
|
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
|
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
|
116
|
+
def stroke_text(self, text : str, pt : aspose.pydrawing.PointF):
|
185
117
|
...
|
186
118
|
|
187
|
-
def
|
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
|
3551
|
+
'''Defines the interface for accepting node.
|
3552
3552
|
|
3553
3553
|
:param n: The MarkdownSyntaxNode.
|
3554
3554
|
:returns: The short value.'''
|
aspose/html.cp310-win32.pyd
CHANGED
Binary file
|
aspose/html.cp311-win32.pyd
CHANGED
Binary file
|
aspose/html.cp35-win32.pyd
CHANGED
Binary file
|
aspose/html.cp36-win32.pyd
CHANGED
Binary file
|
aspose/html.cp37-win32.pyd
CHANGED
Binary file
|
aspose/html.cp38-win32.pyd
CHANGED
Binary file
|
aspose/html.cp39-win32.pyd
CHANGED
Binary file
|
Binary file
|
aspose/pycore.cp310-win32.pyd
CHANGED
Binary file
|
aspose/pycore.cp311-win32.pyd
CHANGED
Binary file
|
aspose/pycore.cp35-win32.pyd
CHANGED
Binary file
|
aspose/pycore.cp36-win32.pyd
CHANGED
Binary file
|
aspose/pycore.cp37-win32.pyd
CHANGED
Binary file
|
aspose/pycore.cp38-win32.pyd
CHANGED
Binary file
|
aspose/pycore.cp39-win32.pyd
CHANGED
Binary file
|
aspose/pydrawing.cp310-win32.pyd
CHANGED
Binary file
|
aspose/pydrawing.cp311-win32.pyd
CHANGED
Binary file
|
aspose/pydrawing.cp35-win32.pyd
CHANGED
Binary file
|
aspose/pydrawing.cp36-win32.pyd
CHANGED
Binary file
|
aspose/pydrawing.cp37-win32.pyd
CHANGED
Binary file
|
aspose/pydrawing.cp38-win32.pyd
CHANGED
Binary file
|
aspose/pydrawing.cp39-win32.pyd
CHANGED
Binary file
|
aspose/pygc.cp310-win32.pyd
CHANGED
Binary file
|
aspose/pygc.cp311-win32.pyd
CHANGED
Binary file
|
aspose/pygc.cp35-win32.pyd
CHANGED
Binary file
|
aspose/pygc.cp36-win32.pyd
CHANGED
Binary file
|
aspose/pygc.cp37-win32.pyd
CHANGED
Binary file
|
aspose/pygc.cp38-win32.pyd
CHANGED
Binary file
|
aspose/pygc.cp39-win32.pyd
CHANGED
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.
|
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-
|
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=
|
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=
|
33
|
-
aspose/html/rendering/doc/__init__.pyi,sha256=
|
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=
|
36
|
-
aspose/html/rendering/pdf/__init__.pyi,sha256=
|
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=
|
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=
|
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=
|
53
|
-
aspose/html.cp310-win32.pyd,sha256=
|
54
|
-
aspose/html.cp311-win32.pyd,sha256=
|
55
|
-
aspose/html.cp35-win32.pyd,sha256=
|
56
|
-
aspose/html.cp36-win32.pyd,sha256=
|
57
|
-
aspose/html.cp37-win32.pyd,sha256=
|
58
|
-
aspose/html.cp38-win32.pyd,sha256=
|
59
|
-
aspose/html.cp39-win32.pyd,sha256=
|
60
|
-
aspose/pycore.cp310-win32.pyd,sha256=
|
61
|
-
aspose/pycore.cp311-win32.pyd,sha256=
|
62
|
-
aspose/pycore.cp35-win32.pyd,sha256=
|
63
|
-
aspose/pycore.cp36-win32.pyd,sha256=
|
64
|
-
aspose/pycore.cp37-win32.pyd,sha256=
|
65
|
-
aspose/pycore.cp38-win32.pyd,sha256=
|
66
|
-
aspose/pycore.cp39-win32.pyd,sha256=
|
67
|
-
aspose/pydrawing.cp310-win32.pyd,sha256=
|
68
|
-
aspose/pydrawing.cp311-win32.pyd,sha256=
|
69
|
-
aspose/pydrawing.cp35-win32.pyd,sha256=
|
70
|
-
aspose/pydrawing.cp36-win32.pyd,sha256=
|
71
|
-
aspose/pydrawing.cp37-win32.pyd,sha256=
|
72
|
-
aspose/pydrawing.cp38-win32.pyd,sha256=
|
73
|
-
aspose/pydrawing.cp39-win32.pyd,sha256=
|
74
|
-
aspose/pygc.cp310-win32.pyd,sha256=
|
75
|
-
aspose/pygc.cp311-win32.pyd,sha256=
|
76
|
-
aspose/pygc.cp35-win32.pyd,sha256=
|
77
|
-
aspose/pygc.cp36-win32.pyd,sha256=
|
78
|
-
aspose/pygc.cp37-win32.pyd,sha256=
|
79
|
-
aspose/pygc.cp38-win32.pyd,sha256=
|
80
|
-
aspose/pygc.cp39-win32.pyd,sha256=
|
81
|
-
aspose/pyreflection.cp310-win32.pyd,sha256=
|
82
|
-
aspose/pyreflection.cp311-win32.pyd,sha256=
|
83
|
-
aspose/pyreflection.cp35-win32.pyd,sha256=
|
84
|
-
aspose/pyreflection.cp36-win32.pyd,sha256=
|
85
|
-
aspose/pyreflection.cp37-win32.pyd,sha256=
|
86
|
-
aspose/pyreflection.cp38-win32.pyd,sha256=
|
87
|
-
aspose/pyreflection.cp39-win32.pyd,sha256=
|
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=
|
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=
|
101
|
-
aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=
|
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=
|
105
|
-
aspose/assemblies/pygc/Aspose.PyGC.dll,sha256=
|
106
|
-
aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll,sha256=
|
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=
|
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.
|
345
|
-
aspose_html_net-24.
|
346
|
-
aspose_html_net-24.
|
347
|
-
aspose_html_net-24.
|
348
|
-
aspose_html_net-24.
|
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,,
|
File without changes
|
File without changes
|
File without changes
|