当前位置: 首页 > 工具软件 > Mongodb Motor > 使用案例 >

PyMongo和Motor两种MongoDB的Python驱动程序对比简介

伍心水
2023-12-01

1-Python驱动MongoDB

官方文档:https://docs.mongodb.com/ecosystem/drivers/python/

PyMongo是从Python使用MongoDB的推荐方法。

Motor是推荐的MongoDB Python异步驱动程序。

1.1-PyMongo

官方文档:https://docs.mongodb.com/ecosystem/drivers/pymongo/

1.1.1-安装

推荐使用pip在所有平台上安装pymongo:

$ python -m pip install pymongo

获取特定版本的pymongo:

$ python -m pip install pymongo==3.5.1

升级使用pip:

$ python -m pip install --upgrade pymongo

1.1.2-连接到MongoDB Atlas

要连接到MongoDB Atlas集群,请使用集群的Atlas连接字符串:

import pymongo

client = pymongo.MongoClient(
   "mongodb+srv://<username>:<password>@<cluster-url>/test?retryWrites=true&w=majority")
db = client.test

1.1.3-兼容性

MongoDB的兼容性

# PyMongo驱动
驱动 3.9 可以适用 MongoDB 4.2~2.6
驱动 3.8 3.7可以适用 MongoDB 4.0~2.6
驱动 3.6 可以适用 MongoDB 3.6~2.6
# MongoDB 可用版本有:MongoDB 4.2 	MongoDB 4.0 	MongoDB 3.6 	MongoDB 3.4 	MongoDB 3.2 	MongoDB 3.0 	MongoDB 2.6

语言的兼容性

# PyMongo驱动
# Python 2兼容性
Python 2.7 可以兼容 驱动 3.7~3.9
PyPy 可以兼容 驱动2.7~3.9
# Python 3兼容性
Python 3.7 可以兼容 驱动 3.7~3.9
Python 3.6 可以兼容 驱动 3.5~3.9
PyPy3 可以兼容 驱动2.7~3.9
# Python2 常用版本有:Python 2.7, PyPy
# Python3 常用版本有:PyPy3 	Python 3.6 	Python 3.7

1.2-Motor (Async Driver)

官方文档:https://docs.mongodb.com/ecosystem/drivers/motor/

Motor不支持Windows。

1.2.1-安装

推荐使用pip在所有平台上安装motor:

$ pip install motor

1.2.2-连接到MongoDB Atlas

要连接到MongoDB Atlas集群,请使用集群的Atlas连接字符串:

import motor

client = motor.motor_tornado.MotorClient(
   "mongodb+srv://<username>:<password>@<cluster-url>/test?retryWrites=true&w=majority")
db = client.test

1.2.3-兼容性

MongoDB的兼容性

# Motor Python异步驱动
驱动 1.2 可以适用 MongoDB 3.6~2.6
驱动 1.1 1.0可以适用 MongoDB 3.4~2.6
驱动 0.7 可以适用 MongoDB 3.2~2.6
驱动 0.6 0.5 0.4 可以适用 MongoDB 3.0~2.6
# MongoDB 可用版本有:MongoDB 3.6 	MongoDB 3.4 	MongoDB 3.2 	MongoDB 3.0 	MongoDB 2.6

语言的兼容性

# Motor Python异步驱动
# Python 2兼容性
Python 2.7 可以兼容 驱动 1.2~0.1
# Python 3兼容性
Python 3.6 可以兼容 驱动 1.2 1.1 1.0
# Python 常用版本有:Python 2.7 	Python 3.6 	Python 3.7
 类似资料: