File size: 319 Bytes
19c6a63
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
.. codeauthor:: Tsuyoshi Hombashi <[email protected]>
"""

from .__version__ import __author__, __copyright__, __email__, __license__, __version__
from ._func import detect_file_encoding
from ._mbstrdecoder import MultiByteStrDecoder


__all__ = (
    "detect_file_encoding",
    "MultiByteStrDecoder",
)