https://github.com/annotation/text-fabric
Raw File
Tip revision: a0756f5c549fc6de880876b0aa65f7304b071353 authored by Dirk Roorda on 05 July 2023, 14:32:51 UTC
fix
Tip revision: a0756f5
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