Re: [Pythonmac-SIG] appscript and launching apps from "background-only" Python processes

2008-10-28 Thread Ned Deily
In article <[EMAIL PROTECTED]>, Bill Janssen <[EMAIL PROTECTED]> wrote: > I'm starting a Python daemon using SystemStarter, and in it I'm using > appscript to launch an app (Entourage). I get the following error: > > CantLaunchApplicationError: CantLaunchApplicationError -606: Application is

Re: [Pythonmac-SIG] Pythonmac-SIG Digest, Vol 66, Issue 30

2008-10-28 Thread Juan C. Méndez
I use Komodo and love it On Mon, Oct 27, 2008 at 7:00 PM, <[EMAIL PROTECTED]> wrote: > Send Pythonmac-SIG mailing list submissions to >pythonmac-sig@python.org > > To subscribe or unsubscribe via the World Wide Web, visit >http://mail.python.org/mailman/listinfo/pythonmac-sig > or

[Pythonmac-SIG] appscript and launching apps from "background-only" Python processes

2008-10-28 Thread Bill Janssen
I'm starting a Python daemon using SystemStarter, and in it I'm using appscript to launch an app (Entourage). I get the following error: CantLaunchApplicationError: CantLaunchApplicationError -606: Application is background-only. If I start the same daemon from the command-line manually, it wo

Re: [Pythonmac-SIG] Py2App and PyQT

2008-10-28 Thread kelsolaar_fool
Ok the QtCore.so problem got solved by adding this line into the __boot__.py : sys.path = [os.path.join(os.environ['RESOURCEPATH'], 'lib', 'python2.5', 'lib-dynload')] + sys.path Now I'm facing another really annoying problem : I need at some point to load jpeg images into my program and Qt jpe

Re: [Pythonmac-SIG] Authentication via python?

2008-10-28 Thread Kevin Walzer
Benjamin Schollnick wrote: Folks, I¹m working on some time machine scripting... In a gist, there is a .Backup.log file that I want to access via readline & python From the MOSX gui, it appears some of the files require root access (eg. Authentication dialog pops up). Now, I am using the

Re: [Pythonmac-SIG] Authentication via python?

2008-10-28 Thread Nehemiah Dacres
On Tue, Oct 28, 2008 at 8:38 AM, Benjamin Schollnick < [EMAIL PROTECTED]> wrote: > Folks, > > I'm working on some time machine scripting... In a gist, there is a > .Backup.log file that I want to access via readline & python > > >From the MOSX gui, it appears some of the files require root a

[Pythonmac-SIG] Authentication via python?

2008-10-28 Thread Benjamin Schollnick
Folks, I¹m working on some time machine scripting... In a gist, there is a .Backup.log file that I want to access via readline & python >From the MOSX gui, it appears some of the files require root access (eg. Authentication dialog pops up). Now, I am using the applet maker to compile the p

[Pythonmac-SIG] Python 2.6 / appscript 0.18.1 DeprecationWarnings fix

2008-10-28 Thread Florian Höch
Hello list, I hope this is the correct place to send patches to :) I noticed that appscript generates some DeprecationWarnings when used with Python 2.6. It is easily fixed though (I've copied the fixup code verbatim from Python 2.6's ConfigParser.py): --- appscript-0.18.1/Lib/aem/send.py.bak