https://github.com/annotation/text-fabric
Raw File
Tip revision: e2ae1dd9e78dd39b5faa0f9c370f62da8a13bbe9 authored by Dirk Roorda on 13 December 2021, 19:07:12 UTC
small improvements to the mod parameter of use()
Tip revision: e2ae1dd
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