- 时间:2022-11-08 07:12 编辑: 来源: 阅读:
- 扫一扫,手机访问
摘要:Python开发常用的一些开源Package分享
一般安装完Python后,我会先装一些常用的Package。做个笔记,记录下来,以备查询:
[b]Web FrameWorks[/b]
Tornado,访问:[url=http://www.tornadoweb.org/en/stable/]http://www.tornadoweb.org/en/stable/[/url]
Flask,访问:[url=http://flask.pocoo.org/]http://flask.pocoo.org/[/url]
Web.py,访问:[url=http://webpy.org/]http://webpy.org/[/url]
[b]Tools[/b]
xlrd,Excel处理利器,访问:[url=http://www.python-excel.org/]http://www.python-excel.org/[/url]
lxml,XML处理,访问:[url=http://lxml.de/]http://lxml.de/[/url]
configparser,ini文件解析,访问:[url=https://docs.python.org/2/library/configparser.html]https://docs.python.org/2/library/configparser.html[/url]
uuid,生成uuid,访问:[url=https://docs.python.org/2/library/uuid.html]https://docs.python.org/2/library/uuid.html[/url]
msgpack-python,类似JSON的一个数据序列化,访问:[url=https://pypi.python.org/pypi/msgpack-python/]https://pypi.python.org/pypi/msgpack-python/[/url]
psutil,一个用于获得处理器和系统相关信息的模块,访问:[url=https://github.com/giampaolo/psutil]https://github.com/giampaolo/psutil[/url]
[b]Database[/b]
MySQL-Python,Mysql库,访问:[url=http://mysql-python.sourceforge.net/]http://mysql-python.sourceforge.net/[/url]
pymongo,MongoDB库,访问:[url=https://pypi.python.org/pypi/pymongo/]https://pypi.python.org/pypi/pymongo/[/url]
redis,Redis库,访问:[url=https://pypi.python.org/pypi/redis/]https://pypi.python.org/pypi/redis/[/url]
cxOracle,Oracle库,访问:[url=https://pypi.python.org/pypi/cx_Oracle]https://pypi.python.org/pypi/cx_Oracle[/url]
SQLAlchemy,SQL工具包及对象关系映射(ORM)工具,访问:[url=http://www.sqlalchemy.org/]http://www.sqlalchemy.org/[/url]
peewee, SQL工具包及对象关系映射(ORM)工具,访问:[url=https://pypi.python.org/pypi/peewee]https://pypi.python.org/pypi/peewee[/url]
torndb,Tornado原装DB,访问:[url=https://github.com/bdarnell/torndb]https://github.com/bdarnell/torndb[/url]
[b]Net[/b]
requests,最好用的http工具,访问:[url=http://www.python-requests.org/]http://www.python-requests.org/[/url]
gevent,一个高并发的网络性能库,访问:[url=http://www.gevent.org/]http://www.gevent.org/[/url]
twisted,基于事件驱动的网络引擎框架。访问:[url=https://twistedmatrix.com/trac/]https://twistedmatrix.com/trac/[/url]
[b]System[/b]
sh,强大的系统系统管理神器,访问:[url=https://pypi.python.org/pypi/sh]https://pypi.python.org/pypi/sh[/url]
[b]Date[/b]
Arrow,好用的时间处理库,访问:[url=http://crsmithdev.com/arrow/]http://crsmithdev.com/arrow/[/url]
when.py,友好的时间日期库,访问:[url=https://github.com/dirn/When.py]https://github.com/dirn/When.py[/url]
[b]Image[/b]
PIL,Python Imaging Library,处理图像,很强大,访问:[url=http://www.pythonware.com/products/pil/]http://www.pythonware.com/products/pil/[/url]
[b]Spider[/b]
PyQuery,解析网页,访问:[url=https://pypi.python.org/pypi/pyquery]https://pypi.python.org/pypi/pyquery[/url]
beautifulSoup,分析网页,访问:[url=https://pypi.python.org/pypi/beautifulsoup4]https://pypi.python.org/pypi/beautifulsoup4[/url]
Scrapy,著名的爬虫框架,访问:[url=http://www.scrapy.org/]http://www.scrapy.org/[/url]
[b]Other[/b]
Jinja2,模板引擎,[url=https://pypi.python.org/pypi/Jinja2]https://pypi.python.org/pypi/Jinja2[/url]
virtualenv,Python虚拟环境,访问:[url=https://pypi.python.org/pypi/virtualenv/]https://pypi.python.org/pypi/virtualenv/[/url]