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.
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