Module python_gedcom_2.element.physical_description

GEDCOM element consisting of tag gedcom.tags.GEDCOM_TAG_PHYSICAL_DESCRIPTION

Expand source code
"""GEDCOM element consisting of tag `gedcom.tags.GEDCOM_TAG_PHYSICAL_DESCRIPTION`"""

from python_gedcom_2.element.event_detail import EventDetail


class PhysicalDescriptionElement(EventDetail):
    pass

Classes

class PhysicalDescriptionElement (level, pointer, tag, value, crlf='\n', multi_line=True)

An EventDetail can be one of many kinds of actual Element. This is an abstract class to contain a lot of shared methods. (See page 29 of the GEDCOM 5.5 spec for details) NOTE: This is different from an event element, which is a legitimate GEDCOM tag and has its own rules.

Expand source code
class PhysicalDescriptionElement(EventDetail):
    pass

Ancestors

Inherited members