Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Public Member Functions | |
def | __init__ |
def | __repr__ |
def | reset |
def | clone |
def | debug |
def | append |
def | prepend |
def | open |
def | open_r |
def | open_w |
def | copy |
def | makepipeline |
Data Fields | |
debugging | |
steps | |
def append | ( | self, | |
cmd, | |||
kind | |||
) |
def clone | ( | self) |
t.clone() returns a new pipeline template with identical initial state as the current one.
def copy | ( | self, | |
infile, | |||
outfile | |||
) |
Definition at line 185 of file pipes.py.
References Template.makepipeline().
def debug | ( | self, | |
flag | |||
) |
def makepipeline | ( | self, | |
infile, | |||
outfile | |||
) |
Definition at line 188 of file pipes.py.
References Template.debugging, FTP.debugging, NNTP.debugging, and Template.steps.
def open | ( | self, | |
file, | |||
rw | |||
) |
t.open(file, rw) returns a pipe or file object open for reading or writing; the file is the other end of the pipeline.
Definition at line 155 of file pipes.py.
References Template.open_r(), and Template.open_w().
def open_r | ( | self, | |
file | |||
) |
t.open_r(file) and t.open_w(file) implement t.open(file, 'r') and t.open(file, 'w') respectively.
Definition at line 165 of file pipes.py.
References Template.makepipeline(), and Template.steps.
def open_w | ( | self, | |
file | |||
) |
Definition at line 176 of file pipes.py.
References Template.makepipeline(), Template.open(), and Template.steps.
def prepend | ( | self, | |
cmd, | |||
kind | |||
) |
def reset | ( | self) |