class documentation

class IndexTag(object): (source)

View In Hierarchy

Object to represent a page tag in the Index API

These are tags that appear in pages with an "@", like "@foo". They are indexed by the Index and represented with this class.

Method __eq__ Undocumented
Method __hash__ Undocumented
Method __init__ Undocumented
Method __ne__ Undocumented
Method __repr__ Undocumented
Class Variable __slots__ Undocumented
Instance Variable id the id of this tag in the table (primary key)
Instance Variable name the name of the tag, e.g. "foo" for an "@foo" in the page
def __eq__(self, other): (source)

Undocumented

def __hash__(self): (source)

Undocumented

def __init__(self, name, id): (source)

Undocumented

def __ne__(self, other): (source)

Undocumented

def __repr__(self): (source)

Undocumented

__slots__: tuple[str, ...] = (source)

Undocumented

the id of this tag in the table (primary key)
name = (source)
the name of the tag, e.g. "foo" for an "@foo" in the page