Tag Interface¶
- pytools.tag.check_tag_uniqueness(tags: frozenset[Tag]) frozenset[Tag] [source]¶
Ensure that tags obeys the rules set forth in
UniqueTag
. If not, raiseNonUniqueTagError
. If any tags are not subclasses ofTag
, aTypeError
will be raised.- Returns:
tags
- class pytools.tag.Taggable(tags: frozenset[Tag] = frozenset({}))[source]¶
Parent class for objects with a tags attribute.
- tags¶
- _with_new_tags(tags: frozenset[Tag]) Self [source]¶
Returns a copy of self with the specified tags. This method should be overridden by subclasses.
- tagged(tags: Iterable[Tag] | Tag | None) Self [source]¶
Return a copy of self with the specified tag or tags added to the set of tags. If the resulting set of tags violates the rules on
pytools.tag.UniqueTag
, an error is raised.- Parameters:
tags – An instance of
Tag
or an iterable with instances therein.
- without_tags(tags: Iterable[Tag] | Tag | None, verify_existence: bool = True) Self [source]¶
Return a copy of self without the specified tags.
- Parameters:
tags – An instance of
Tag
or an iterable with instances therein.verify_existence – If set to True, this method raises an exception if not all tags specified for removal are present in the original set of tags. Default True.
- tags_not_of_type(tag_t: type[TagT]) frozenset[Tag] [source]¶
Returns self’s tags that are not of type tag_t.
Added in version 2021.1.
- class pytools.tag.Tag[source]¶
Generic metadata, applied to, among other things, pytato Arrays.
- tag_name¶
A fully qualified
DottedName
that reflects the class name of the tag.
Instances of this type must be immutable, hashable, picklable, and have a reasonably concise
__repr__()
of the formdotted.name(attr1=value1, attr2=value2)
. Positional arguments are not allowed.- __repr__()¶
Return repr(self).
Supporting Functionality¶
- class pytools.tag.DottedName(name_parts: tuple[str, ...])[source]¶
- name_parts¶
A tuple of strings, each of which is a valid Python identifier. No name part may start with a double underscore.
The name (at least morally) exists in the name space defined by the Python module system. It need not necessarily identify an importable object.
- classmethod from_class(argcls: Any) DottedName [source]¶
- class pytools.tag.NonUniqueTagError[source]¶
Raised when a
Taggable
object is instantiated with more than oneUniqueTag
instances of the same subclass in its set of tags.