I am trying to build a script to automate a VERY time-consuming (and boring) process, here it is:
I have to convert A LOT of files (3000 more or less) from a format to another with a specific program and sadly it looks there is no option to convert them all at once or take some shortcut. Then again while iterating through the process I noticed that there is a sequence of keys that could be pressed to do this process "mouse free" except opening the files but I guess I can get around it somehow.
Now, my aim is to build a python script which could do this by iterating the key sequence:
Step 1) open the file with its appropriate program (a 3d modelling program).
Step 2) alt + f then e, then tab, tab, tab, e, and similar
Step 3) close the file, open another file and back to step 1 (after some minor security checks)
is there a module I can use or some built in commands that I could use?
I am using Python 3.4 on windows and the only module I found (and know a little about) is SendKeys but it is available for Python 2 only! Is there a Python 3 option and/or a better way around it?