cChardet/src/cchardet/__init__.py

29 lines
485 B
Python
Raw Normal View History

#!/usr/bin/env python
# coding: utf-8
from cchardet import _cchardet
def detect(msg):
"""
Args:
msg: str
Returns:
charset: str
Warnings:
UserWarning
"""
return _cchardet.detect(msg)
def detect_with_confidence(msg):
"""
Args:
msg: str
Returns:
{
"encoding": str,
"confidence": float
}
Warnings:
UserWarning
"""
return _cchardet.detect_with_confidence(msg)