SynonymData

class pronto.SynonymData[source]
__eq__(other)[source]

Return self==value.

__lt__(other)[source]

Return self<value.

__hash__()[source]

Return hash(self).

__init__(description: str, scope: Optional[str] = None, type: Optional[str] = None, xrefs: Optional[Iterable[pronto.xref.Xref]] = None)[source]

Initialize self. See help(type(self)) for accurate signature.

__ge__(other, NotImplemented=NotImplemented)

Return a >= b. Computed by @total_ordering from (not a < b).

__gt__(other, NotImplemented=NotImplemented)

Return a > b. Computed by @total_ordering from (not a < b) and (a != b).

__le__(other, NotImplemented=NotImplemented)

Return a <= b. Computed by @total_ordering from (a < b) or (a == b).