OSX : Defining a new URL handler that points straight at a Python script

前端 未结 1 1102
梦谈多话
梦谈多话 2020-12-13 11:34

I\'m trying to define a new URL handler under OSX that will point at a python script.

I\'ve wrapped the Python script up into an applet (right-clicked on the .py, an

1条回答
  •  [愿得一人]
    2020-12-13 11:53

    After a lot of messing around, I've managed to get this working under OSX...

    This is how I'm doing it:

    in the AppleScript Script Editor, write the following script:

    on open location this_URL
        do shell script "/scripts/runLocalCommand.py '" & this_URL & "'"
    end open location
    

    If you want to make sure you're running the Python from a certain shell (in my case, I'm using tcsh generally, and have a .tcshrc file that defines some environment variables that I want to have access to) then that middle line might want to be:

    do shell script "tcsh -c \"/scripts/localCommand.py '" & this_URL & "'\""
    

    I was wanting to do all of my actual processing inside a python script - but because of the way URL handers work in OSX, they have to call an application bundle rather than a script, so doing this in AppleScript seemed to be the easiest way to do it.

    in the Script Editor, Save As an "Application Bundle"

    Find the saved Application Bundle, and Open Contents. Find the Info.plist file, and open it. Add the following:

    CFBundleIdentifier
    com.mycompany.AppleScript.LocalCommand
    CFBundleURLTypes
    
      
        CFBundleURLName
        LocalCommand
        CFBundleURLSchemes
        
          local
        
      
    
    

    Just before the last two lines, which should be:

    
    
    

    There are three strings in there that might want to be changed:

    com.mycompany.AppleScript.LocalCommand
    LocalCommand
    local
    

    The third of these is the handler ID - so a URL would be local://something

    So, then this passes over to the Python script.

    This is what I've got for this:

    #!/usr/bin/env python
    import sys
    import urllib
    arg = sys.argv[1]
    handler, fullPath = arg.split(":", 1)
    path, fullArgs = fullPath.split("?", 1)
    action = path.strip("/")
    args = fullArgs.split("&")
    params = {}
    for arg in args:
        key, value = map(urllib.unquote, arg.split("=", 1))
        params[key] = value
    

    0 讨论(0)
提交回复
热议问题