weasyprint 67.0__py3-none-any.whl → 68.0__py3-none-any.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.
- weasyprint/__init__.py +35 -103
- weasyprint/__main__.py +107 -80
- weasyprint/css/__init__.py +4 -10
- weasyprint/css/functions.py +5 -0
- weasyprint/css/html5_ua.css +1 -1
- weasyprint/css/tokens.py +4 -1
- weasyprint/css/validation/properties.py +4 -4
- weasyprint/document.py +4 -64
- weasyprint/draw/text.py +4 -2
- weasyprint/formatting_structure/boxes.py +4 -1
- weasyprint/formatting_structure/build.py +111 -37
- weasyprint/images.py +27 -32
- weasyprint/layout/__init__.py +2 -1
- weasyprint/layout/grid.py +25 -14
- weasyprint/layout/page.py +4 -4
- weasyprint/layout/preferred.py +35 -2
- weasyprint/pdf/__init__.py +12 -1
- weasyprint/pdf/anchors.py +10 -16
- weasyprint/pdf/fonts.py +12 -3
- weasyprint/pdf/metadata.py +153 -98
- weasyprint/pdf/pdfa.py +1 -3
- weasyprint/pdf/pdfua.py +1 -3
- weasyprint/pdf/pdfx.py +1 -3
- weasyprint/pdf/stream.py +0 -2
- weasyprint/svg/__init__.py +51 -30
- weasyprint/svg/css.py +21 -4
- weasyprint/svg/defs.py +5 -3
- weasyprint/text/fonts.py +2 -3
- weasyprint/urls.py +272 -96
- {weasyprint-67.0.dist-info → weasyprint-68.0.dist-info}/METADATA +2 -1
- {weasyprint-67.0.dist-info → weasyprint-68.0.dist-info}/RECORD +34 -34
- {weasyprint-67.0.dist-info → weasyprint-68.0.dist-info}/WHEEL +0 -0
- {weasyprint-67.0.dist-info → weasyprint-68.0.dist-info}/entry_points.txt +0 -0
- {weasyprint-67.0.dist-info → weasyprint-68.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: weasyprint
|
|
3
|
-
Version:
|
|
3
|
+
Version: 68.0
|
|
4
4
|
Summary: The Awesome Document Factory
|
|
5
5
|
Keywords: html,css,pdf,converter
|
|
6
6
|
Author-email: Simon Sapin <simon.sapin@exyr.org>
|
|
@@ -37,6 +37,7 @@ Requires-Dist: sphinx ; extra == "doc"
|
|
|
37
37
|
Requires-Dist: furo ; extra == "doc"
|
|
38
38
|
Requires-Dist: pytest ; extra == "test"
|
|
39
39
|
Requires-Dist: ruff ; extra == "test"
|
|
40
|
+
Requires-Dist: Pillow >=12.1.0 ; extra == "test"
|
|
40
41
|
Project-URL: Changelog, https://github.com/Kozea/WeasyPrint/releases
|
|
41
42
|
Project-URL: Code, https://github.com/Kozea/WeasyPrint
|
|
42
43
|
Project-URL: Documentation, https://doc.courtbouillon.org/weasyprint/
|
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
weasyprint/__init__.py,sha256=
|
|
2
|
-
weasyprint/__main__.py,sha256=
|
|
1
|
+
weasyprint/__init__.py,sha256=jrEFcq7TAw6IYcFPYNAvbiTFAQos-QtYmy0ftmPnvEI,14949
|
|
2
|
+
weasyprint/__main__.py,sha256=L6pqmXo68pHGPkXth8obc9DlUHYdc3YXwDG5bCky4Pc,9374
|
|
3
3
|
weasyprint/anchors.py,sha256=fytc05l3TO4AWuyPJx532RBEbZe8L7UlnbYYJpB-bGA,6472
|
|
4
|
-
weasyprint/document.py,sha256=
|
|
4
|
+
weasyprint/document.py,sha256=W_pmP05WT_bucoU7eTwkYuYMGG6h-19ZpdVZZcbxpAc,13681
|
|
5
5
|
weasyprint/html.py,sha256=om7dvhx12ecunTaVclmWejkr5nPQF1BZmeH7jqQ_4GM,11590
|
|
6
|
-
weasyprint/images.py,sha256=
|
|
6
|
+
weasyprint/images.py,sha256=nh1RXq7-8M2dzuOX7gLRwmHDm7LVwulTGcgOsgB_Fr8,36372
|
|
7
7
|
weasyprint/logger.py,sha256=z1q548fX5shfAyLoMLeM9ozWGKgoBTKQsdlTtfRE_9U,1824
|
|
8
8
|
weasyprint/matrix.py,sha256=v1BPtyn_-S_4TrAUgzOOR-viUXgdqsABKRndCEprkPc,1909
|
|
9
9
|
weasyprint/stacking.py,sha256=6c6eZ_BxtcYvlEbH6JQdqaKwYBkuaqUwGGSs3OfkpS8,5697
|
|
10
|
-
weasyprint/urls.py,sha256=
|
|
11
|
-
weasyprint/css/__init__.py,sha256=
|
|
10
|
+
weasyprint/urls.py,sha256=zCiZVkjLKsxL4b0IkYdUQhzXbL6oJQC72HPb0wV9ZNM,17945
|
|
11
|
+
weasyprint/css/__init__.py,sha256=799t6zg9ERCYgGJjHB2CnsuvS8BXn2AeYNbdjAdticc,77545
|
|
12
12
|
weasyprint/css/computed_values.py,sha256=WPySY5DFXusCxa7wC5mUv4uzwBi2c7ACMLI3_iHqDnI,24187
|
|
13
13
|
weasyprint/css/counters.py,sha256=RAUuZGOLZj5oKrZexbkDUYPncTFWzwtT870xTKYkQmI,11374
|
|
14
|
-
weasyprint/css/functions.py,sha256=
|
|
14
|
+
weasyprint/css/functions.py,sha256=PXPZX0EJKI1FL_ydPGLueICMTHPxwiZwQr74vWpEaMY,6779
|
|
15
15
|
weasyprint/css/html5_ph.css,sha256=l8t4ZN3KoevKx0UEfNw3_vgVjArcII6y5DZXZolWaw0,4629
|
|
16
|
-
weasyprint/css/html5_ua.css,sha256=
|
|
16
|
+
weasyprint/css/html5_ua.css,sha256=0HGk0se0ej4-hEVK6u4E2JVW6u-x0ZE7K3gb0TgozmY,18399
|
|
17
17
|
weasyprint/css/html5_ua_form.css,sha256=O0L78oQN8ZuQcXlfe7XVTy5kM3nVF6-rfO3xALbYTy8,310
|
|
18
18
|
weasyprint/css/media_queries.py,sha256=Mh1JlSupMNjVJ4CKW3Yd7zR4W6NGNXp21y_4hajDDUY,1179
|
|
19
19
|
weasyprint/css/properties.py,sha256=64TpsS87--Xj_al7x0vREkbCDpyYQqHJx9H7vYxjKjY,11727
|
|
20
20
|
weasyprint/css/targets.py,sha256=5Ofw1RrmPsfQjDuZ1FCgktspGUai3wJmNa03MbT2sOI,8853
|
|
21
|
-
weasyprint/css/tokens.py,sha256=
|
|
21
|
+
weasyprint/css/tokens.py,sha256=r1A3lUA0xEQ8KnqILdhi_vCOZv_sQ-Y9ZdQRZcPH-JM,23546
|
|
22
22
|
weasyprint/css/units.py,sha256=loUL8k7y4OYxbNrowbUgsRuqKj-uFKfhZmKUjc6t3GQ,2901
|
|
23
23
|
weasyprint/css/validation/__init__.py,sha256=bt0Rqn5Jt2KLr6jFXau8QnosNIkz83DxSlca1t064hU,8469
|
|
24
24
|
weasyprint/css/validation/descriptors.py,sha256=7LN_0ed9wZWgYT3_4UrEE-R6mzpINGs-VM9lglV49P8,11839
|
|
25
25
|
weasyprint/css/validation/expanders.py,sha256=hqVJKiK5G-C8oNsCMTJ_X964qFip2j5hO4r912dnJX8,39233
|
|
26
|
-
weasyprint/css/validation/properties.py,sha256=
|
|
26
|
+
weasyprint/css/validation/properties.py,sha256=DYjW8TZl_y_cedVkleY6kTVw6G3nUlDspE0QMjqOsU4,66866
|
|
27
27
|
weasyprint/draw/__init__.py,sha256=l4q_L6k93tIobB8hHui_PSElstO5MI5FTHCBTISb_ew,22715
|
|
28
28
|
weasyprint/draw/border.py,sha256=5s-FZyw3MN085cmmAJHp8Yms5gM90j-XzInpwldgPFs,30373
|
|
29
29
|
weasyprint/draw/color.py,sha256=xoqq6LmkyN1xdubX0Qm-MKy7xijzT3Zd7kF2MSaqZiQ,1449
|
|
30
|
-
weasyprint/draw/text.py,sha256=
|
|
31
|
-
weasyprint/formatting_structure/boxes.py,sha256=
|
|
32
|
-
weasyprint/formatting_structure/build.py,sha256=
|
|
33
|
-
weasyprint/layout/__init__.py,sha256=
|
|
30
|
+
weasyprint/draw/text.py,sha256=c5kNqiYCILh1W8YgdgZwRi1ogfLOh5ZRzQydWgASxw0,12640
|
|
31
|
+
weasyprint/formatting_structure/boxes.py,sha256=QDX3FRmSY7pG6QjWTuhANlSMrePNRPm1iX5-CJ8tU98,27199
|
|
32
|
+
weasyprint/formatting_structure/build.py,sha256=j_pKsHxsNt-ErNj-TT12QczQa6RszPOWjDztqzH5yMo,58491
|
|
33
|
+
weasyprint/layout/__init__.py,sha256=mUlsoqBIamjdIqtINS9W0njkrgn8guyYORu3UCedon0,16767
|
|
34
34
|
weasyprint/layout/absolute.py,sha256=JA4mjOweZt2h-Hrsa91nHnvzZDnF-gneMpZfcXiTugc,14005
|
|
35
35
|
weasyprint/layout/background.py,sha256=IfcmSZ-E4_NES-RSeKi5DGbmrloGdu9zVz5zZ87m9gU,10023
|
|
36
36
|
weasyprint/layout/block.py,sha256=czlH2egB6a92UeZGrdggiWOXPj50K5IR9UzJ7-y96GY,48691
|
|
37
37
|
weasyprint/layout/column.py,sha256=g64aPoNZYpPlrma4F1nyrW7_ji5DBYoamA92YrbFHZM,17209
|
|
38
38
|
weasyprint/layout/flex.py,sha256=KZNFElr2QDT5FYI6JlZGpXxJHYFvMMN8QGylLx98PUs,44148
|
|
39
39
|
weasyprint/layout/float.py,sha256=5iBDHg1KSexArW1SfbnMShuILzkkEH8DW7n1bdk5OU4,9488
|
|
40
|
-
weasyprint/layout/grid.py,sha256=
|
|
40
|
+
weasyprint/layout/grid.py,sha256=fqSt4_71FblPJxwG5irqvm3CKqbp1brNJWYNJ2WujJs,64522
|
|
41
41
|
weasyprint/layout/inline.py,sha256=Iw3h9_N6a0rly9VGZ35LD0Pp8RDDGK7cYVKjZy17BZk,50447
|
|
42
42
|
weasyprint/layout/leader.py,sha256=wklI0aLyTx0VJhqU7D_FxtJpfe7dXswcN-VApAusM-Q,2825
|
|
43
43
|
weasyprint/layout/min_max.py,sha256=JdXJG9ISO_RsfeHua_-3g477a16I-NrnYuwH_tQwq4o,1527
|
|
44
|
-
weasyprint/layout/page.py,sha256=
|
|
44
|
+
weasyprint/layout/page.py,sha256=m4z24NqI6bc08j1GwXsRCpyMkKxC93XE6--QMHUaKxM,41565
|
|
45
45
|
weasyprint/layout/percent.py,sha256=F2kNcNz7b6to70GwiFFu-oWWpYs011TM021COH7feEc,5829
|
|
46
|
-
weasyprint/layout/preferred.py,sha256=
|
|
46
|
+
weasyprint/layout/preferred.py,sha256=UY-Uq00wvFeZtvnA_giljI2X-LgD8VuKH4XLi5ef1VY,34908
|
|
47
47
|
weasyprint/layout/replaced.py,sha256=7-foaAPIAVC329QEnUN_1u2U6VTrEbQ0Qx254BlrLCo,11357
|
|
48
48
|
weasyprint/layout/table.py,sha256=KyFOg9aiMl_wO31_0kQ7WrCVeHtGJY0Ir-hdub2qSSg,47778
|
|
49
|
-
weasyprint/pdf/__init__.py,sha256=
|
|
50
|
-
weasyprint/pdf/anchors.py,sha256=
|
|
49
|
+
weasyprint/pdf/__init__.py,sha256=5OG1Tgdyk1XPhcren50OY2S9ZLT4SseIajlEhDl7PSw,14303
|
|
50
|
+
weasyprint/pdf/anchors.py,sha256=IG7mimMqf0j2lurfX5DF3UkUZ4HdMiTMqpupue6BEvI,17164
|
|
51
51
|
weasyprint/pdf/debug.py,sha256=reLw6U6hK94FOVNYW8psdt_SFN11iIe1rhYkr6sURF4,1407
|
|
52
|
-
weasyprint/pdf/fonts.py,sha256=
|
|
53
|
-
weasyprint/pdf/metadata.py,sha256=
|
|
54
|
-
weasyprint/pdf/pdfa.py,sha256=
|
|
55
|
-
weasyprint/pdf/pdfua.py,sha256=
|
|
56
|
-
weasyprint/pdf/pdfx.py,sha256=
|
|
52
|
+
weasyprint/pdf/fonts.py,sha256=UMGV2P4-y3mh1p3YFzVaoKekdx2B5nExsZvIBZg9kTM,28159
|
|
53
|
+
weasyprint/pdf/metadata.py,sha256=enBUUChb5vTHXZH7B2v9Cl_WO7hXL0TrS3XcfSv4x9M,9207
|
|
54
|
+
weasyprint/pdf/pdfa.py,sha256=JDKtJ3-v-i2CMWScTbesZi3YQ8C-5PYOheYAYM5Y1iw,4239
|
|
55
|
+
weasyprint/pdf/pdfua.py,sha256=RrV7qky5Djc_tP5ipdDUDC5BqOi6T_LDZpVy8cyXRGc,486
|
|
56
|
+
weasyprint/pdf/pdfx.py,sha256=1DB9afper1oZpmoktSxBvRTpUuxHj7TBy3dhXdD2qGc,2629
|
|
57
57
|
weasyprint/pdf/sRGB2014.icc,sha256=OEuDLeNBIGZ0O1KnXukGtvufuNngnpNvwsQyI4Fcbgo,3024
|
|
58
|
-
weasyprint/pdf/stream.py,sha256=
|
|
58
|
+
weasyprint/pdf/stream.py,sha256=ME9S63n_xFJa3fQoIi2kPcpJv5cQiYKWpPdEjqZe7bg,11550
|
|
59
59
|
weasyprint/pdf/tags.py,sha256=914AozTYgFOMpFSP2UtEZCVzsPIKueHWjI9DA77w28M,11789
|
|
60
|
-
weasyprint/svg/__init__.py,sha256=
|
|
60
|
+
weasyprint/svg/__init__.py,sha256=1IYQDVPZVW6m28draJKg0kqR_JUnwEBcFfCOiHrAJho,32219
|
|
61
61
|
weasyprint/svg/bounding_box.py,sha256=auXs-vD2nvOx3cplHLGXFzy7X_f_IY4hg_IzKlUTXjM,13129
|
|
62
|
-
weasyprint/svg/css.py,sha256=
|
|
63
|
-
weasyprint/svg/defs.py,sha256=
|
|
62
|
+
weasyprint/svg/css.py,sha256=MohmaDCX6oDIIxJPrn6bn1fKq4la0oPfxvMYrfL5vbI,4871
|
|
63
|
+
weasyprint/svg/defs.py,sha256=OzHw-8oejyDojP-jiozgLnlVhq_NyYvbg5DGuZbyMnM,20925
|
|
64
64
|
weasyprint/svg/images.py,sha256=msVOn7_DgKFVB6Pz25SDLXU22-p7H5y0fJGKBpFDjrc,3333
|
|
65
65
|
weasyprint/svg/path.py,sha256=Z-T6kbUU3pyHhzVV0JSBgO--XaCGXLsH-cS9iAsITMM,10064
|
|
66
66
|
weasyprint/svg/shapes.py,sha256=NDo0KMnwrm0hj3BOmfrKjRZo4iJF9o-MeUhZ5avANco,3845
|
|
@@ -68,10 +68,10 @@ weasyprint/svg/text.py,sha256=vJ2FUquzpnGclA_y1dXu4jImvkGR0NvvnyoVLyHZlk0,6663
|
|
|
68
68
|
weasyprint/svg/utils.py,sha256=BEJvyOtxo4tAgLL-RORaEMIBAgmIZzwBNp2YuN1u3NM,7289
|
|
69
69
|
weasyprint/text/constants.py,sha256=gtC92Hbzci0976gVTct3roVKLcQjNWIQM43zuEBqIuY,14189
|
|
70
70
|
weasyprint/text/ffi.py,sha256=13hLmV19RiTspKHna_RlZMar6CpTIHwPDPSGV1FmhNc,18418
|
|
71
|
-
weasyprint/text/fonts.py,sha256=
|
|
71
|
+
weasyprint/text/fonts.py,sha256=P2Zi7cHwoR4WZsOfm3Ki0lQ3aRYu6YWyFsKvvd0DEqE,17568
|
|
72
72
|
weasyprint/text/line_break.py,sha256=0hrm7916GfSFtGf4SLRzB8rp_-iwpi27bVaNI--th0c,28215
|
|
73
|
-
weasyprint-
|
|
74
|
-
weasyprint-
|
|
75
|
-
weasyprint-
|
|
76
|
-
weasyprint-
|
|
77
|
-
weasyprint-
|
|
73
|
+
weasyprint-68.0.dist-info/entry_points.txt,sha256=wgDp3XXzFywdYgI5vUWMp1zAwx1sZXXH0FTUQbFOq6A,55
|
|
74
|
+
weasyprint-68.0.dist-info/licenses/LICENSE,sha256=v9FOzPphAFdUYOaFVWsYM5nUvTNZBOPJUhsBFtIcVNo,1534
|
|
75
|
+
weasyprint-68.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
76
|
+
weasyprint-68.0.dist-info/METADATA,sha256=pJpSpO6nIxcLtKWqctgn8OUIx_IswW0QXeu9VaJ4sLM,3709
|
|
77
|
+
weasyprint-68.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|