MCPcopy Create free account
hub / github.com/pymupdf/PyMuPDF / extract_words

Method extract_words

src/table.py:797–799  ·  view source on GitHub ↗
(self, chars: list)

Source from the content-addressed store, hash-verified

795 return WordMap(list(self.iter_extract_tuples(chars)))
796
797 def extract_words(self, chars: list) -> list:
798 words = list(word for word, word_chars in self.iter_extract_tuples(chars))
799 return words
800
801
802def extract_words(chars: list, **kwargs) -> list:

Callers 2

extract_textFunction · 0.95
extract_wordsFunction · 0.80

Calls 1

iter_extract_tuplesMethod · 0.95

Tested by

no test coverage detected