I am using python 2.7 on mac osx 10.9 for creating an app. This app takes file name as argument, and then opens the file, and keep monitoring the file for changes till file is closed.
It is working fine for a single file. I used, py2app and platypus for converting python code .py file to an app.
Limitation of it is, once an instance(process) of an app is started(by clicking on any file to open), file opens. But, simultaneously, I am not able to open two files at a time i.e. to launch to instance of an app. Through terminal, it is possible to launch multiple instance of an app.
Then, what should I do, to open multiple files at a time, by clicking on multiple files at a time through this app.