Files
2025-03-13 16:17:53 +01:00

23 lines
608 B
Python

class netnode(object):
def getblob(self, start, tag) -> Union[bytes, None]:
"""
Get a blob from a netnode.
@param start the index where the blob starts (it may span on multiple indexes)
@param tag the netnode tag
@return a blob, or None
"""
pass
def getclob(self, start, tag) -> Union[str, None]:
"""
Get a large amount of text from a netnode.
@param start the index where the clob starts (it may span on multiple indexes)
@param tag the netnode tag
@return a clob, or None
"""
pass