The only workaround I am aware of is using applescript in Spark/FastScripts with

do shell script "python script.py"
link|improve this question
2  
FastScripts can launch non-AppleScript (e.g. Python) scripts directly. Just put the script (or an alias to it; symlinks do not seem to work) somewhere in ~/Library/Scripts. – Chris Johnsen Oct 23 '09 at 21:11
feedback

4 Answers

In 10.6 Snow Leopard it's quite easy to add any command to the Services menu of each application (or specific applications), and then assign a keyboard shortcut.

Here on Super User, see Fast User Switching/Apple Menu? for an example that invokes some shell script.

link|improve this answer
feedback

You can use Keyboard Maestro to launch an application or script from the keyboard. There is also IronAHK (AutoHotkey rewrite) which works under Mono, example:

^n::Run, /path/to/script.py

although make sure the script has sufficient execute permissions and a shebang line.

link|improve this answer
feedback

You can also use automator to make a contextual menu invoked script.

link|improve this answer
feedback

Other applications that launch AppleScripts like FastScripts (lite) include Quicksilver, Butler, and ControllerMate.

I believe Quicksilver may allow for the execution of Shell scripts directly from within the application, but I dislike Quicksilver on the point that it seems to flake out more often than Butler does.

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.