Using the filemanager Path Finder on mac os x, i wanna retrieve the selected files/folders with python by using py-appscript. py-appscript is a high-level event bridge that allows you to control scriptable Mac OS X applications from Python.
In applescript it would be something like
tell application "Path Finder"
set selection_list to selection -- list of fsItems (fsFiles and fsFolders)
set _path to posix path of first item of selection_list
do shell script "python " & quoted form of _path
end tell
In python it would instead something like
from appscript import *
selectection_list = app('Path Finder').selection.get() # returns reference, not string
So, how can i convert the references in selection_list to python-strings?