Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python311-pymongo | Distribution: openSUSE Tumbleweed |
Version: 4.11.1 | Vendor: openSUSE |
Release: 1.1 | Build date: Fri Jul 18 23:03:59 2025 |
Group: Development/Languages/Python | Build host: reproducible |
Size: 7621992 | Source RPM: python-pymongo-4.11.1-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/mongodb/mongo-python-driver | |
Summary: Python driver for MongoDB |
The PyMongo distribution contains tools for interacting with MongoDB database from Python. The bson package is an implementation of the BSON format for Python. The pymongo package is a native Python driver for MongoDB. The gridfs package is a gridfs implementation on top of pymongo.
Apache-2.0
* Fri Jul 18 2025 Dirk Müller <dmueller@suse.com> - update to 4.11.1: * Fixed support for prebuilt ppc64le and s390x wheels. * Dropped support for Python 3.8 and PyPy 3.9. * Dropped support for MongoDB 3.6. * Dropped support for the MONGODB-CR authenticate mechanism, which is no longer supported by MongoDB 4.0+. * pymongocrypt>=1.12 is now required for :ref:`In-Use Encryption` support. * Added support for free-threaded Python with the GIL disabled. For more information see: Free-threaded CPython. We do not yet support free-threaded Python on Windows (PYTHON-5027) or with In-Use Encryption (PYTHON-5024). * :attr:`~pymongo.asynchronous.mongo_client.AsyncMongoClient.ad dress` and :attr:`~pymongo.mongo_client.MongoClient.address` now correctly block when called on unconnected clients until either connection succeeds or a server selection timeout error is raised. * Added :func:`repr` support to :class:`pymongo.operations.IndexModel`. * Added :func:`repr` support to :class:`pymongo.operations.SearchIndexModel`. * Added sort parameter to :meth:`~pymongo.collection.Collection.update_one`, :meth:`~pymongo.collection.Collection.replace_one`, :class:`~pymongo.operations.UpdateOne`, and :class:`~pymongo.operations.UpdateMany`, * :meth:`~pymongo.mongo_client.MongoClient.bulk_write` and :met h:`~pymongo.asynchronous.mongo_client.AsyncMongoClient.bulk_w rite` now throw an error when ordered=True or verboseResults=True are used with unacknowledged writes. These are unavoidable breaking changes. * Fixed a bug in :const:`bson.json_util.dumps` where a :class:`bson.datetime_ms.DatetimeMS` would be incorrectly encoded as '{"$date": "X"}' instead of '{"$date": X}' when using the legacy MongoDB Extended JSON datetime representation. * Fixed a bug where :const:`bson.json_util.loads` would raise an IndexError when parsing an invalid "$date" instead of a ValueError. * Fixed a bug where :meth:`~pymongo.results.UpdateResult.did_upsert` would raise a TypeError. * Fixed Binary BSON subtype (9) support on big-endian operating systems (such as zSeries). * Added provisional (BETA) support for a new Binary BSON subtype (9) used for efficient storage and retrieval of vectors: densely packed arrays of numbers, all of the same type. This includes new methods :meth:`~bson.binary.Binary.from_vector` and :meth:`~bson.binary.Binary.as_vector`. * Added C extension use to client metadata, for example: {"driver": {"name": "PyMongo|c", "version": "4.10.0"}, ...} * Fixed a bug where :class:`~pymongo.asynchronous.mongo_client.AsyncMongoClient` could deadlock. * Fixed a bug where PyMongo could fail to import on Windows if asyncio is misconfigured. * Fixed a bug where :class:`~pymongo.asynchronous.mongo_client.AsyncMongoClient` could deadlock. * Fixed a bug where PyMongo could fail to import on Windows if asyncio is misconfigured. * Fixed a bug where :meth:`~pymongo.results.UpdateResult.did_upsert` would raise a TypeError. * Add missing documentation about the fact the async API is in beta state. * Added support for MongoDB 8.0. * Added support for Python 3.13. * A new beta asynchronous API with full asyncio support. This new asynchronous API is a work-in-progress that may change during the beta period before the full release. * Added support for In-Use Encryption range queries with MongoDB 8.0. Added :attr:`~pymongo.encryption.Algorithm.RANGE`. sparsity and trim_factor are now optional in :class:`~pymongo.encryption_options.RangeOpts`. * Added support for the "delegated" option for the KMIP master_key in :meth:`~pymongo.encryption.ClientEncryption.create_data_key`. * pymongocrypt>=1.10 is now required for :ref:`In-Use Encryption` support. * Added :meth:`~pymongo.cursor.Cursor.to_list` to :class:`~pymongo.cursor.Cursor`, :class:`~pymongo.command_cursor.CommandCursor`, :class:`~pymongo.asynchronous.cursor.AsyncCursor`, and :class :`~pymongo.asynchronous.command_cursor.AsyncCommandCursor` as an asynchronous-friendly alternative to list(cursor). * Added :meth:`~pymongo.mongo_client.MongoClient.bulk_write` to :class:`~pymongo.mongo_client.MongoClient` and :class:`~pymongo.asynchronous.mongo_client.AsyncMongoClient`, enabling users to perform insert, update, and delete operations against mixed namespaces in a minimized number of round trips. Please see :doc:`examples/client_bulk` for more information. * Added support for the namespace parameter to the :class:`~pymongo.operations.InsertOne`, :class:`~pymongo.operations.ReplaceOne`, :class:`~pymongo.operations.UpdateOne`, :class:`~pymongo.operations.UpdateMany`, :class:`~pymongo.operations.DeleteOne`, and :class:`~pymongo.operations.DeleteMany` operations, so they can be used in the new :meth:`~pymongo.mongo_client.MongoClient.bulk_write`. * Added :func:`repr` support to :class:`bson.tz_util.FixedOffset`. * Fixed a bug where PyMongo would raise InvalidBSON: unhashable type: 'tzfile' when using :attr:`~bson.codec_options.DatetimeConversion.DATETIME_CLAMP` or :attr:`~bson.codec_options.DatetimeConversion.DATETIME_AUTO` with a timezone from dateutil. * Fixed a bug where PyMongo would raise InvalidBSON: date value out of range when using :attr:`~bson.codec_options.DatetimeConversion.DATETIME_CLAMP` or :attr:`~bson.codec_options.DatetimeConversion.DATETIME_AUTO` with a non-UTC timezone. * Added a warning to unclosed MongoClient instances telling users to explicitly close clients when finished with them to avoid leaking resources. For example: sys:1: ResourceWarning: Unclosed MongoClient opened at: File "/Users/<user>/my_file.py", line 8, in <module>`` client = MongoClient() Call MongoClient.close() to safely shut down your client and free up resources. * The default value for connect in MongoClient is changed to False when running on unction-as-a-service (FaaS) like AWS Lambda, Google Cloud Functions, and Microsoft Azure Functions. On some FaaS systems, there is a fork() operation at function startup. By delaying the connection to the first operation, we avoid a deadlock. See Is PyMongo Fork-Safe for more information. * The handshake metadata for "os.name" on Windows has been simplified to "Windows" to improve import time. * The repr of bson.binary.Binary is now redacted when the subtype is SENSITIVE_SUBTYPE(8). * Secure Software Development Life Cycle automation for release process. GitHub Releases now include a Software Bill of Materials, and signature files corresponding to the distribution files released on PyPI. * Fixed a bug in change streams where both startAtOperationTime and resumeToken could be added to a retry attempt, which caused the retry to fail. * Fallback to stdlib ssl module when pyopenssl import fails with AttributeError. * Improved performance of MongoClient operations, especially when many operations are being run concurrently. * Since we are now using hatch as our build backend, we no longer have a usable setup.py file and require installation using pip. Attempts to invoke the setup.py file will raise an exception. Additionally, pip >= 21.3 is now required for editable installs. * We no longer support the srv extra, since dnspython is included as a dependency in PyMongo 4.7+. Instead of pip install pymongo[srv], use pip install pymongo. * We no longer support the tls extra, which was only valid for Python 2. Instead of pip install pymongo[tls], use pip install pymongo. * Use deferred imports instead of importlib lazy module loading. * Improve import time on Windows. * Reduce verbosity of "Waiting for suitable server to become available" log message from info to debug. * Fixed a bug where PyMongo could not be used with the Nuitka compiler. * Fixed a bug where PyMongo would cause an AttributeError if dns.resolver was imported and referenced after PyMongo was imported. * Clarified the behavior of the TOKEN_RESOURCE auth mechanism property for MONGODB-OIDC. * Added support for MONGODB-OIDC authentication. The MONGODB- OIDC mechanism authenticates using an OpenID Connect (OIDC) access token. The driver supports OIDC for workload identity, defined as an identity you assign to a software workload (such as an application, service, script, or container) to authenticate and access other services and resources. Please see :doc:`examples/authentication` for more information. * Added support for Python's native logging library, enabling developers to customize the verbosity of log messages for their applications. Please see :doc:`examples/logging` for more information. * Significantly improved the performance of encoding BSON documents to JSON. * Added support for named KMS providers for client side field level encryption. Previously supported KMS providers were only: aws, azure, gcp, kmip, and local. The KMS provider is now expanded to support name suffixes (e.g. local:myname). Named KMS providers enables more than one of each KMS provider type to be configured. See the docstring for :class:`~pymongo.encryption_options.AutoEncryptionOpts`. Note that named KMS providers requires pymongocrypt >=1.9 and libmongocrypt >=1.9. * Added the :class:`pymongo.hello.Hello.connection_id`, :attr:` pymongo.monitoring.CommandStartedEvent.server_connection_id`, :attr:`pymongo.monitoring.CommandSucceededEvent.server_connec tion_id`, and :attr:`pymongo.monitoring.CommandFailedEvent.se rver_connection_id` properties. * Fixed a bug where inflating a :class:`~bson.raw_bson.RawBSONDocument` containing a :class:`~bson.code.Code` would cause an error. * :meth:`~pymongo.encryption.ClientEncryption.encrypt` and :met h:`~pymongo.encryption.ClientEncryption.encrypt_expression` now allow key_id to be passed in as a :class:`uuid.UUID`. * Fixed a bug where :class:`~bson.int64.Int64` instances could not always be encoded by orjson. The following now works: >>> import orjson >>> from bson import json_util >>> orjson.dumps({'a': Int64(1)}, default=json_util.default, option=orjson.OPT_PASSTHROUGH_SUBCLASS) * Fixed a bug appearing in Python 3.12 where "RuntimeError: can't create new thread at interpreter shutdown" could be written to stderr when a MongoClient's thread starts as the python interpreter is shutting down. * Added a warning when connecting to DocumentDB and CosmosDB clusters. For more information regarding feature compatibility and support please visit mongodb.com/supportability/documentdb and mongodb.com/supportability/cosmosdb. * Added the :attr:`pymongo.monitoring.ConnectionCheckedOutEvent .duration`, :attr:`pymongo.monitoring.ConnectionCheckOutFaile dEvent.duration`, and :attr:`pymongo.monitoring.ConnectionReadyEvent.duration` properties. * Added the type and kwargs arguments to :class:`~pymongo.operations.SearchIndexModel` to enable creating vector search indexes in MongoDB Atlas. * Fixed a bug where read_concern and write_concern were improperly added to :meth:`~pymongo.collection.Collection.list_search_indexes` queries. * Deprecated :attr:`pymongo.write_concern.WriteConcern.wtimeout` and :attr:`pymongo.mongo_client.MongoClient.wTimeoutMS`. Use :meth:`~pymongo.timeout` instead. * Replaced usage of :class:`bson.son.SON` on all internal classes and commands to dict, :attr:`options.pool_options.metadata` is now of type dict as opposed to :class:`bson.son.SON`. Here's some examples of how this changes expected output as well as how to convert from :class:`dict` to :class:`bson.son.SON`: # Before >>> from pymongo import MongoClient >>> client = MongoClient() >>> client.options.pool_options.metadata SON([('driver', SON([('name', 'PyMongo'), ('version', '4.7.0.dev0')])), ('os', SON([('type', 'Darwin'), ('name', 'Darwin'), ('architecture', 'arm64'), ('version', '14.3')])), ('platform', 'CPython 3.11.6.final.0')]) # After >>> client.options.pool_options.metadata {'driver': {'name': 'PyMongo', 'version': '4.7.0.dev0'}, 'os': {'type': 'Darwin', 'name': 'Darwin', 'architecture': 'arm64', 'version': '14.3'}, 'platform': 'CPython 3.11.6.final.0'} # To convert from dict to SON # This will only convert the first layer of the dictionary >>> data_as_dict = client.options.pool_options.metadata >>> SON(data_as_dict) SON([('driver', {'name': 'PyMongo', 'version': '4.7.0.dev0'}), ('os', {'type': 'Darwin', 'name': 'Darwin', 'architecture': 'arm64', 'version': '14.3'}), ('platform', 'CPython 3.11.6.final.0')]) # To convert from dict to SON on a nested dictionary >>> def dict_to_SON(data_as_dict: dict[Any, Any]): ... data_as_SON = SON() ... for key, value in data_as_dict.items(): ... data_as_SON[key] = dict_to_SON(value) if isinstance(value, dict) else value ... return data_as_SON >>> >>> dict_to_SON(data_as_dict) SON([('driver', SON([('name', 'PyMongo'), ('version', '4.7.0.dev0')])), ('os', SON([('type', 'Darwin'), ('name', 'Darwin'), ('architecture', 'arm64'), ('version', '14.3')])), ('platform', 'CPython 3.11.6.final.0')]) * PyMongo now uses lazy imports for external dependencies. If you are relying on any kind of monkey-patching of the standard library, you may need to explicitly import those external libraries in addition to pymongo before applying the patch. Note that we test with gevent and eventlet patching, and those continue to work. * The "aws" extra now requires minimum version of 1.1.0 for pymongo_auth_aws. * Tue May 07 2024 Dirk Müller <dmueller@suse.com> - update to 4.6.3 (bsc#1222492, CVE-2024-21506): * Fixed a potential memory access violation when decoding invalid bson. - update to 4.6.2: * Fixed a bug appearing in Python 3.12 where “RuntimeError: can’t create new thread at interpreter shutdown” could be written to stderr when a MongoClient’s thread starts as the python interpreter is shutting down. - update to 4.6.1: * Ensure retryable read OperationFailure errors re-raise exception when 0 or NoneType error code is provided. - update to 4.6.0: * Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-6-0-released/251866 - update to 4.5.0: * Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-5-0-released/240662 - update to 4.4.1: * Fixed a bug where pymongo would raise a ConfigurationError: Invalid SRV host error when connecting to a “mongodb+srv://” URI that included capital letters in the SRV hosts returned from DNS. (PYTHON-3800). * Fixed a minor reference counting bug in the C extension (PYTHON-3798). - update to 4.4.0: * Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-4-released/232211 * Sat Jun 10 2023 ecsos <ecsos@opensuse.org> - Add %{?sle15_python_module_pythons} * Tue Dec 06 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com> - Update to 4.3.3 Version 4.3.3 documents support for the following: * CSFLE on-demand credentials for cloud KMS providers. * Authentication support for EKS Clusters. * Added the Client Side Operation Timeout example page to improve the documentation for pymongo.timeout(). Bug Fixes * Fixed a performance regression in download_to_stream() and download_to_stream_by_name() by reading in chunks instead of line by line (PYTHON-3502). * Improved performance of gridfs.grid_file.GridOut.read() and gridfs.grid_file.GridOut.readline() (PYTHON-3508). * Fri Oct 28 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com> - Update to 4.3.2 Complete Changelog https://pymongo.readthedocs.io/en/4.3.2/changelog.html * Sat Oct 01 2022 Dirk Müller <dmueller@suse.com> - update to 4.2.0: - Support for MongoDB 6.0. - Support for the Queryable Encryption beta with MongoDB 6.0. Note that backwards-breaking changes may be made before the final release. See :ref:`automatic-queryable-client-side-encryption` for example usage. - Provisional (beta) support for :func:`pymongo.timeout` to apply a single timeout to an entire block of pymongo operations. - Added the ``timeoutMS`` URI and keyword argument to :class:`~pymongo.mongo_client.MongoClient`. - Added the :attr:`pymongo.errors.PyMongoError.timeout` property which is ``True`` when the error was caused by a timeout. - Added the ``check_exists`` argument to :meth:`~pymongo.database.Database.create_collection` that when True (the default) runs an additional ``listCollections`` command to verify that the collection does not exist already. - Added key management APIs to :class:`~pymongo.encryption.ClientEncryption`: - Support for the ``crypt_shared`` library to replace ``mongocryptd`` using the new ``crypt_shared_lib_path`` and ``crypt_shared_lib_required`` arguments to :class:`~pymongo.encryption_options.AutoEncryptionOpts`. - Fixed a bug where :meth:`~pymongo.collection.Collection.estimated_document_count` would fail with a "CommandNotSupportedOnView" error on views (`PYTHON-2885`_). - Fixed a bug where invalid UTF-8 strings could be passed as patterns for :class:`~bson.regex.Regex` objects. :func:`bson.encode` now correctly raises :class:`bson.errors.InvalidStringData` (`PYTHON-3048`_). - Fixed a bug that caused ``AutoReconnect("connection pool paused")`` errors in the child process after fork (`PYTHON-3257`_). - Fixed a bug where :meth:`~pymongo.collection.Collection.count_documents` and :meth:`~pymongo.collection.Collection.distinct` would fail in a transaction with ``directConnection=True`` (`PYTHON-3333`_). - GridFS no longer uploads an incomplete files collection document after encountering an error in the middle of an upload fork. This results in fewer :class:`~gridfs.errors.CorruptGridFile` errors (`PYTHON-1552`_). - Renamed PyMongo's internal C extension methods to avoid crashing due to name conflicts with mpi4py and other shared libraries (`PYTHON-2110`_). - Fixed tight CPU loop for network I/O when using PyOpenSSL (`PYTHON-3187`_). * Wed Jul 20 2022 Ben Greiner <code@bnavigator.de> - Conflict on python-bson * Same namespace * Different implementation (https://github.com/py-bson/bson) - Do not wildcard collect files * Sat Jul 16 2022 Markéta Machová <mmachova@suse.com> - Update to 4.1.1 * PyMongo 4.0 drops support for Python 2.7, 3.4, and 3.5. * PyMongo 4.1 drops support for Python 3.6.0 and 3.6.1, Python 3.6.2+ is now required. * PyMongo 4.0 drops support for MongoDB 2.6, 3.0, 3.2, and 3.4. * The default uuid_representation for CodecOptions, JSONOptions, and MongoClient has been changed from bson.binary.UuidRepresentation.PYTHON_LEGACY to bson.binary.UuidRepresentation.UNSPECIFIED. Attempting to encode a uuid.UUID instance to BSON or JSON now produces an error by default. See Handling UUID Data for details. * Removed some arguments and functions mostly from: * pymongo.mongo_client.MongoClient * pymongo.database.Database * pymongo.collection.Collection * pymongo.mongo_client.MongoClient * pymongo.son_manipulator * directConnection URI option and keyword argument to MongoClient defaults to False instead of None * tz_aware, an argument for JSONOptions, now defaults to False instead of True. * items() now returns a dict_items object rather than a list. * The hint option is now required when using min or max queries with find(). * MongoClient` now raises an InvalidURI exception when it encounters unescaped percent signs in username and password when parsing MongoDB URIs. * Enhanced connection pooling to create connections more efficiently and avoid connection storms. * MongoClient now accepts a URI and keyword argument srvMaxHosts that limits the number of mongos-like hosts a client will connect to. * Support for the “kmip” KMS provider for client side field level encryption. * Many more changes, seet the upstream changelog for details * Fri May 28 2021 pgajdos@suse.com - version update to 3.11.4 - Version 3.11.4 fixes a bug where a MongoClient would mistakenly attempt to create minPoolSize connections to arbiter nodes (`PYTHON-2634`_). * Thu Apr 22 2021 Dirk Müller <dmueller@suse.com> - update to 3.11.3: - Version 3.11.3 fixes a bug that prevented PyMongo from retrying writes after a writeConcernError on MongoDB 4.4+ (PYTHON-2452)
/usr/lib64/python3.11/site-packages/bson /usr/lib64/python3.11/site-packages/bson/__init__.py /usr/lib64/python3.11/site-packages/bson/__pycache__ /usr/lib64/python3.11/site-packages/bson/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/__init__.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/_helpers.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/_helpers.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/binary.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/binary.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/code.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/code.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/codec_options.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/codec_options.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/datetime_ms.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/datetime_ms.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/dbref.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/dbref.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/decimal128.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/decimal128.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/errors.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/errors.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/int64.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/int64.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/json_util.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/json_util.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/max_key.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/max_key.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/min_key.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/min_key.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/objectid.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/objectid.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/raw_bson.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/raw_bson.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/regex.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/regex.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/son.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/son.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/timestamp.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/timestamp.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/typings.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/typings.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/tz_util.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/bson/__pycache__/tz_util.cpython-311.pyc /usr/lib64/python3.11/site-packages/bson/_cbson.cpython-311-x86_64-linux-gnu.so /usr/lib64/python3.11/site-packages/bson/_helpers.py /usr/lib64/python3.11/site-packages/bson/binary.py /usr/lib64/python3.11/site-packages/bson/code.py /usr/lib64/python3.11/site-packages/bson/codec_options.py /usr/lib64/python3.11/site-packages/bson/datetime_ms.py /usr/lib64/python3.11/site-packages/bson/dbref.py /usr/lib64/python3.11/site-packages/bson/decimal128.py /usr/lib64/python3.11/site-packages/bson/errors.py /usr/lib64/python3.11/site-packages/bson/int64.py /usr/lib64/python3.11/site-packages/bson/json_util.py /usr/lib64/python3.11/site-packages/bson/max_key.py /usr/lib64/python3.11/site-packages/bson/min_key.py /usr/lib64/python3.11/site-packages/bson/objectid.py /usr/lib64/python3.11/site-packages/bson/py.typed /usr/lib64/python3.11/site-packages/bson/raw_bson.py /usr/lib64/python3.11/site-packages/bson/regex.py /usr/lib64/python3.11/site-packages/bson/son.py /usr/lib64/python3.11/site-packages/bson/timestamp.py /usr/lib64/python3.11/site-packages/bson/typings.py /usr/lib64/python3.11/site-packages/bson/tz_util.py /usr/lib64/python3.11/site-packages/gridfs /usr/lib64/python3.11/site-packages/gridfs/__init__.py /usr/lib64/python3.11/site-packages/gridfs/__pycache__ /usr/lib64/python3.11/site-packages/gridfs/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/gridfs/__pycache__/__init__.cpython-311.pyc /usr/lib64/python3.11/site-packages/gridfs/__pycache__/errors.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/gridfs/__pycache__/errors.cpython-311.pyc /usr/lib64/python3.11/site-packages/gridfs/__pycache__/grid_file.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/gridfs/__pycache__/grid_file.cpython-311.pyc /usr/lib64/python3.11/site-packages/gridfs/__pycache__/grid_file_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/gridfs/__pycache__/grid_file_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/gridfs/asynchronous /usr/lib64/python3.11/site-packages/gridfs/asynchronous/__pycache__ /usr/lib64/python3.11/site-packages/gridfs/asynchronous/__pycache__/grid_file.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/gridfs/asynchronous/__pycache__/grid_file.cpython-311.pyc /usr/lib64/python3.11/site-packages/gridfs/asynchronous/grid_file.py /usr/lib64/python3.11/site-packages/gridfs/errors.py /usr/lib64/python3.11/site-packages/gridfs/grid_file.py /usr/lib64/python3.11/site-packages/gridfs/grid_file_shared.py /usr/lib64/python3.11/site-packages/gridfs/py.typed /usr/lib64/python3.11/site-packages/gridfs/synchronous /usr/lib64/python3.11/site-packages/gridfs/synchronous/__pycache__ /usr/lib64/python3.11/site-packages/gridfs/synchronous/__pycache__/grid_file.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/gridfs/synchronous/__pycache__/grid_file.cpython-311.pyc /usr/lib64/python3.11/site-packages/gridfs/synchronous/grid_file.py /usr/lib64/python3.11/site-packages/pymongo /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info/INSTALLER /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info/METADATA /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info/RECORD /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info/REQUESTED /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info/WHEEL /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info/licenses /usr/lib64/python3.11/site-packages/pymongo-4.11.1.dist-info/licenses/LICENSE /usr/lib64/python3.11/site-packages/pymongo/__init__.py /usr/lib64/python3.11/site-packages/pymongo/__pycache__ /usr/lib64/python3.11/site-packages/pymongo/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/__init__.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_asyncio_lock.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_asyncio_lock.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_asyncio_task.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_asyncio_task.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_azure_helpers.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_azure_helpers.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_client_bulk_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_client_bulk_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_csot.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_csot.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_gcp_helpers.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_gcp_helpers.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_version.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/_version.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth_oidc.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth_oidc.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth_oidc_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth_oidc_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/auth_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/bulk_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/bulk_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/change_stream.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/change_stream.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/client_options.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/client_options.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/client_session.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/client_session.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/collation.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/collation.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/collection.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/collection.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/command_cursor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/command_cursor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/common.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/common.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/compression_support.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/compression_support.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/cursor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/cursor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/cursor_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/cursor_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/daemon.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/daemon.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/database.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/database.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/database_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/database_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/driver_info.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/driver_info.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/encryption.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/encryption.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/encryption_options.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/encryption_options.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/errors.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/errors.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/event_loggers.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/event_loggers.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/hello.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/hello.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/helpers_shared.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/helpers_shared.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/lock.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/lock.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/logger.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/logger.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/max_staleness_selectors.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/max_staleness_selectors.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/message.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/message.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/mongo_client.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/mongo_client.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/monitoring.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/monitoring.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/network_layer.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/network_layer.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ocsp_cache.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ocsp_cache.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ocsp_support.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ocsp_support.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/operations.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/operations.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/periodic_executor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/periodic_executor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/pool.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/pool.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/pool_options.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/pool_options.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/pyopenssl_context.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/pyopenssl_context.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/read_concern.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/read_concern.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/read_preferences.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/read_preferences.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/response.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/response.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/results.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/results.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/saslprep.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/saslprep.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_api.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_api.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_description.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_description.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_selectors.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_selectors.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_type.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/server_type.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/socket_checker.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/socket_checker.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/srv_resolver.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/srv_resolver.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ssl_context.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ssl_context.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ssl_support.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/ssl_support.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/topology_description.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/topology_description.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/typings.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/typings.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/uri_parser.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/uri_parser.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/write_concern.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/__pycache__/write_concern.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/_asyncio_lock.py /usr/lib64/python3.11/site-packages/pymongo/_asyncio_task.py /usr/lib64/python3.11/site-packages/pymongo/_azure_helpers.py /usr/lib64/python3.11/site-packages/pymongo/_client_bulk_shared.py /usr/lib64/python3.11/site-packages/pymongo/_cmessage.cpython-311-x86_64-linux-gnu.so /usr/lib64/python3.11/site-packages/pymongo/_cmessagemodule.c /usr/lib64/python3.11/site-packages/pymongo/_csot.py /usr/lib64/python3.11/site-packages/pymongo/_gcp_helpers.py /usr/lib64/python3.11/site-packages/pymongo/_version.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__init__.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__ /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/__init__.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/aggregation.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/aggregation.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/auth.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/auth.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/auth_aws.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/auth_aws.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/auth_oidc.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/auth_oidc.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/bulk.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/bulk.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/change_stream.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/change_stream.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/client_bulk.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/client_bulk.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/client_session.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/client_session.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/collection.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/collection.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/command_cursor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/command_cursor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/cursor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/cursor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/database.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/database.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/encryption.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/encryption.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/helpers.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/helpers.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/mongo_client.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/mongo_client.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/monitor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/monitor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/network.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/network.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/pool.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/pool.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/server.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/server.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/settings.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/settings.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/topology.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/__pycache__/topology.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/asynchronous/aggregation.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/auth.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/auth_aws.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/auth_oidc.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/bulk.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/change_stream.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/client_bulk.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/client_session.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/collection.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/command_cursor.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/cursor.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/database.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/encryption.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/helpers.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/mongo_client.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/monitor.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/network.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/pool.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/server.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/settings.py /usr/lib64/python3.11/site-packages/pymongo/asynchronous/topology.py /usr/lib64/python3.11/site-packages/pymongo/auth.py /usr/lib64/python3.11/site-packages/pymongo/auth_oidc.py /usr/lib64/python3.11/site-packages/pymongo/auth_oidc_shared.py /usr/lib64/python3.11/site-packages/pymongo/auth_shared.py /usr/lib64/python3.11/site-packages/pymongo/bulk_shared.py /usr/lib64/python3.11/site-packages/pymongo/change_stream.py /usr/lib64/python3.11/site-packages/pymongo/client_options.py /usr/lib64/python3.11/site-packages/pymongo/client_session.py /usr/lib64/python3.11/site-packages/pymongo/collation.py /usr/lib64/python3.11/site-packages/pymongo/collection.py /usr/lib64/python3.11/site-packages/pymongo/command_cursor.py /usr/lib64/python3.11/site-packages/pymongo/common.py /usr/lib64/python3.11/site-packages/pymongo/compression_support.py /usr/lib64/python3.11/site-packages/pymongo/cursor.py /usr/lib64/python3.11/site-packages/pymongo/cursor_shared.py /usr/lib64/python3.11/site-packages/pymongo/daemon.py /usr/lib64/python3.11/site-packages/pymongo/database.py /usr/lib64/python3.11/site-packages/pymongo/database_shared.py /usr/lib64/python3.11/site-packages/pymongo/driver_info.py /usr/lib64/python3.11/site-packages/pymongo/encryption.py /usr/lib64/python3.11/site-packages/pymongo/encryption_options.py /usr/lib64/python3.11/site-packages/pymongo/errors.py /usr/lib64/python3.11/site-packages/pymongo/event_loggers.py /usr/lib64/python3.11/site-packages/pymongo/hello.py /usr/lib64/python3.11/site-packages/pymongo/helpers_shared.py /usr/lib64/python3.11/site-packages/pymongo/lock.py /usr/lib64/python3.11/site-packages/pymongo/logger.py /usr/lib64/python3.11/site-packages/pymongo/max_staleness_selectors.py /usr/lib64/python3.11/site-packages/pymongo/message.py /usr/lib64/python3.11/site-packages/pymongo/mongo_client.py /usr/lib64/python3.11/site-packages/pymongo/monitoring.py /usr/lib64/python3.11/site-packages/pymongo/network_layer.py /usr/lib64/python3.11/site-packages/pymongo/ocsp_cache.py /usr/lib64/python3.11/site-packages/pymongo/ocsp_support.py /usr/lib64/python3.11/site-packages/pymongo/operations.py /usr/lib64/python3.11/site-packages/pymongo/periodic_executor.py /usr/lib64/python3.11/site-packages/pymongo/pool.py /usr/lib64/python3.11/site-packages/pymongo/pool_options.py /usr/lib64/python3.11/site-packages/pymongo/py.typed /usr/lib64/python3.11/site-packages/pymongo/pyopenssl_context.py /usr/lib64/python3.11/site-packages/pymongo/read_concern.py /usr/lib64/python3.11/site-packages/pymongo/read_preferences.py /usr/lib64/python3.11/site-packages/pymongo/response.py /usr/lib64/python3.11/site-packages/pymongo/results.py /usr/lib64/python3.11/site-packages/pymongo/saslprep.py /usr/lib64/python3.11/site-packages/pymongo/server_api.py /usr/lib64/python3.11/site-packages/pymongo/server_description.py /usr/lib64/python3.11/site-packages/pymongo/server_selectors.py /usr/lib64/python3.11/site-packages/pymongo/server_type.py /usr/lib64/python3.11/site-packages/pymongo/socket_checker.py /usr/lib64/python3.11/site-packages/pymongo/srv_resolver.py /usr/lib64/python3.11/site-packages/pymongo/ssl_context.py /usr/lib64/python3.11/site-packages/pymongo/ssl_support.py /usr/lib64/python3.11/site-packages/pymongo/synchronous /usr/lib64/python3.11/site-packages/pymongo/synchronous/__init__.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__ /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/__init__.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/aggregation.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/aggregation.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/auth.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/auth.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/auth_aws.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/auth_aws.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/auth_oidc.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/auth_oidc.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/bulk.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/bulk.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/change_stream.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/change_stream.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/client_bulk.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/client_bulk.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/client_session.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/client_session.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/collection.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/collection.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/command_cursor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/command_cursor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/cursor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/cursor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/database.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/database.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/encryption.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/encryption.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/helpers.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/helpers.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/mongo_client.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/mongo_client.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/monitor.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/monitor.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/network.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/network.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/pool.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/pool.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/server.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/server.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/settings.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/settings.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/topology.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/__pycache__/topology.cpython-311.pyc /usr/lib64/python3.11/site-packages/pymongo/synchronous/aggregation.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/auth.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/auth_aws.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/auth_oidc.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/bulk.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/change_stream.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/client_bulk.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/client_session.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/collection.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/command_cursor.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/cursor.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/database.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/encryption.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/helpers.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/mongo_client.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/monitor.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/network.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/pool.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/server.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/settings.py /usr/lib64/python3.11/site-packages/pymongo/synchronous/topology.py /usr/lib64/python3.11/site-packages/pymongo/topology_description.py /usr/lib64/python3.11/site-packages/pymongo/typings.py /usr/lib64/python3.11/site-packages/pymongo/uri_parser.py /usr/lib64/python3.11/site-packages/pymongo/write_concern.py /usr/share/doc/packages/python311-pymongo /usr/share/doc/packages/python311-pymongo/README.md /usr/share/licenses/python311-pymongo /usr/share/licenses/python311-pymongo/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Jul 26 23:34:51 2025