Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pypdf/_text_extraction/_layout_mode/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

1"""Layout mode text extraction extension for pypdf""" 

2from ._fixed_width_page import ( 

3 fixed_char_width, 

4 fixed_width_page, 

5 text_show_operations, 

6 y_coordinate_groups, 

7) 

8from ._font import Font 

9 

10__all__ = [ 

11 "Font", 

12 "fixed_char_width", 

13 "fixed_width_page", 

14 "text_show_operations", 

15 "y_coordinate_groups", 

16]