Return an iterable over unicode text lines extracted from a pdf file at location.
(location)
| 188 | |
| 189 | |
| 190 | def unicode_text_lines_from_pdf(location): |
| 191 | """ |
| 192 | Return an iterable over unicode text lines extracted from a pdf file at |
| 193 | location. |
| 194 | """ |
| 195 | for line in pdf.get_text_lines(location): |
| 196 | yield as_unicode(line) |
| 197 | |
| 198 | |
| 199 | def break_numbered_unicode_text_lines( |
no test coverage detected