cChardet/src/cchardet/__init__.py

8 lines
121 B
Python
Raw Normal View History

#!/usr/bin/env python
# coding: utf-8
from cchardet import _cchardet
def detect(msg):
return _cchardet.detect(msg)