Class to store names of output files and archive them so that a single
file can be registered with jobcontrol and returned from the work
directory to the user.
|
__init__(self,
name,
debug)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
__enter__(self)
Support context management "with" statement. |
|
|
|
__exit__(self,
exc_type,
exc_value,
exc_traceback)
Support context management "with" statement. |
|
|
|
|
|
write_archive(self)
Write the archive with all the files added to the list. |
|
|
|
register_file(self,
fname,
archive)
Register the file fname with jobcontrol as a log file, or if
archive=True add it to an archive of output files to be returned as
one (zip) file at the end of the job. |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|