hellpanderrr

Results 4 comments of hellpanderrr

What OS, Python & Pdfminer do you use?

I tried to reproduce this on Win7 and Ubuntu -- can't get the error. Could you try to look what is in the return of `get_name(objs)`?

@abubakarmani1 python3 does not support `` operator, you need to replace it with `!=`

This started happening from `20220319` version, possibly related to https://github.com/pdfminer/pdfminer.six/pull/659 Reproducible example: ``` import urllib.request from io import BytesIO import pdfminer.high_level pdf_url = 'https://www.orimi.com/pdf-test.pdf' pdfminer_page = list( pdfminer.high_level.extract_pages(BytesIO(urllib.request.urlopen(pdf_url).read())) )[0] text_boxes...