Im trying to import certain text from a pdf in python does a
Im trying to import certain text from a pdf in python, does anyone know if that is possible??
Solution
I dont think it is possible you cannot import text from a pdf in python but you can extract the text from pdf in python
If you want to know that here it is
It can be extracted by using textract tool
from textract import process
text = process(\'/tmp/mydocument.pdf\')
If you dont want this please ignore this but finally i dont know think so it is possible what you have asked.
