PprintIncludeExclude#
- class astropy.table.PprintIncludeExclude(default=None)[source]#
Bases:
TableAttribute
Maintain tuple that controls table column visibility for print output.
This is a descriptor that inherits from MetaAttribute so that the attribute value is stored in the table meta[‘__attributes__’].
This gets used for the
pprint_include_names
andpprint_exclude_names
Table attributes.Methods Summary
__call__
()Get the value of the attribute.
add
(names)Add
names
to the include/exclude attribute.remove
(names)Remove
names
from the include/exclude attribute.set
(names)Set value of include/exclude attribute to
names
.Methods Documentation