本文整理汇总了Python中pip._vendor.chardet.universaldetector.UniversalDetector方法的典型用法代码示例。如果您正苦于以下问题:Python universaldetector.UniversalDetector方法的具体用法?Python universaldetector.UniversalDetector怎么用?Python universaldetector.UniversalDetector使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pip._vendor.chardet.universaldetector
的用法示例。
在下文中一共展示了universaldetector.UniversalDetector方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: description_of
# 需要导入模块: from pip._vendor.chardet import universaldetector [as 别名]
# 或者: from pip._vendor.chardet.universaldetector import UniversalDetector [as 别名]
def description_of(lines, name='stdin'):
"""
Return a string describing the probable encoding of a file or
list of strings.
:param lines: The lines to get the encoding of.
:type lines: Iterable of bytes
:param name: Name of file or collection of lines
:type name: str
"""
u = UniversalDetector()
for line in lines:
line = bytearray(line)
u.feed(line)
# shortcut out of the loop to save reading further - particularly useful if we read a BOM.
if u.done:
break
u.close()
result = u.result
if PY2:
name = name.decode(sys.getfilesystemencoding(), 'ignore')
if result['encoding']:
return '{0}: {1} with confidence {2}'.format(name, result['encoding'],
result['confidence'])
else:
return '{0}: no result'.format(name)