Sarthak-506's picture
Upload folder using huggingface_hub
2cabb35 verified
raw
history blame contribute delete
661 Bytes
"""fontTools.ttLib -- a package for dealing with TrueType fonts."""
from fontTools.config import OPTIONS
from fontTools.misc.loggingTools import deprecateFunction
import logging
log = logging.getLogger(__name__)
OPTIMIZE_FONT_SPEED = OPTIONS["fontTools.ttLib:OPTIMIZE_FONT_SPEED"]
class TTLibError(Exception):
pass
class TTLibFileIsCollectionError(TTLibError):
pass
@deprecateFunction("use logging instead", category=DeprecationWarning)
def debugmsg(msg):
import time
print(msg + time.strftime(" (%H:%M:%S)", time.localtime(time.time())))
from fontTools.ttLib.ttFont import *
from fontTools.ttLib.ttCollection import TTCollection