glue.pipeline.CondorDAGJob:
A Condor DAG job never notifies the user on completion and can have
variable options that are set for a particular node in the DAG.
glue.pipeline.LDBDCJob:
A ldbdc job can be used to insert data or fetch data from the
database.
glue.ldbd.LIGOMetadataDatabase:
Contains a tuple of tables in the order that insertions should
ocour and a dictionary of mandatory uniquw id fields for each table
that must be populated.
glue.pipeline.DeepCopyableConfigParser:
The standard SafeConfigParser no longer supports deepcopy() as of
python 2.7 (see http://bugs.python.org/issue16058).
glue.pipeline.ScienceSegment:
A ScienceSegment is a period of time where the experimenters
determine that the inteferometer is in a state where the data is
suitable for scientific analysis.
glue.LDBDWClient.SimpleLWXMLParser:
A very simple LIGO_LW XML parser class that reads the only keeps
tables that do not contain the strings sngl_ or multi_
glue.ldbd.UniqueIds:
Contains a dictionary of unique ids which can be queried based on
name.
glue.markup._oneliner:
An instance of oneliner returns a string corresponding to one
element.
glue.ligolw.tokenizer.RowBuilder:
This class provides the logic required to transform a sequence of
of tokens parsed out of the delimited text of a Stream element into
a sequence of row objects for insertion into a Table element.
glue.ligolw.table.InterningRowBuilder:
This subclass of the tokenizer.RowBuilder class respects the
"interning" hints provided by table definitions, and
attempts to replace the values of row attributes associated with
interned columns with references to shared instances of those
values.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.
glue.ligolw.ligolw.attributeproxy:
Expose an XML attribute of an Element subclass as Python instance
attribute with support for an optional default value.