how to extract text or tables from fixed position #702
FlyBS
started this conversation in
Ask for help with specific PDFs
Replies: 1 comment 2 replies
-
Yes, you can do that with the pdf = pdfplumber.open("my/file.pdf")
page = pdf.pages[0]
print(page.crop((x0, top, x1, bottom)).extract_text()) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to extract text from part fixed position, not all page ranges. Does it support passing two location information, such as (x0,y0),(x1,y1)
Beta Was this translation helpful? Give feedback.
All reactions