Skip to content

Instantly share code, notes, and snippets.

View vv-monsalve's full-sized avatar

Viviana Monsalve vv-monsalve

View GitHub Profile
from fontTools.ttLib import TTFont
import sys
if len(sys.argv) != 2:
print("please include a file path to a font")
sys.exit()
font_file = sys.argv[1]
font = TTFont(font_file)