Problem Statement:
I have a PDF whose structure is like tables but the lines are not visible. Please find below the example:
The above image is how my table looks in one of the PDF pages.
My Research
How to extract table as text from the PDF using Python? -- Gone through this question and seen all the answers. Not helpful
Tabula: Tried tabula API but it is only extracting headers and not the text, probably because there are no lines.
I can convert the whole pdf to text and then try to extract it with regex or data manipulations somehow. But that can be very tedious and time taking. Also, as the PDF changes the whole coding has to be done again.
Ask
Is their any API or Python package which can help me do this (Windows and Python 3.x)?