Я пытаюсь установить noCursorTimeout в сеансе, следуя этой инструкции из документации MongoDB. Но я получаю сообщение об ошибке: AttributeError: 'Cursor' object has no attribute 'noCursorTimeout'
Не могу понять, почему я получаю это.
from pymongo import MongoClient as Connection
from datetime import datetime
conn = Connection(get_uri())
with conn as conn:
collection = conn['db_name']['my_collection']
documents_cursor = collection.find(query).noCursorTimeout() # same with .maxTimeMS()