码迷,mamicode.com
首页 > 编程语言 > 详细

Python常用第三方库

时间:2018-06-03 17:39:37      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:encode   class   python   request   ane   pre   requests   import   system   

  • Pillow图像处理库
  • requests 访问网络资源
  • chardet 用于检测编码
import chardet
print(chardet.detect(bHello,world))  #{‘encoding‘: ‘ascii‘, ‘confidence‘: 1.0, ‘language‘: ‘‘}
import chardet
data=离离原上草,一岁一枯荣.encode(gbk)
print(chardet.detect(data)) #{‘encoding‘: ‘GB2312‘, ‘confidence‘: 0.7407407407407407, ‘language‘: ‘Chinese‘}
import chardet
data=最新の主要ニュース.encode(euc-jp)
print(chardet.detect(data)) #{‘encoding‘: ‘EUC-JP‘, ‘confidence‘: 0.99, ‘language‘: ‘Japanese‘}
  • psutil (process and system utilities)系统监控

Python常用第三方库

标签:encode   class   python   request   ane   pre   requests   import   system   

原文地址:https://www.cnblogs.com/larry-xia/p/9129570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!