I Am Trying To Extract Data As Html Elements In Python Using Pdfminer
I am trying extract data as HTML from pdf using pdfminer although I was successful to extract text from the same pdf now I am getting an error while extracting data as HTML I have
Solution 1:
Add parentheses to StringIO
this way: output_string = StringIO()
that will call the class construction, and code could get working with this
Post a Comment for "I Am Trying To Extract Data As Html Elements In Python Using Pdfminer"