PyMuPDF 1.24.12__cp39-abi3-win32.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.
- PyMuPDF-1.24.12.dist-info/COPYING +1 -0
- PyMuPDF-1.24.12.dist-info/METADATA +83 -0
- PyMuPDF-1.24.12.dist-info/README.md +60 -0
- PyMuPDF-1.24.12.dist-info/RECORD +99 -0
- PyMuPDF-1.24.12.dist-info/WHEEL +4 -0
- PyMuPDF-1.24.12.dist-info/entry_points.txt +3 -0
- fitz/__init__.py +11 -0
- fitz/table.py +2 -0
- fitz/utils.py +2 -0
- pymupdf/__init__.py +22291 -0
- pymupdf/__main__.py +1146 -0
- pymupdf/_apply_pages.py +253 -0
- pymupdf/_build.py +1 -0
- pymupdf/_extra.pyd +0 -0
- pymupdf/_mupdf.pyd +0 -0
- pymupdf/extra.py +214 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/archive.h +444 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/band-writer.h +117 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/bidi.h +90 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/bitmap.h +175 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/buffer.h +250 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/color.h +427 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/compress.h +88 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/compressed-buffer.h +185 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/config.h +223 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/context.h +1006 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/crypt.h +270 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/device.h +654 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/display-list.h +142 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/document.h +1108 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/export.h +52 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/filter.h +263 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/font.h +815 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/geometry.h +818 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/getopt.h +128 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/glyph-cache.h +96 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/glyph.h +81 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/hash.h +126 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/heap-imp.h +163 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/heap.h +140 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/image.h +443 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/link.h +130 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/log.h +61 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/outline.h +228 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/output-svg.h +64 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/output.h +415 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/path.h +447 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/pixmap.h +501 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/pool.h +68 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/separation.h +138 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/shade.h +233 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/store.h +456 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/story-writer.h +209 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/story.h +232 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/stream.h +646 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/string-util.h +286 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/structured-text.h +365 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/system.h +459 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/text.h +209 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/track-usage.h +57 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/transition.h +76 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/tree.h +62 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/types.h +41 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/util.h +151 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/version.h +31 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/write-pixmap.h +499 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/writer.h +266 -0
- pymupdf/mupdf-devel/include/mupdf/fitz/xml.h +397 -0
- pymupdf/mupdf-devel/include/mupdf/fitz.h +97 -0
- pymupdf/mupdf-devel/include/mupdf/helpers/mu-office-lib.h +666 -0
- pymupdf/mupdf-devel/include/mupdf/helpers/mu-threads.h +280 -0
- pymupdf/mupdf-devel/include/mupdf/helpers/pkcs7-openssl.h +48 -0
- pymupdf/mupdf-devel/include/mupdf/html.h +53 -0
- pymupdf/mupdf-devel/include/mupdf/memento.h +423 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/annot.h +965 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/clean.h +48 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/cmap.h +145 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/crypt.h +107 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/document.h +842 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/event.h +167 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/font.h +168 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/form.h +380 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/image-rewriter.h +78 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/interpret.h +492 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/javascript.h +43 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/name-table.h +596 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/object.h +435 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/page.h +316 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/parse.h +61 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/resource.h +133 -0
- pymupdf/mupdf-devel/include/mupdf/pdf/xref.h +300 -0
- pymupdf/mupdf-devel/include/mupdf/pdf.h +57 -0
- pymupdf/mupdf-devel/include/mupdf/ucdn.h +452 -0
- pymupdf/mupdf-devel/lib/mupdfcpp.lib +0 -0
- pymupdf/mupdf.py +58506 -0
- pymupdf/mupdfcpp.dll +0 -0
- pymupdf/pymupdf.py +2 -0
- pymupdf/table.py +2355 -0
- pymupdf/utils.py +5879 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
GNU AFFERO GPL 3.0
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: PyMuPDF
|
|
3
|
+
Version: 1.24.12
|
|
4
|
+
Summary: A high performance Python library for data extraction, analysis, conversion & manipulation of PDF (and other) documents.
|
|
5
|
+
Description-Content-Type: text/markdown
|
|
6
|
+
Author: Artifex
|
|
7
|
+
Author-email: support@artifex.com
|
|
8
|
+
License: GNU AFFERO GPL 3.0
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Information Technology
|
|
12
|
+
Classifier: Operating System :: MacOS
|
|
13
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Programming Language :: C
|
|
16
|
+
Classifier: Programming Language :: C++
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
19
|
+
Classifier: Topic :: Utilities
|
|
20
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
22
|
+
Requires-Python: >=3.9
|
|
23
|
+
Project-URL: Documentation, https://pymupdf.readthedocs.io/
|
|
24
|
+
Project-URL: Source, https://github.com/pymupdf/pymupdf
|
|
25
|
+
Project-URL: Tracker, https://github.com/pymupdf/PyMuPDF/issues
|
|
26
|
+
Project-URL: Changelog, https://pymupdf.readthedocs.io/en/latest/changes.html
|
|
27
|
+
|
|
28
|
+
# PyMuPDF
|
|
29
|
+
|
|
30
|
+
**PyMuPDF** is a high performance **Python** library for data extraction, analysis, conversion & manipulation of [PDF (and other) documents](https://pymupdf.readthedocs.io/en/latest/the-basics.html#supported-file-types).
|
|
31
|
+
|
|
32
|
+
# Community
|
|
33
|
+
Join us on **Discord** here: [#pymupdf](https://discord.gg/TSpYGBW4eq)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# Installation
|
|
37
|
+
|
|
38
|
+
**PyMuPDF** requires **Python 3.9 or later**, install using **pip** with:
|
|
39
|
+
|
|
40
|
+
`pip install PyMuPDF`
|
|
41
|
+
|
|
42
|
+
There are **no mandatory** external dependencies. However, some [optional features](#pymupdf-optional-features) become available only if additional packages are installed.
|
|
43
|
+
|
|
44
|
+
You can also try without installing by visiting [PyMuPDF.io](https://pymupdf.io/#examples).
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# Usage
|
|
48
|
+
|
|
49
|
+
Basic usage is as follows:
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
import pymupdf # imports the pymupdf library
|
|
53
|
+
doc = pymupdf.open("example.pdf") # open a document
|
|
54
|
+
for page in doc: # iterate the document pages
|
|
55
|
+
text = page.get_text() # get plain text encoded as UTF-8
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
# Documentation
|
|
61
|
+
|
|
62
|
+
Full documentation can be found on [pymupdf.readthedocs.io](https://pymupdf.readthedocs.io).
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
# <a id="pymupdf-optional-features"></a>Optional Features
|
|
67
|
+
|
|
68
|
+
* [fontTools](https://pypi.org/project/fonttools/) for creating font subsets.
|
|
69
|
+
* [pymupdf-fonts](https://pypi.org/project/pymupdf-fonts/) contains some nice fonts for your text output.
|
|
70
|
+
* [Tesseract-OCR](https://github.com/tesseract-ocr/tesseract) for optical character recognition in images and document pages.
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
# About
|
|
75
|
+
|
|
76
|
+
**PyMuPDF** adds **Python** bindings and abstractions to [MuPDF](https://mupdf.com/), a lightweight **PDF**, **XPS**, and **eBook** viewer, renderer, and toolkit. Both **PyMuPDF** and **MuPDF** are maintained and developed by [Artifex Software, Inc](https://artifex.com).
|
|
77
|
+
|
|
78
|
+
**PyMuPDF** was originally written by [Jorj X. McKie](mailto:jorj.x.mckie@outlook.de).
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
# License and Copyright
|
|
82
|
+
|
|
83
|
+
**PyMuPDF** is available under [open-source AGPL](https://www.gnu.org/licenses/agpl-3.0.html) and commercial license agreements. If you determine you cannot meet the requirements of the **AGPL**, please contact [Artifex](https://artifex.com/contact/pymupdf-inquiry.php) for more information regarding a commercial license.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# PyMuPDF
|
|
2
|
+
|
|
3
|
+
**PyMuPDF** is a high performance **Python** library for data extraction, analysis, conversion & manipulation of [PDF (and other) documents](https://pymupdf.readthedocs.io/en/latest/the-basics.html#supported-file-types).
|
|
4
|
+
|
|
5
|
+
# Community
|
|
6
|
+
Join us on **Discord** here: [#pymupdf](https://discord.gg/TSpYGBW4eq)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# Installation
|
|
10
|
+
|
|
11
|
+
**PyMuPDF** requires **Python 3.9 or later**, install using **pip** with:
|
|
12
|
+
|
|
13
|
+
`pip install PyMuPDF`
|
|
14
|
+
|
|
15
|
+
There are **no mandatory** external dependencies. However, some [optional features](#pymupdf-optional-features) become available only if additional packages are installed.
|
|
16
|
+
|
|
17
|
+
You can also try without installing by visiting [PyMuPDF.io](https://pymupdf.io/#examples).
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# Usage
|
|
21
|
+
|
|
22
|
+
Basic usage is as follows:
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import pymupdf # imports the pymupdf library
|
|
26
|
+
doc = pymupdf.open("example.pdf") # open a document
|
|
27
|
+
for page in doc: # iterate the document pages
|
|
28
|
+
text = page.get_text() # get plain text encoded as UTF-8
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Documentation
|
|
34
|
+
|
|
35
|
+
Full documentation can be found on [pymupdf.readthedocs.io](https://pymupdf.readthedocs.io).
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
# <a id="pymupdf-optional-features"></a>Optional Features
|
|
40
|
+
|
|
41
|
+
* [fontTools](https://pypi.org/project/fonttools/) for creating font subsets.
|
|
42
|
+
* [pymupdf-fonts](https://pypi.org/project/pymupdf-fonts/) contains some nice fonts for your text output.
|
|
43
|
+
* [Tesseract-OCR](https://github.com/tesseract-ocr/tesseract) for optical character recognition in images and document pages.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# About
|
|
48
|
+
|
|
49
|
+
**PyMuPDF** adds **Python** bindings and abstractions to [MuPDF](https://mupdf.com/), a lightweight **PDF**, **XPS**, and **eBook** viewer, renderer, and toolkit. Both **PyMuPDF** and **MuPDF** are maintained and developed by [Artifex Software, Inc](https://artifex.com).
|
|
50
|
+
|
|
51
|
+
**PyMuPDF** was originally written by [Jorj X. McKie](mailto:jorj.x.mckie@outlook.de).
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
# License and Copyright
|
|
55
|
+
|
|
56
|
+
**PyMuPDF** is available under [open-source AGPL](https://www.gnu.org/licenses/agpl-3.0.html) and commercial license agreements. If you determine you cannot meet the requirements of the **AGPL**, please contact [Artifex](https://artifex.com/contact/pymupdf-inquiry.php) for more information regarding a commercial license.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
pymupdf\__init__.py,sha256=HVvD8s006MHg5jTa0Ag8-0ADJZY3ihOkQfn8l1qto1U,826236
|
|
2
|
+
pymupdf\__main__.py,sha256=_XI8_Yy9nfImDRy64Wn-523E44YoDyPXLk2G_Bt5qbw,42256
|
|
3
|
+
pymupdf\pymupdf.py,sha256=acsJEc4yUslAM1pkqgHFMXCllIj8qIDwhn3hivadn28,66
|
|
4
|
+
pymupdf\table.py,sha256=R49vOf88rHnt3NH-gGJWZCaeoZDmcYWpCCllzW_8exA,83768
|
|
5
|
+
pymupdf\utils.py,sha256=jh2f0RKsjc0247AzuuOQecPsCBEYxq_ZAIzAfrZ2Jpc,205984
|
|
6
|
+
pymupdf\_apply_pages.py,sha256=Ou0y8JxMnxPqYU9ZdSgxNaubBBEk-wPW1MdzU7JosPI,7822
|
|
7
|
+
pymupdf\extra.py,sha256=CdTGyb4xJFBad7Rohf13ceEJogTRPPG-0yItyhYZA0Q,6780
|
|
8
|
+
pymupdf\_extra.pyd,sha256=TH2xCmBL1XfrjSjtW4lZO7dbGX9B4ybsjTFhDGX7nQo,168448
|
|
9
|
+
fitz\__init__.py,sha256=pXmMxqp37-c65HIOETJ2az-dyZ6JRsO8Z0psN-vQ8Qc,408
|
|
10
|
+
fitz\table.py,sha256=Sy6thV5fvSGfjMF4lHqN-UGHRyskCw1in1LZuxYihMM,87
|
|
11
|
+
fitz\utils.py,sha256=gWbSaDl0-00OhtkORcDG9QD_6ix0__zV3_nTlCd9rj4,87
|
|
12
|
+
pymupdf\mupdf.py,sha256=uVqiCdE02FJKJcpdAXhpMT-XUP05irv6NWCn1Q_77PQ,2298923
|
|
13
|
+
pymupdf\_mupdf.pyd,sha256=fRNJCqDu7qZHI1tl4HDew5wLMZh0FE327ZmOe_617cI,10056704
|
|
14
|
+
pymupdf\mupdfcpp.dll,sha256=vhU_0wIHA6T2PWtwXAjT-E1L0h2rTd98D5CRCp8Yiks,19934720
|
|
15
|
+
pymupdf\mupdf-devel\lib\mupdfcpp.lib,sha256=UZzzofQKwybi08zAQcsIQwz3U8WMnIMXf0xhUiJJfKs,3310080
|
|
16
|
+
pymupdf\mupdf-devel\include\mupdf\fitz.h,sha256=USmb5qegYBxfa6YhKZkGmU8kl_AoXTWwN60c1z5Lutk,2721
|
|
17
|
+
pymupdf\mupdf-devel\include\mupdf\html.h,sha256=f5XwMMEFZfr1Qk-rtYTOdzda93_LlYRGFsWAgYYxRDI,1880
|
|
18
|
+
pymupdf\mupdf-devel\include\mupdf\memento.h,sha256=f-CAhwXCxpxYgVkOFa6ipaOnmh3dyhWMv4orvJTHNUw,16946
|
|
19
|
+
pymupdf\mupdf-devel\include\mupdf\pdf.h,sha256=T3P_2dTYJwIo008D3LzfdlkMvNmCwgWNFQmM6VKLpIM,1630
|
|
20
|
+
pymupdf\mupdf-devel\include\mupdf\ucdn.h,sha256=RkMpSehibu2NgPCbz4CLAhvEiKkPaa2JXy-dZhV4fqc,13969
|
|
21
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\archive.h,sha256=Ga3FtrC6xObCDC58KIQ9csTgZ4gOQiEH6ZFDzjKFhVQ,12309
|
|
22
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\band-writer.h,sha256=RL5OypSBjWJHcr7C7qPZkSc0psYxofDs4K83mz1E36k,3759
|
|
23
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\bidi.h,sha256=Z3hfxGYsIXawalvEPAV5AihqugA80wQQINWqKaib9I8,2510
|
|
24
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\bitmap.h,sha256=9JDXT735wjZfPyJAJAUu6lNHy45s8xRoacK2XObB0UU,4968
|
|
25
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\buffer.h,sha256=Rd8NC2pASjiPZK1mnTyStHhScRxQiQR0vu1i2WHXXGM,7652
|
|
26
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\color.h,sha256=aUDCY89FTu0lskoB0oswL08Chb8bUauRJQI42a5L904,12698
|
|
27
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\compress.h,sha256=FNT-ERskqZEbV1-l2fzTGjdjCKasuJ27fu6mrsMEOBo,3434
|
|
28
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\compressed-buffer.h,sha256=OnfLd27_PqXalWjnEJuLUvWTH8Nfh7UMBj6fDPmVIno,4537
|
|
29
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\config.h,sha256=Kf4j6zJycB_Ju5In6tfctkcJQQQd6Mv50Usnx1I2_xo,5944
|
|
30
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\context.h,sha256=grtSlJ59djIi8qKIXLH08XlxcwdbrYr97r10J3riHak,27764
|
|
31
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\crypt.h,sha256=LvhV3wm11tu0DBqkNAJjSY6mCrdiMTKkOrJpDBmrCdk,6748
|
|
32
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\device.h,sha256=PxYNH7Hv1_HS-pek6MnYZX5cF4z48o8AsXO16ldx61w,22936
|
|
33
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\display-list.h,sha256=yYtX3oRHV8DFCjjBayEDV-cLmdtRFW2SGJH_-jxvLpo,4954
|
|
34
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\document.h,sha256=WMiCic3bIAvx1YH9oGvGYz8wdRE8XoqUwOfPvYD3bFk,34975
|
|
35
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\export.h,sha256=-TWHp7YI7rg5bYOgYMNyGxOVGULJ3SRlxtRzFLARPSw,1689
|
|
36
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\filter.h,sha256=x82mUxTTBXs9V2oaXDKVF5tptrQyzFUPs2TNswcFJdo,7953
|
|
37
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\font.h,sha256=k0Xsn7fFJmCSYt2agpCd03fQ17-NURqZNkbYto9IpzM,23626
|
|
38
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\geometry.h,sha256=bo1cyJQb23-phLsHU-4k9S2yY5_lSbaK-W7E5zRT_a0,19670
|
|
39
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\getopt.h,sha256=bMC5-s0QrYhvwH6BriTLyYocB5BjRBcEZ0za5pYSYCs,4796
|
|
40
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\glyph-cache.h,sha256=OWKKY26feGOrT2PCB9zuqgPslrpcYAoLnVJ3YciuG_s,3377
|
|
41
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\glyph.h,sha256=jSj-jspSOQNR0c_Vi9qtmHWNqkg6GxSJC_Fs4aE47LQ,2397
|
|
42
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\hash.h,sha256=2r0RT5R2tUp1xDaGJP2jZ-1SuL71EBQN7lXPHKdO9yw,4107
|
|
43
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\heap-imp.h,sha256=7-cW51QItgFSFneqcBeqfIy_fThqVgRBGI_kdyUD4ug,3952
|
|
44
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\heap.h,sha256=zDVnh37BAlVfDvFVcvZsksMXu2hh3fWf83kMn2RiCdc,4901
|
|
45
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\image.h,sha256=8QbnJl2JRh5WWNGDcKchpveaTVYv1vfinmrPt74qUek,14492
|
|
46
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\link.h,sha256=zMEUOHWSRzk9nd2vkCaSDkANJONGzYkVzDWUam92bDU,4129
|
|
47
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\log.h,sha256=4xmhWdgwuBtFqbf12OUhfKgBT4HLEEOdWeZqHjI-CRc,1961
|
|
48
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\outline.h,sha256=mnYnR7q7IhA2hVozT2oZCqWZCTRJ3njGCS9S0C-PUlE,7331
|
|
49
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\output-svg.h,sha256=Gz6usPB3i_Yuq9p7GxQuQkAlnNGtstC7qPTs3yuxfLk,2285
|
|
50
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\output.h,sha256=Qbh9mxaIdCb6AjdS1kGWeXFaK6gXFNOb22_k3KYI5B4,12656
|
|
51
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\path.h,sha256=vvPvC4QyWDmBOKnTSal5ulpH6FzadEQpCTY8KgdvfJU,12784
|
|
52
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\pixmap.h,sha256=kswzj6ZAI4nS-J_HPsmN-J39ZTdQwkfDrev5NBsiSYA,15655
|
|
53
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\pool.h,sha256=DdQHNI1_TPBeMw8_Hbuz5py4-Wfkus4g2wtJUaNdS0c,2075
|
|
54
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\separation.h,sha256=2N9MuYDIa6jD5n4RpOjPqWJkn05vKklqGDm1ESQcq90,4603
|
|
55
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\shade.h,sha256=zAh_DSpyB4_gsdJBnHgs8obYSwpvlJY02aweXsZLOlM,6211
|
|
56
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\store.h,sha256=-5jgGdcTmizLiflPl-LlTs7lyxOlLXUlV9A-Wow_Q_s,13905
|
|
57
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\story-writer.h,sha256=I_QNOxX_w6bEXIpknT9h-q-Tv5o9hUNDBiyVCx0Fv9s,6911
|
|
58
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\story.h,sha256=u5J8K9_OfoP_D0weS8e2oeWI5-sg_9A79knITeZK9so,7680
|
|
59
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\stream.h,sha256=KWNnZnUvqBRcXGdFEkXO3eOMIcRiIv96h4KMPtC8BMc,16512
|
|
60
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\string-util.h,sha256=5ie6nLqrLwgFMSXoXBGg15iXzLbcYBoD_YjDfj45awA,8126
|
|
61
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\structured-text.h,sha256=9MPcbtk1XCCec1f-j2tuatXe5mjG55qBem7lnO5Xgl4,11058
|
|
62
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\system.h,sha256=24lHkv78zOQIZQn0LXQzlLxE2xtUW6y0BAThDgQ4Eyo,14053
|
|
63
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\text.h,sha256=HdbLRO4u2mF32Jzque_Z2AmXMhENKZfMDf6vo5caxkA,6391
|
|
64
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\track-usage.h,sha256=oleSq1ZwWWqMsAykvFKqxcTGBHDQpWjmQ4RRFLsdByo,1707
|
|
65
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\transition.h,sha256=B5Ubf9bj_WWoqa05InIdk978-VRg6rR07Puxatfu56w,2188
|
|
66
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\tree.h,sha256=425CcmbbB0j9PFtq4S4TwLlEWvLTEMJ92mheXoEWWF8,1983
|
|
67
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\types.h,sha256=P0WLCXlGYNyVSrdvjlRgdLUoZHptE_WCk35YksWe2f0,1470
|
|
68
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\util.h,sha256=1UjxFCU9YEKNj1Mi71ujpfecNlVzZYyEEH3yeG82Iss,7122
|
|
69
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\version.h,sha256=9QcJChU9MTZkoaWlUiMLySrqa1IcfESHJjgPrlKD3us,1202
|
|
70
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\write-pixmap.h,sha256=O4gyQOGdmLLC-TJpmjxHVNvSQSx6Kk0fx35dFlt9jxk,15070
|
|
71
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\writer.h,sha256=frICYfuG-GvgX1TlSdjAGZd9DLPJSxlbRc2Q9C9Lbt0,10814
|
|
72
|
+
pymupdf\mupdf-devel\include\mupdf\fitz\xml.h,sha256=KVYKAglgklKAybFjFjgAcLp9n0PHC-KCeyHcihVbmG4,11736
|
|
73
|
+
pymupdf\mupdf-devel\include\mupdf\helpers\mu-office-lib.h,sha256=yxvJ5B90c1Tu5sqq8d6O4dIZJO48ZBvXWlu5E6bVSBE,22192
|
|
74
|
+
pymupdf\mupdf-devel\include\mupdf\helpers\mu-threads.h,sha256=9ZRYn-Rg_02WjHTtpgL6A9gGuU8SIWm-GM1JQX4J8hA,5774
|
|
75
|
+
pymupdf\mupdf-devel\include\mupdf\helpers\pkcs7-openssl.h,sha256=q83gBVL0uh_8GTETw0NWtyEAkL0S4QeeWTPB0nyCRXc,2231
|
|
76
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\annot.h,sha256=Bg5xgiKedQdlF-Laex_0-fnFrfW4YMusYe92j82Krao,32087
|
|
77
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\clean.h,sha256=w7OF20bfWw03L_eKqFGTL2XLQWqA2fEPWNckLk4KJ30,1707
|
|
78
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\cmap.h,sha256=cxmN0BMc-VKoM96bY_1knmG5VLh976cz8FBP-GSE2GQ,3780
|
|
79
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\crypt.h,sha256=k_1VJo7t8Z-gFRU8tOnmUdePoKxgZ028Pd4zdd_iJ9s,4463
|
|
80
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\document.h,sha256=mhbTsnw7QPmS3A1e94tiHCSqYED-6DLakO1u39fIHIo,25689
|
|
81
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\event.h,sha256=J_wWweEHcvVTBzuxA7c_jOv1pf2cCElKwCskO691DqY,4777
|
|
82
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\font.h,sha256=of4eQ9QrW216PAdHL1HaT3nxiEyMt0zSvijJNrs0loU,5345
|
|
83
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\form.h,sha256=TZVMAZBE8RP3by7FNAAEI8fql9iyLh4bUq5RtEJeI8o,15024
|
|
84
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\image-rewriter.h,sha256=W4iGPQ_AhvoyZZd2lJeRyXU3v4QHzjYPYyA1iLjgxG8,3399
|
|
85
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\interpret.h,sha256=zwKc3LTxuwDz7HYOOfCknj_LcAS1bxKiAM9idySwNnM,19259
|
|
86
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\javascript.h,sha256=jX1N9FvsWjObztPPbK7w-yYv__di1MI4HDiIpEyyd2Q,1823
|
|
87
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\name-table.h,sha256=2MJHIsMs0SsEg10txYWc_evF305RC6hhXFmXNguO35w,19792
|
|
88
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\object.h,sha256=8q0uXWKSZl2W2LlfPXoNCfm_2xzWs4VQgmz5pXS6Pjc,19959
|
|
89
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\page.h,sha256=T9HNpkoPgS4jUvI7DU5C5XyZpinXDKzO06sDVlbUdcI,11134
|
|
90
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\parse.h,sha256=sp0QDKykbPDSYfkROEpMCXOZ0C4wHiMWouEU6-K7wS8,2581
|
|
91
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\resource.h,sha256=caEVtegUuv30fpMw32NzbRn7BezdX_q9fjBY3IRnoEs,5692
|
|
92
|
+
pymupdf\mupdf-devel\include\mupdf\pdf\xref.h,sha256=kdUPw3JB8q5MZ-vaUgJTqX8cwOGfEvIJSh3QIrH7_wU,11851
|
|
93
|
+
pymupdf\_build.py,sha256=2OnmZayMeGMGkSoKO_Y1hGq75IDtSoviI3ey0fUIKAU,81
|
|
94
|
+
PyMuPDF-1.24.12.dist-info\README.md,sha256=qWBPn7qTbCPQs1S5KWXA_iMUVbFimN2q0GnCLWALfpU,2223
|
|
95
|
+
PyMuPDF-1.24.12.dist-info/WHEEL,sha256=1P1mb7Rj2WXQ829Ben4cnwFV56j9izV-55UpTHJZu9s,80
|
|
96
|
+
PyMuPDF-1.24.12.dist-info/METADATA,sha256=kST4H4n2d3eo1zF00yAulZT-KkPDmyOHFC_AoqF0n8I,3372
|
|
97
|
+
PyMuPDF-1.24.12.dist-info/COPYING,sha256=4Fv7ClDSjhDuQgCg-BeJPyaVMFWkyVp40FN4tIg7QBM,18
|
|
98
|
+
PyMuPDF-1.24.12.dist-info/entry_points.txt,sha256=9NcH_CVkHVuLNxE1TYbfwXwClVkMcM890TMTJ3C5fDA,51
|
|
99
|
+
PyMuPDF-1.24.12.dist-info/RECORD,,
|
fitz/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# pylint: disable=wildcard-import,unused-import,unused-wildcard-import
|
|
2
|
+
from pymupdf import *
|
|
3
|
+
from pymupdf import _as_fz_document
|
|
4
|
+
from pymupdf import _as_fz_page
|
|
5
|
+
from pymupdf import _as_pdf_document
|
|
6
|
+
from pymupdf import _as_pdf_page
|
|
7
|
+
from pymupdf import _log_items
|
|
8
|
+
from pymupdf import _log_items_active
|
|
9
|
+
from pymupdf import _log_items_clear
|
|
10
|
+
from pymupdf import __version__
|
|
11
|
+
from pymupdf import __doc__
|
fitz/table.py
ADDED
fitz/utils.py
ADDED