File size: 291 Bytes
046e3b8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""A collection of utility functions to work with PyMuPDF"""

from .fitzutils import (
    open_pdf,
    ToCEntry,
    dump_toc,
    pprint_toc,
    get_file_encoding
)

__all__ = [
    'open_pdf',
    'ToCEntry',
    'dump_toc',
    'pprint_toc',
    'get_file_encoding'
]