Re: [Tutor] Custom Input Subprocess

2013-10-30 Thread Dave Angel
On 30/10/2013 19:49, Kenny Stier' wrote: > I am brand new to Python, and I would like to create a GUI Program that > downloads files at certain times using the Linux terminal. I have the Linux > terminal part down, and using subprocess can execute that, but I can't > allow people to, in the GUI, i

Re: [Tutor] Custom Input Subprocess

2013-10-30 Thread Alan Gauld
On 30/10/13 23:49, Kenny Stier' wrote: import subprocess subprocess.call(["at", "-f", "download.sh", "7:11 PM"]) But using the GUI, they need to be able to input their own text where the time is, and where it says "download.sh". How do I do this? Thanks! What exactly is your problem? Do you k

[Tutor] Custom Input Subprocess

2013-10-30 Thread Kenny Stier'
I am brand new to Python, and I would like to create a GUI Program that downloads files at certain times using the Linux terminal. I have the Linux terminal part down, and using subprocess can execute that, but I can't allow people to, in the GUI, input some of the command in themselves. The curren