view bin/toutf8 @ 800:8970b3fbdfd7

<elliott> delquote 470
author HackBot
date Sun, 14 Oct 2012 01:13:29 +0000
parents e037173e0012
children
line wrap: on
line source

#!/usr/bin/python
import sys
import chardet
x = sys.stdin.read()
enc = chardet.detect(x)['encoding']
sys.stdout.write(x.decode(enc).encode('UTF-8'))