官方文档:https://docs.mongodb.com/ecosystem/drivers/python/
PyMongo是从Python使用MongoDB的推荐方法。
Motor是推荐的MongoDB Python异步驱动程序。
官方文档:https://docs.mongodb.com/ecosystem/drivers/pymongo/
推荐使用pip在所有平台上安装pymongo:
$ python -m pip install pymongo
获取特定版本的pymongo:
$ python -m pip install pymongo==3.5.1
升级使用pip:
$ python -m pip install --upgrade pymongo
要连接到MongoDB Atlas集群,请使用集群的Atlas连接字符串:
import pymongo
client = pymongo.MongoClient(
"mongodb+srv://<username>:<password>@<cluster-url>/test?retryWrites=true&w=majority")
db = client.test
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
官方文档:https://docs.mongodb.com/ecosystem/drivers/motor/
Motor不支持Windows。
推荐使用pip在所有平台上安装motor:
$ pip install motor
要连接到MongoDB Atlas集群,请使用集群的Atlas连接字符串:
import motor
client = motor.motor_tornado.MotorClient(
"mongodb+srv://<username>:<password>@<cluster-url>/test?retryWrites=true&w=majority")
db = client.test
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