view bin/unidecode @ 11214:1b95325ed14b

<b_jonas> fetch share/mtg/MagicCompRules-20170925.txt http://media.wizards.com/2017/downloads/MagicCompRules%2020170925.txt
author HackBot
date Wed, 04 Oct 2017 11:39:51 +0000
parents c3351169a617
children
line wrap: on
line source

#!/usr/bin/env python
import os, sys
import unicodedata
s = u" ".join("[U+{0:04X} {1}]".format(ord(c), unicodedata.name(c, "DUNNO")) for c in " ".join(sys.argv[1:]).decode("utf-8")).encode("utf-8")
if u"DUNNO" in s:
  os.execvp("singlecode", ["singlecode"] + sys.argv[1:])
else:
  print s