Python Forum
Process multiple pdf files - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Process multiple pdf files (/thread-35388.html)



Process multiple pdf files - Spartan314 - Oct-27-2021

I'd love for somebody in the know to point me in the right direction on something.

From a list of file names in an Excel workbook I want my Python script to:
Open the file named in cell A1;
Copy the file to cell B1 (just because)
Copy the first 30 words in the file to cell C1
Close the file
Open the file named in cell A2
Continue through the list in column A.
End the program

These Files are Adobe .pdf's by the way.


RE: Process multiple pdf files - Larz60+ - Oct-27-2021

Is this a homework assignment?