推荐11个实用Python库

[size=medium]1.delorean[/size]

非常酷的日期/时间库


from delorean import Delorean
EST = "US/Eastern"
d = Delorean(timezone=EST)

[size=medium]2.prettytable[/size]

可以在浏览器或终端构建很不错的输出


from prettytable import PrettyTable
table = PrettyTable(["animal", "ferocity"])
table.add_row(["wolverine", 100])
table.add_row(["grizzly", 87])
table.add_row(["Rabbit of Caerbannog", 110])
table.add_row(["cat", -1])
table.add_row(["platypus", 23])
table.add_row(["dolphin", 63])
table.add_row(["albatross", 44])
table.sort_key("ferocity")
table.reversesort = True
+----------------------+----------+
| animal | ferocity |
+----------------------+----------+
| Rabbit of Caerbannog | 110 |
| wolverine | 100 |
| grizzly | 87 |
| dolphin | 63 |
| albatross | 44 |
| platypus | 23 |
| cat | -1 |
+----------------------+----------+

[size=medium]3.snowballstemmer[/size]

非常瘦小的语言转换库,支持15种语言



from snowballstemmer import EnglishStemmer, SpanishStemmer
EnglishStemmer().stemWord("Gregory")
# Gregori
SpanishStemmer().stemWord("amarillo")
# amarill

[size=medium]4.wget[/size]

Python的网络爬虫库


import wget
wget.download("#100% [............................................................................] 280385 / 280385


[size=medium]5.PyMC[/size]

PyMC,一个用于贝叶斯分析的函数库


from pymc.examples import disaster_model
from pymc import MCMC
M = MCMC(disaster_model)
M.sample(iter=10000, burn=1000, thin=10)
[-----------------100%-----------------] 10000 of 10000 complete in 1.4 sec


[size=medium]6.sh[/size]

将shell命令作为函数导入Python脚本


from sh import find
find("/tmp")
/tmp/foo
/tmp/foo/file1.json
/tmp/foo/file2.json
/tmp/foo/file3.json
/tmp/foo/bar/file3.json


[size=medium]7.fuzzywuzzy[/size]

用于字符串匹配率、令牌匹配等


from fuzzywuzzy import fuzz
fuzz.ratio("Hit me with your best shot", "Hit me with your pet shark")
# 85


[size=medium]8.progressbar[/size]

如其名,一个滚动条函数库

from progressbar import ProgressBar
import time
pbar = ProgressBar(maxval=10)
for i in range(1, 11):
pbar.update(i)
time.sleep(1)
pbar.finish()
# 60% |######################################################## |


[size=medium]9.colorama[/size]

一个色彩库,可以为文本添加丰富的色彩
[img]http://files.jb51.net/file_images/article/201501/201501230929201.png[/img]


[size=medium]10.uuid[/size]

一个可以产生唯一uuid的库


import uuid
print uuid.uuid4()
# e7bafa3d-274e-4b0a-b9cc-d898957b4b61


[size=medium]11.bashplotlib[/size]

Python的绘图控件,可以绘制直方图、散点图等


$ pip install bashplotlib
$ scatter --file data/texas.txt --pch x


[img]http://files.jb51.net/file_images/article/201501/201501230929212.png[/img]

以上就是本文推荐的11个使用的python库了,也许有些你没有见过,但都是些非常棒的pyton库,希望大家能够喜欢。以上代码可以来[url="http://www.raquant.com/?pk_campaign=iteye"]raquant镭矿[/url]平台自己试试,无需安装Python即可在线运行。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值