**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)* - [python-plugin](#python-plugin) - [命令行](#%E5%91%BD%E4%BB%A4%E8%A1%8C) - [时间日期](#%E6%97%B6%E9%97%B4%E6%97%A5%E6%9C%9F) - [网络](#%E7%BD%91%E7%BB%9C) - [优化开发](#%E4%BC%98%E5%8C%96%E5%BC%80%E5%8F%91) - [数据处理](#%E6%95%B0%E6%8D%AE%E5%A4%84%E7%90%86) - [其他](#%E5%85%B6%E4%BB%96) ## python-plugin > 推荐一些Python第三方工具类库。没有框架,没有框架,没有框架 ### 命令行 - [tqdm](https://github.com/tqdm/tqdm) > 一个在命令行里展现进度条的插件 - [docopt](http://docopt.org/) > 辅助进行命令行操作的库 - [click](http://click.pocoo.org/6/) > 辅助进行命令行操作的库。我觉得比docopt好用 ### 时间日期 - [Arrow](https://arrow.readthedocs.io/en/latest/) > 时间日期处理库 - [delorean](https://github.com/myusuf3/delorean) > Delorean is a library for clearing up the inconvenient truths that arise dealing with datetimes in Python. > > 说实话我没用过。。 - [python-dateutil](https://github.com/paxan/python-dateutil) Arrow 的底层依赖 ### 网络 - [Requests](http://requests-docs-cn.readthedocs.io/zh_CN/latest/) > 地球人都知道的http请求库 - [Selenium](http://selenium-python.readthedocs.io/index.html) > 模拟浏览器,常用于测试或者爬虫 ### 优化开发 - [Pylint](https://pylint.readthedocs.io/en/latest/) > python lint工具 ### 数据处理 - [jieba](https://github.com/fxsjy/jieba) > 中文分词工具 - [Python-docx](http://hao.jobbole.com/python-docx/) > 读写word文档的Python库 - [openpyxl](https://bitbucket.org/openpyxl/openpyxl) > 读写excel > > 教程可见[用 Python 处理 Excel 文件](http://www.jianshu.com/p/220b01d38f2c) - [python-markdown2](https://github.com/trentm/python-markdown2) > markdown编译工具 - [Mistune](http://mistune.readthedocs.io/en/latest/) > markdown编译工具,我感觉比python-markdown2好用 ### 其他 - [you-get](https://github.com/soimort/you-get) > 命令行下载视频,真心神器