fabio.datIO.fabiodata:
A common class for dataIO in fable Contains a 2d numpy array for
keeping data, and two lists (clabels and rlabels) containing labels
for columns and rows respectively
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.
fabio.cbfimage.CIF:
This is the CIF class, it represents the CIF dictionary; and as a a
python dictionary thus inherits from the dict built in class.
list:
list() -> new empty list list(iterable) -> new list
initialized from iterable's items
fabio.file_series.file_series:
represents a series of files to iterate
has an idea of a current position to do next and prev