Re: [Tutor] Runnig a windows.exe from python

2010-09-30 Thread Steven D'Aprano
On Fri, 1 Oct 2010 04:05:08 am Susana Iraiis Delgado Rodriguez wrote: > Hello ! > > I apoligize for the format of my last message, I didn't realize that > putting my text in bold format will show those asterisks. > By the way you're Alan, for the pythom module I first had to read my > arguments and

Re: [Tutor] Runnig a windows.exe from python

2010-09-30 Thread Susana Iraiis Delgado Rodriguez
Hello ! I apoligize for the format of my last message, I didn't realize that putting my text in bold format will show those asterisks. By the way you're Alan, for the pythom module I first had to read my arguments and passed them to the os.system(), it worked. Now when I execute this command, in m

Re: [Tutor] Runnig a windows.exe from python

2010-09-29 Thread Alan Gauld
"Susana Iraiis Delgado Rodriguez" wrote I'm working in a simple python module to run a external command, this command is named "ogr2ogr.exe" . When I execute my python script : *import os def call(): os.system(' "C:\\Archivos de programa\\FWTools2.4.7\\bin\\ogr2ogr.exe" ')* * raw_i

Re: [Tutor] Runnig a windows.exe from python

2010-09-29 Thread Steven D'Aprano
On Thu, 30 Sep 2010 05:49:53 am Susana Iraiis Delgado Rodriguez wrote: > Hello everyone: > > I'm working in a simple python module to run a external command, this > command is named "ogr2ogr.exe" . When I execute my python script : > > *import os > def call(): > os.system(' "C:\\Archivos de >

[Tutor] Runnig a windows.exe from python

2010-09-29 Thread Susana Iraiis Delgado Rodriguez
Hello everyone: I'm working in a simple python module to run a external command, this command is named "ogr2ogr.exe" . When I execute my python script : *import os def call(): os.system(' "C:\\Archivos de programa\\FWTools2.4.7\\bin\\ogr2ogr.exe" ')* * raw_input()* *call()* It runs, but