# Python
# Cheat sheet
# 包管理
用于包和依赖关系管理的库。
- pip (opens new window) - 官方包管理器。
- Pyenv (opens new window) - 多版本 Python 环境管理。
# 打包与分发
- Setuptools (opens new window) - Python distutils (opens new window) 的一系列增强功能。
# 网络请求
用于处理 HTTP 的库。
- requests (opens new window) - 人性化 HTTP 客户端库。
# 序列化
用于序列化复杂数据类型的库。
- marshmallow (opens new window) - 对象序列化/反序列化框架。
- pydantic (opens new window) - 基于类型提示的数据验证。
# 时间日期
用于处理日期和时间的库。
- dateutil (opens new window) - datetime (opens new window) 模块的扩展。
- holidays (opens new window) - 在 Python 中生成和处理假期。
- chinese-calendar (opens new window) - 中国节假日计算。
- pytz (opens new window) - 将 IANA tz 数据库引入 Python。
# 数据分析
- pandas (opens new window) - 表格数据处理框架。
# 文件格式
# Excel
- openpyxl (opens new window) - 读取和写入 Excel 2010 xlsx/xlsm/xltx/xltm 文件的库。
- XlsxWriter (opens new window) - 创建 Excel XLSX 文件的 Python 模块。
- xlwings (opens new window) - 轻松地从 Excel 调用 Python,反之亦然。
# HTML
用于处理 HTML 和 XML 的库。
- Beautiful Soup (opens new window) - 迭代、搜索和修改 HTML 或 XML。
# 结构化数据
- PyYAML (opens new window) - YAML 文件处理。
# Web 框架
# Flask
- Flask (opens new window)
- Flask-SQLAlchemy (opens new window)
- Flask-Marshmallow (opens new window)
- marshmallow-sqlalchemy (opens new window)
- Flask-JWT-Extended (opens new window)
- Flask-RESTful (opens new window)
- Flask-CORS (opens new window)
# 数据库驱动
# ORM
# 云服务
- Boto3 (opens new window) - AWS SDK Python 版。
- wechatpy (opens new window) - WeChat SDK for Python.