Skip to content

Instantly share code, notes, and snippets.

@joonahn
Created April 24, 2018 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joonahn/064ef0f835c066a16882b1bf5764ca79 to your computer and use it in GitHub Desktop.
Save joonahn/064ef0f835c066a16882b1bf5764ca79 to your computer and use it in GitHub Desktop.
Mac에서 깨진 파일 string을 합쳐진 windows string으로 변환하는 함수
from unicodedata import normalize
def nfd2nfc(data):
return normalize('NFC', data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment