How to run another python script?
Jean-Michel Pichavant
jeanmichel at sequans.com
Mon Feb 14 13:55:32 EST 2011
More information about the Python-list mailing list
Mon Feb 14 13:55:32 EST 2011
- Previous message (by thread): How to run another python script?
- Next message (by thread): encoding
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Dan Lee wrote: > Hi. > > I just knew what python is. > Now I'm about to write backup script.Now I got 2 scripts. > > AAA : generate zip file > BBB : delete old file. > > AAA is done. > Now I'm going to code BBB file. and I will fix AAA to call BBB to > delete dump file at the end. > Please let me know How can I call the BBB file from AAA file. > > Thanks in advance. > Dan > In that case, code the delete function in AAA => No BBB file, problem solved. There is of course plenty of ways to execute BBB from AAA but that would be overkill. If you really want to write the BBB file, then write it, import it in AAA and call the BBB.deleteOldFile function. JM
- Previous message (by thread): How to run another python script?
- Next message (by thread): encoding
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list