Python开发常用工具库
本文匯總了在使用Python開發時常用到的第三方庫和工具。
1.Python
官網地址:https://www.python.org/doc/
博文地址:《Python編程:從入門到實踐》速查表
2.OpenCV(圖像處理)
官網地址:https://opencv.org/
官網地址:https://docs.opencv.org/master/
Python版官網地址:https://docs.opencv.org/4.3.0/d6/d00/tutorial_py_root.html
3.VS Code (代碼編輯器)
官網地址:https://code.visualstudio.com/docs#vscode
4.Matplotlib (繪圖)
官網地址:https://matplotlib.org/contents.html
博文地址:50個最有用的Matplotlib數據分析與可視化圖
5.Numpy (矩陣運算)
官網地址:https://numpy.org/devdocs/
6.Pytorch (深度學習庫)
英文文檔:https://pytorch.org/docs/stable/index.html
中文文檔:https://pytorch-cn.readthedocs.io/zh/latest/package_references/torch/
7.Scikit-image (圖像處理)
官網地址:https://scikit-image.org/docs/stable/
8.Pickle (數據處理)
官網地址:https://docs.python.org/3.5/library/pickle.html
9.Easydict(字典解析庫)
官網地址:https://pypi.org/project/easydict/1.2/
10.OS(操作系統接口模塊)
官網地址:https://docs.python.org/3/library/os.html?highlight=os#module-os
11.sys
官網地址:https://docs.python.org/3/library/sys.html?highlight=sys#module-sys
12.argparse(解析命令行)
官網地址:https://docs.python.org/3/library/argparse.html?highlight=argparse#module-argparse
13.fire(命令行生成工具)
官網地址:https://github.com/google/python-fire/blob/master/docs/guide.md
14.logging(日志)
官網地址:https://docs.python.org/3.6/howto/logging.html
15.tensorboardX(網絡可視化)
官網地址:https://tensorboardx.readthedocs.io/en/latest/tutorial.html
16.tqdm(進度條工具)
官網地址:https://pypi.org/project/tqdm/
17.glob(文件搜索庫)
官網地址:https://docs.python.org/3/library/glob.html?highlight=glob#module-glob
18.re(正則化)
官網地址:https://docs.python.org/3/library/re.html
19.io
官網地址:https://docs.python.org/3/library/io.html?highlight=io#module-io
20.time
官網地址:https://docs.python.org/3/library/time.html?highlight=time#module-time
21.datetime
官網地址:https://docs.python.org/3/library/datetime.html?highlight=datetime#module-datetime
22.numba (Numpy運算加速)
官網地址:http://numba.pydata.org/
23. eviltransform (GPS坐標轉換)
Github地址:https://github.com/googollee/eviltransform
24. SymPy (Python代數計算庫)
官網地址:https://www.sympy.org/en/index.html
總結
以上是生活随笔為你收集整理的Python开发常用工具库的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 机器学习笔记(九):应用机器学习的建议
- 下一篇: Centos7下安装Python3.5