This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from unicodedata import normalize | |
import glob | |
import os | |
def nfd2nfc(data): | |
return normalize('NFC', data) | |
if len(sys.argv) > 1: | |
path = sys.argv[1] |