Re: interact with application installer prompts using Python

2005-11-22 Thread Zem
Some applications installers written with Installshield allow you to do
silent installs.  This requires that you create a response file to
store all of your default answers. Check this link out, maybe it'll
work for you.

http://documentation.installshield.com/robo/projects/helplib/IHelpSetup_EXECmdLine.htm#rParam

As far as other installer types, you'll have to check their respective
documentations to see if they provide any kind of silent install
mechanisms.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Dectecting dir changes

2005-12-09 Thread Zem
Why not use SGI's FAM (File Alteration Monitor)? It works under
Linux...and I think I saw Solaris support somewhere.  Under Linux, the
FAM daemon doesn't use inefficient polling of the filesystem instead it
monitors file changes through the kernel.  Under Solaris, it'd probably
fall back to polling.

If you can use it, then you can use the nice python-fam module.  Very
simple to work with and generally works very well.  I wrote a python
app that monitored a directory for file creation and deletion and sent
emails based on certain events.

http://python-fam.sourceforge.net/

Good luck.

-- 
http://mail.python.org/mailman/listinfo/python-list