https://github.com/annotation/text-fabric
Raw File
Tip revision: 6a2651a0b02a70b3e6fdd89f6d02b727626cd8bf authored by Dirk Roorda on 05 July 2024, 21:12:28 UTC
WATM, IIIF, MQL improvements
Tip revision: 6a2651a
tfmem.py
from tf.core.data import Data
from tf.core.timestamp import Timestamp


@profile
def mem():
    path = '_temp/g_word_utf8.tf'
    tmObj = Timestamp()
    F = Data(path, tmObj)
    F._readDataBin()
    print(type(F))


if __name__ == '__main__':
    mem()
back to top