how to extract .pdf names from a dictionary code example
Example: extract pdf text with python
# pip install tika
from tika import parser
raw = parser.from_file('yourfile.pdf')
print(raw['content'])
# pip install tika
from tika import parser
raw = parser.from_file('yourfile.pdf')
print(raw['content'])