Right now I'm writing a program in python that requires you to open a certain .pdf file, control+A (to select all), control C and control V (to copy and paste) on a .txt file, and then run the program.
I was wondering if there's any way I can skip a step and run the program without having to do this sequence of steps, with just a reference to the pdf file inside the program.
Something like:
##does the procedure above and saves it on a notes.txt file##
FILE_NAME = 'notes.pdf'
read_pdf(FILE_NAME,'notes.txt')