Python chardet Simple Application

Source: Internet
Author: User

Python string encoding identification module (third party libraries):

Official address: Http://pypi.python.org/pypi/chardet import chardet import urllib   # 可根据需要,选择不同的数据 TestData = urllib.urlopen(‘http://www.baidu.com/‘).read() print chardet.detect(TestData)   # 运行结果: # {‘confidence‘: 0.99, ‘encoding‘: ‘GB2312‘}The running result indicates that there is a 99% probability that this code is GB2312 encoded. import urllib from chardet.universaldetector import UniversalDetector usock = urllib.urlopen(‘http://www.baidu.com/‘) # 创建一个检测对象 detector = UniversalDetector() for line in usock.readlines(): # 分块进行测试,直到达到阈值 detector.feed(line) if detector.done: break # 关闭检测对象 detector.close() usock.close() # 输出检测结果 print detector.result   # 运行结果: # {‘confidence‘: 0.99, ‘encoding‘: ‘GB2312‘}Application background, if you want to encode a large file, using this advanced method, you can read only one, to identify the encoding method to improve the detection speed. If you want to use a detection object to detect multiple data, be sure to run Detector.reset () after each test. Clears the previous data.

Python chardet Simple Application

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.