A Google Csoportok már nem támogatja az új Usenet-bejegyzéseket és -feliratkozásokat. A korábbi tartalmak továbbra is megtekinthetők.

looking for a simple way to load a program from another python program..

0 megtekintés
Ugrás az első olvasatlan üzenetre

Eric_...@msn.com

olvasatlan,
2006. aug. 13. 15:51:002006. 08. 13.
I was looking for a simple way to load a simple python program from
another python program.

I tried

os.system(cabel)

The file name is cabel.py a csound instrument editor..

The error I am getting is

Traceback (most recent call last):
File "C:\Python24\Lib\site-packages\boa-constructor\test of
snake\Frame1.py", line 212, in OnCabelItems0Menu
os.system(cabel)
NameError: global name 'cabel' is not defined
Localisation of messages is disabled, using default language.
time resolution is 279.365 ns

This is with cabel in the current directory. I have managed to use
import to run it but it will only do it once. I may be able to use the
exec commands but I don't want to exit the program I am using only to
run other programs and then exit. I would also perfer that cabel is in
it's own directory.

thanks in advance for any help

http://www.stormpages.com/edexter/csound.html

Simon Forman

olvasatlan,
2006. aug. 13. 16:46:252006. 08. 13.

Read the docs: os.system() takes a string. You're calling it with an
uninitialized variable name. Unless you have something like "cabel =
'cabel'" somewhere before your call os.system() you can expect that
error.

"import cabel" will only work once because python's module import
mechanism caches imported modules to save time when a script imports
them more than once. To force the module to be reloaded use the reload
function: "reload(cabel)"

os.system() docs: http://docs.python.org/lib/os-process.html#l2h-1692
(But see the subprocess module too:
http://docs.python.org/lib/module-subprocess.html)

Peace,
~Simon

Caleb Hattingh

olvasatlan,
2006. aug. 13. 16:48:052006. 08. 13.
Hi Eric

Check that ".py" and ".pyw" are in your PATHEXT environment variable
(are you using Windows?). Then, if the folder that cabel is in is in
your PATH environment variable, and the correct association for .py
files is set up (i.e. they get run by python.exe),

either
os.system('cabel')
or
os.system('cabel.py')

should work.

Alternatively, you could not do any of those things, and run

os.system('python cabel.py')

with 'cabel.py' in the same folder as the parent script, and that
should work too, assuming that the path to your python executable is on
the PATH environment variable.

If you run other commands from python quite frequently, it is probably
a good idea to look into the "os.popen" set of commands, for more
flexibilty.

Caleb

Az üzenetet töröltük.

Eric_...@msn.com

olvasatlan,
2006. aug. 13. 18:17:472006. 08. 13.

import cabel and reload(cabel) seem to work fine. I am not sure why I
am having trouble with os.system, probily something to do with the
path. Is one better than the other when it comes to distributing
software?? Thanks for the help. Hopefully this message I get isn't
anything important.. (I will have to look into os.popen later.

Luis M. González

olvasatlan,
2006. aug. 13. 18:41:332006. 08. 13.
Try this:

import os
os.startfile('cabel.py')

This should work with any program or file, not only python ones.

Hope this helps,
Luis

Az üzenetet töröltük.

AlbaClause

olvasatlan,
2006. aug. 14. 11:43:452006. 08. 14.
Eric_...@msn.com wrote:

I am new to Python coding myself, but I've found that the easiest way to
start another script from within a script, is to use the
execfile('filename.py') command.

There may be better ways of loading other Python scripts -- better ways that
I'm not yet aware of -- but execfile() works for me.


--
--
There are several things that I will never be:
* I will never be attracted to females.
* I will never enjoy the company of others.
Exactly how these realities bode for my enemy, is not of my concern.

Gabriel Genellina

olvasatlan,
2006. aug. 14. 17:40:262006. 08. 14.
– Eric_...@msn.com, pytho...@python.org
At Sunday 13/8/2006 16:51, Eric_...@msn.com wrote:

> I was looking for a simple way to load a simple python program from
>another python program.
>
>I tried
>
>os.system(cabel)
>
>The file name is cabel.py a csound instrument editor..
>

>NameError: global name 'cabel' is not defined

Have you tried os.system("cabel.py")

Gabriel Genellina
Softlab SRL





__________________________________________________
Preguntá. Respondé. Descubrí.
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta).
¡Probalo ya!
http://www.yahoo.com.ar/respuestas

Eric_...@msn.com

olvasatlan,
2006. aug. 14. 20:25:392006. 08. 14.

Gabriel Genellina wrote:
> At Sunday 13/8/2006 16:51, Eric_...@msn.com wrote:
>
> > I was looking for a simple way to load a simple python program from
> >another python program.
> >
> >I tried
> >
> >os.system(cabel)
> >
> >The file name is cabel.py a csound instrument editor..
> >
> >NameError: global name 'cabel' is not defined
>
> Have you tried os.system("cabel.py")
>
That did not seem to work, os.startfile worked great. I haven't tried
passing commands to csound with it yet but maybe os.sytem will work
better with that than it did python since I got the idea to use that to
pass arguments to them from a csound example. won't have time until
this weekend to try that though, or the exec(file)..

http://www.stormpages.com/edexter/csound.html

Az üzenetet töröltük.
0 új üzenet