Spaces:
Paused
Paused
| """fontTools.ttLib -- a package for dealing with TrueType fonts.""" | |
| from fontTools.misc.loggingTools import deprecateFunction | |
| import logging | |
| log = logging.getLogger(__name__) | |
| class TTLibError(Exception): | |
| pass | |
| class TTLibFileIsCollectionError(TTLibError): | |
| pass | |
| 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 | |