Re: [PythonCE] How to execute a scipt on Python startup

2005-04-14 Thread mike
Quoting Michael Murdock <[EMAIL PROTECTED]>: > On 4/13/05, Michael Murdock <[EMAIL PROTECTED]> wrote: > > Is there a way to have a Python script executed whenever Python starts > up? > > On 4/12/05, Mark Doukidis <[EMAIL PROTECTED]> wrote: > >> Try placing your code inside "sitecustomize.py". >

Re: [PythonCE] How to execute a scipt on Python startup

2005-04-13 Thread Michael Murdock
On 4/13/05, Michael Murdock <[EMAIL PROTECTED]> wrote: > Is there a way to have a Python script executed whenever Python starts up? On 4/12/05, Mark Doukidis <[EMAIL PROTECTED]> wrote: >> Try placing your code inside "sitecustomize.py". >> This is run every time python is started. Thanks, Mark!

Re: [PythonCE] How to execute a scipt on Python startup

2005-04-12 Thread Mark Doukidis
Try placing your code inside "sitecustomize.py". This is run every time python is started. On 4/13/05, Michael Murdock <[EMAIL PROTECTED]> wrote: > Hello, > > I have a Python script that I import in every script that I write that > imports sys and then calls sys.path.append() to set up a few loca

[PythonCE] How to execute a scipt on Python startup

2005-04-12 Thread Michael Murdock
Hello, I have a Python script that I import in every script that I write that imports sys and then calls sys.path.append() to set up a few locations where I keep everything on my Axim (some stuff on storage card, some in My Documents, etc.). Is there a way to have a Python script executed whenev