Skip to content

Commit e59d83c

Browse files
committed
PYTHON-5377 - Update assets to align with GA release of Async PyMongo
1 parent 2655bb4 commit e59d83c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+1-1
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,12 @@ 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. 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+
PyMongo also fully supports :doc:`Gevent <examples/gevent>`.
175176

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.
177+
PyMongo does not support T`ornado <https://www.tornadoweb.org/>`_.
178+
`Motor <https://github.com/mongodb/motor>`_ , our older asynchronous driver, does support Tornado, but will be officially deprecated on May 14th, 2026.
179179

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

doc/tools.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Alternative Drivers
162162
These are alternatives to PyMongo.
163163

164164
* `Motor <https://github.com/mongodb/motor>`_ is a full-featured, non-blocking
165-
MongoDB driver for Python Tornado applications.
165+
MongoDB driver for Python Tornado applications. Motor will be officially deprecated on May 14th, 2026.
166166
* `TxMongo <https://github.com/twisted/txmongo>`_ is an asynchronous Twisted
167167
Python driver for MongoDB.
168168
* `MongoMock <https://github.com/mongomock/mongomock>`_ is a small

0 commit comments

Comments
 (0)