The class provides various sets of tags that mark the most important metadata properties.
These tags enable finding and updating metadata properties across different packages regardless of the metadata standard or file format.
The Tags type exposes the following members:
Example
fromgroupdocs.metadataimportMetadatafromgroupdocs.metadata.taggingimportTagswithMetadata("input.pptx")asmetadata:# Find properties tagged as the last editor or modified date/timeprops=metadata.find_properties(lambdap:Tags.person.editorinlist(p.tags)orTags.time.modifiedinlist(p.tags))forpropinprops:print(f"Property name: {prop.name}, Property value: {prop.value}")