Skip to content

Commit 92a5623

Browse files
authored
PYTHON-5377 - Update assets to align with GA release of Async PyMongo (#2339)
1 parent 4cc5e89 commit 92a5623

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
The PyMongo distribution contains tools for interacting with MongoDB
1111
database from Python. The `bson` package is an implementation of the
1212
[BSON format](http://bsonspec.org) for Python. The `pymongo` package is
13-
a native Python driver for MongoDB. The `gridfs` package is a
13+
a native Python driver for MongoDB, offering both synchronous and asynchronous APIs. The `gridfs` package is a
1414
[gridfs](https://github.com/mongodb/specifications/blob/master/source/gridfs/gridfs-spec.md/)
1515
implementation on top of `pymongo`.
1616

doc/faq.rst

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,9 @@ PyMongo supports CPython 3.9+ and PyPy3.10+. See the :doc:`python3` for details.
170170

171171
Does PyMongo support asynchronous frameworks like Gevent, asyncio, Tornado, or Twisted?
172172
---------------------------------------------------------------------------------------
173+
As of PyMongo v4.13, PyMongo fully supports asyncio and `Tornado <https://www.tornadoweb.org/>`_. See `the official docs <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/reference/migration/>`_ for more details.
173174

174-
PyMongo fully supports :doc:`Gevent <examples/gevent>`.
175-
176-
To use MongoDB with `asyncio <https://docs.python.org/3/library/asyncio.html>`_
177-
or `Tornado <https://www.tornadoweb.org/>`_, see the
178-
`Motor <https://github.com/mongodb/motor>`_ project.
175+
PyMongo also fully supports :doc:`Gevent <examples/gevent>`.
179176

180177
For `Twisted <https://twistedmatrix.com/>`_, see `TxMongo
181178
<https://github.com/twisted/txmongo>`_. Its stated mission is to keep feature

doc/tools.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,9 @@ These are alternatives to PyMongo.
163163

164164
* `Motor <https://github.com/mongodb/motor>`_ is a full-featured, non-blocking
165165
MongoDB driver for Python Tornado applications.
166+
As of PyMongo v4.13, Motor's features have been merged into PyMongo via the new AsyncMongoClient API.
167+
As a result of this merger, Motor will be officially deprecated on May 14th, 2026.
168+
For more information, see `the official PyMongo docs <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/reference/migration/>`_.
166169
* `TxMongo <https://github.com/twisted/txmongo>`_ is an asynchronous Twisted
167170
Python driver for MongoDB.
168171
* `MongoMock <https://github.com/mongomock/mongomock>`_ is a small

0 commit comments

Comments
 (0)