I have a python script bundled into a application (I'm on a mac) and have the application set to be able to open .zip files. But when I say "open foo.zip with bar.py" how do I access the file that I have passed to it?

Additional info: Using tkinter.

What's a good way to debug this, as there is no terminal to pass info to?

link|improve this question

Check the Console application. It will probably have all the informations you're looking for. – zneak Sep 1 '10 at 2:22
I can't find a python.log or tk.log or anything like that though. Where would those be? – Sky Sep 1 '10 at 2:38
feedback

3 Answers

You should be using sys.argv[1]

task = sys.argv[1].decode('utf-8')
if task == u'uppercase':
    pass
elif task == u'openitems':
    item_paths = sys.argv[2:]
    for itempath in item_paths:
        itempath = itempath.decode('utf-8')
link|improve this answer
I'm a little unsure about this. It generates syntax errors on my machine. What is it trying to accomplish? – Sky Sep 1 '10 at 2:52
Idea is to decode the input gathered through «sys.argv» as UTF-8 first. The same we have to do, if we have to send a value to applescript. What will be passed to bar.py is a command, which needs to be decoded. Commands can be subsequently handled as shown in example above. – pyfunc Sep 1 '10 at 3:12
Don't forget to import sys – domen Sep 1 '10 at 7:27
Yeah .. Thats right , I simply took the code piece that illustrates it, removing the rest. – pyfunc Sep 1 '10 at 8:41
sys.argv[1] is filled with -psn_0_****** so that doens't work anyway – Sky Sep 4 '10 at 21:01
feedback

If I'm not greatly mistaken, it should pass the name of the file as the first argument to the script - sys.argv[1].

link|improve this answer
That's what I would think too... only, regardless of whether I specify a file or not, sys.argv[1] is filled with "-psn_0_#######" – Sky Sep 1 '10 at 2:36
feedback

You could wrap your script into a Mac OS X application using Platypus, which passes dropped or opened filenames from the GUI as arguments to the script.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.