Skip to main content

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status codecov

About

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, offering both synchronous and asynchronous APIs. The gridfs package is a gridfs implementation on top of pymongo.

PyMongo supports MongoDB 4.4, 5.0, 6.0, 7.0, 8.0, and 9.0. PyMongo follows semantic versioning for its releases.

Documentation

Documentation is available at mongodb.com.

API documentation and the full changelog for each release is available at readthedocs.io.

Support / Feedback

For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you're more likely to get an answer on StackOverflow (using a "mongodb" tag).

Bugs / Feature Requests

Think you've found a bug? Want to see a new feature in PyMongo? Please open a case in our issue management tool, JIRA:

Bug reports in JIRA for all driver projects (i.e. PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.

How To Ask For Help

Please include all of the following information when opening an issue:

  • Detailed steps to reproduce the problem, including full traceback, if possible.

  • The exact python version used, with patch level:

python -c "import sys; print(sys.version)"
  • The exact version of PyMongo used, with patch level:
python -c "import pymongo; print(pymongo.version); print(pymongo.has_c())"
  • The operating system and version (e.g. Windows 7, OSX 10.8, ...)

  • Web framework or asynchronous network library used, if any, with version (e.g. Django 1.7, mod_wsgi 4.3.0, gevent 1.0.1, Tornado 4.0.2, ...)

Security Vulnerabilities

If you've identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.

Installation

PyMongo can be installed with pip:

python -m pip install pymongo

You can also download the project source and do:

pip install .

Do not install the "bson" package from pypi. PyMongo comes with its own bson package; running "pip install bson" installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 3.9+ and PyPy3.9+. PyPy support is deprecated and will be removed in a future release.

Required dependencies:

Support for mongodb+srv:// URIs requires dnspython

Optional dependencies:

GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:

python -m pip install "pymongo[gssapi]"

MONGODB-AWS authentication requires pymongo-auth-aws:

python -m pip install "pymongo[aws]"

OCSP (Online Certificate Status Protocol) requires PyOpenSSL, requests, service_identity and may require certifi:

python -m pip install "pymongo[ocsp]"

Wire protocol compression with snappy requires python-snappy:

python -m pip install "pymongo[snappy]"

Wire protocol compression with zstandard requires backports.zstd when used with Python versions before 3.14:

python -m pip install "pymongo[zstd]"

Client-Side Field Level Encryption requires pymongocrypt and pymongo-auth-aws:

python -m pip install "pymongo[encryption]"

You can install all dependencies automatically with the following command:

python -m pip install "pymongo[gssapi,aws,ocsp,snappy,zstd,encryption]"

Examples

Here's a basic example (for more see the examples section of the docs):

>>> import pymongo
>>> client = pymongo.MongoClient("localhost", 27017)
>>> db = client.test
>>> db.name
'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), 'test'), 'my_collection')
>>> db.my_collection.insert_one({"x": 10}).inserted_id
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.insert_one({"x": 8}).inserted_id
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.insert_one({"x": 11}).inserted_id
ObjectId('4aba160ee23f6b543e000002')
>>> db.my_collection.find_one()
{'x': 10, '_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
'x_1'
>>> for item in db.my_collection.find().sort("x", pymongo.ASCENDING):
...     print(item["x"])
...
8
10
11
>>> [item["x"] for item in db.my_collection.find().limit(2).skip(1)]
[8, 11]

Learning Resources

Testing

The easiest way to run the tests is to run the following from the repository root.

pip install -e ".[test]"
pytest

For more advanced testing scenarios, see the contributing guide.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongo-4.18.0.tar.gz (2.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymongo-4.18.0-cp314-cp314t-win_arm64.whl (817.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

pymongo-4.18.0-cp314-cp314t-win_amd64.whl (826.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pymongo-4.18.0-cp314-cp314t-win32.whl (818.7 kB view details)

Uploaded CPython 3.14tWindows x86

pymongo-4.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.18.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.18.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.18.0-cp314-cp314t-macosx_11_0_arm64.whl (821.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymongo-4.18.0-cp314-cp314t-macosx_10_15_x86_64.whl (821.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pymongo-4.18.0-cp314-cp314-win_arm64.whl (816.4 kB view details)

Uploaded CPython 3.14Windows ARM64

pymongo-4.18.0-cp314-cp314-win_amd64.whl (821.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pymongo-4.18.0-cp314-cp314-win32.whl (816.0 kB view details)

Uploaded CPython 3.14Windows x86

pymongo-4.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.18.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.18.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.18.0-cp314-cp314-macosx_11_0_arm64.whl (819.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymongo-4.18.0-cp314-cp314-macosx_10_15_x86_64.whl (818.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymongo-4.18.0-cp313-cp313-win_arm64.whl (815.3 kB view details)

Uploaded CPython 3.13Windows ARM64

pymongo-4.18.0-cp313-cp313-win_amd64.whl (820.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.18.0-cp313-cp313-win32.whl (814.8 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.18.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.18.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.18.0-cp313-cp313-macosx_11_0_arm64.whl (818.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.18.0-cp313-cp313-macosx_10_13_x86_64.whl (818.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.18.0-cp312-cp312-win_arm64.whl (815.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pymongo-4.18.0-cp312-cp312-win_amd64.whl (820.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.18.0-cp312-cp312-win32.whl (814.8 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.18.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.18.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.18.0-cp312-cp312-macosx_11_0_arm64.whl (819.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.18.0-cp312-cp312-macosx_10_13_x86_64.whl (818.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.18.0-cp311-cp311-win_arm64.whl (815.0 kB view details)

Uploaded CPython 3.11Windows ARM64

pymongo-4.18.0-cp311-cp311-win_amd64.whl (819.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.18.0-cp311-cp311-win32.whl (813.9 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.18.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.18.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.18.0-cp311-cp311-macosx_11_0_arm64.whl (818.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.18.0-cp311-cp311-macosx_10_9_x86_64.whl (818.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.18.0-cp310-cp310-win_arm64.whl (815.5 kB view details)

Uploaded CPython 3.10Windows ARM64

pymongo-4.18.0-cp310-cp310-win_amd64.whl (820.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.18.0-cp310-cp310-win32.whl (814.1 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.18.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.18.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.18.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.18.0-cp310-cp310-macosx_11_0_arm64.whl (819.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.18.0-cp310-cp310-macosx_10_9_x86_64.whl (819.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.18.0-cp39-cp39-win_arm64.whl (815.5 kB view details)

Uploaded CPython 3.9Windows ARM64

pymongo-4.18.0-cp39-cp39-win_amd64.whl (820.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.18.0-cp39-cp39-win32.whl (814.1 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.18.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.18.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.18.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.18.0-cp39-cp39-macosx_11_0_arm64.whl (819.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.18.0-cp39-cp39-macosx_10_9_x86_64.whl (819.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pymongo-4.18.0.tar.gz.

File metadata

  • Download URL: pymongo-4.18.0.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0.tar.gz
Algorithm Hash digest
SHA256 6f33cd2033e8ea216d3069b5ebea79ded74ef2a93f69a93b26cf310082f9b5b9
MD5 0330099c1167c6b5a989b0ae748906e0
BLAKE2b-256 a10ad4daac76f66c466c20f00215064d43f4eb4b0aba8f2d8ecabdcc13102bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0.tar.gz:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 817.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 4a81d166a43e8af1e5152b6854a263ba0a8831f7dd2ca1badc716f219f4f1bc0
MD5 fb27ad04d6ac9af7199b43f7c04e1b6e
BLAKE2b-256 6402b2606ddf52fa615d4ff3edb2aa05fb064337fa871f99ebb184a39e051cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-win_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 826.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 47627909a177036117b91a3378df8634dc8e93cf4ccd66b22086b0098d3c72de
MD5 8b2c30377e220bb69beca606d4405270
BLAKE2b-256 f5d37f5ed7d37cd026b0d59b2504e4015b1370c79359f1e81ca5e3eb0428e8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-win_amd64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 818.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 996a87a5b9c048e3dddf497acde55c7955748572091c70e1424d3c4779171526
MD5 8c57aa0a09be8d48d4496b99293e9838
BLAKE2b-256 3b3e4dd06523d3784b9229059f8812cbed292ad36136adedf32db106796258db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-win32.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d971ee533dbd7b836abec1e4ceefaeb9f6637c262561614482f213b8a19085be
MD5 001230effefb08edccd528a654af65f5
BLAKE2b-256 a83774392c9eaeea549c25a7e0304116cdfde79b7320bd55d652a03914b53d10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 721f9b1a378d5bbf1bc2b9de2b7d3eeb4466d2878c7f430d483af7e3f580c935
MD5 43e54e15103e68ed1e8d1f9d832d044c
BLAKE2b-256 93151d57e1a4f922de348ffd6595488f7855a46f7d2152a9ca991d0b878657d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 abd0db088de3935b87aa27398d6fa98718c3a1d84e36ffbb927a353a9d76a032
MD5 eb944412fed77aebf70d51152d3f8fcf
BLAKE2b-256 d7150c5e21f6d257c5876632aea3b1a38440577f089d94811d757256e773d98d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee7ed67136ee8e69c53c657253dbfe19486edd9560a3d8363cc0ee3614b52297
MD5 1813d8033f19872b779490cc19661c00
BLAKE2b-256 9c0e37dc8e6cbb25777dfaadb478fee6d5672ebd14eec1ac74eafb8bcda8b2bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5a0e70d348d87e50406bc932f7998a40cc6cfdd4b0628dd0c00ff2470f07e3b1
MD5 1a4bd11312319a959f92f49260bcb78a
BLAKE2b-256 274cdc1121d8c949f50f010c15a521a424042322087c553c649b42c16ca15e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8dd4a0c2bd52dd9f78d8808578d5f2ecf1b0fab41a4a169400c969a3e06ae65
MD5 98e7fab6bb14bb6e850e84a80e2cf414
BLAKE2b-256 9dba0600e7c3bdfc8fc9166ae25272751f2a47e436ad451e45e8d0152227e869

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 03de6fdfbcd4ad0634313956bffcced13abc9e575b9c74dec70f69cc248b501c
MD5 87573c82d6735593fed3be642fb5f397
BLAKE2b-256 98d6a2ae13bad8d503115ea4f900802c07e0cc5d897e60c5ab04fb6a36044afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 816.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4c6f85e33ef338148cd70bc682fc73bfd202a1cde554057d807905d2310767ad
MD5 d78cf6233d8d565852800ad1173f3583
BLAKE2b-256 ce8a8a6de9d310207a070ebbf78e93bcda6e1cf9cf137368b73efc2d2b83c704

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-win_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 821.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e11e86c9a0f81d23cdd0d0a42a9312c888139d7d330ddd744973d79fec87630c
MD5 00713e79da6142733f3932f6ac65e0a7
BLAKE2b-256 149f630977caf0b8022c8a6b2a55c242c7d264ce519bb5a68d8736de338866ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-win_amd64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 816.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 13b1ad2110fbc8ec151e996ae8ea22727db8b2bd48515141d76d4fb54bd07da3
MD5 ced12f45eac7c50f35ed4aa43d67e072
BLAKE2b-256 8f6bbf0bc7eab0df3e7ef0669ceadbf25528f41fe304979335e49d79c4012515

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-win32.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b88f2dfa33e1680e8990b45036c7cdb79c5c5e0b1f08b2e5c942893d76853eb6
MD5 1ab4686de448ba663a0dc3fa319b3cf8
BLAKE2b-256 d4246e56a573977a60047fb8bf3646eb5eb121c689678fce4eb2f6ddd5cfbe2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3c50998113e17737fc2048e0184eda8c3aef465acc5a554fb76e2b0266805278
MD5 35269af7794080c67740cabf04933cb0
BLAKE2b-256 195e072839ec02e1a11518120bcc81e59a60f2e3d3629e760f05e0a1c3b7344a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cd7577d4f28c882b42b356f86f7cf7566698beb347b75dcd742ffe5aac3c3462
MD5 13bad1c0c0e6159a2a51379761fa0810
BLAKE2b-256 7680f7f686185a7e386dd1d9ad4bde0353a5150b7a1129957beed764bcf900fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34f3c9adcc26dbfdc50cbb27da5c369588e6862241ea5cf96d33139f57fd9e0b
MD5 d4940ed5e878f694275cf9c76e2bae2f
BLAKE2b-256 b0363c4d10c334f76dcd135313ca21d3a902f13a3e46438b36bbea9413ab7fbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b43545a785e4054db2f712ae7d2a640874500a2352e705dbe49c8a1b90de87f2
MD5 f435514b38353753939e1669e3f68449
BLAKE2b-256 ad19f671bdb2533ef47ba49bd1cd2a65c16c2e5540abd9f48f0c8661a7243c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 277e61864ad6a064d75d7efbf5ce0e57378c420e48af6b7bad63e8356dcb22e1
MD5 f6e0245b3df549cab7179016c85024a3
BLAKE2b-256 62255b783fa8d6cb08d9590e56969accab39194e801f35a174c77d494dcefb94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4343c06f00fafdd8c8d73521ed8b4c468aa74e1b8f65cd757fb5f6ac3df685b3
MD5 35d4e3167cf1a395702d6ff8ffd893f2
BLAKE2b-256 db866c79e21ddad4a9165f5023c723220f23c68012949efaa89a02d13a684bff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 815.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b230196ea62fc4542d9d6b78ddd9dbf0c9437ac2fde5810f7305377ae50fed11
MD5 fcd4290e45ff3011148db2d2cbb86df1
BLAKE2b-256 d5fa8cd86494c9001f8e5331f51384b187962696bac3188fcbe05f7edf8dceed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-win_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 820.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a2d96ad52eca16939564cbae9c91ffa92a9705ad46cb8d5de26b95dba0d40793
MD5 4c412be09f4a14c666b22ee7ef7277cc
BLAKE2b-256 6e58a2a4b209a3066db88d82c9b44e5b75286aa5a00172dbca357af20bb8b1e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-win_amd64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 814.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f15feb666fa56a43e4b318471eff7fba6facbfc3b2555185a0fef871f6b9ccf1
MD5 4212ec242f43745726e16116ab59854b
BLAKE2b-256 e725a317ab554f604ce30fa778af82264627a7784c4a750c3d8459589f751cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-win32.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9b8e25f672f5b2b30c6b834e162454e721cf1f782e753f0e9ea3bca225900f3
MD5 7619822f05e413089885a1b2d1a36335
BLAKE2b-256 bddc7c620995d4dff3eb1fdf62236844f3cb67d3042ed1a6d4f4059ef5dc79a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 368cd67dd1d3ead5836c20457b84d674256f27b3e99c332d085081680c8465b9
MD5 34d5d37a58201dd1ce439683df2ae807
BLAKE2b-256 08e1fb0807668b8ffc0ffbe92786cb0ed6c10e70c32be5123fd49ff4ff2006e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 04766d0930bc06dc99e3274a800fb81e85f2629f27ba7bc326e2d4d13ea449d5
MD5 cc58e26faba18888c80e8f93b67dedf7
BLAKE2b-256 3f9070faae774a27545f6e9d085877a1acc884e48b0e7afadf51d2f17eab15ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eda647930ecf0419fb3cecc448c40020e3871adbae523b302d15d2c49d22c866
MD5 9139c8850d67cc5f6d238f25cfd9c4ee
BLAKE2b-256 5095944159a0c4bd68c40f3a96c617d3d1815768e23cd0cb0b730827c7a9115b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0a61148df54b254b4157aaba2139cb8fc97b8232281d783e0b7b2d58cb000fcb
MD5 bddc578f2af421153487447c38d34cf1
BLAKE2b-256 59183a19ece4d253e6be1d5e293701c2948330927a7e91d19372e9c4a04e2139

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d821ca5865e88c2dc29e259a191d770a53093c6749c6b228f18b078cb598faf
MD5 de48c330c271016f699982636707b310
BLAKE2b-256 caebc5beaf94967ef5c9aaf9db65fbe1d82337f7cf9c6b6df6c0e8d4c70f9e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 29c60dce70a300a09c0af39c2dbebd1a0199db9eb4d3ef03a4eeb587e7675668
MD5 61f18df741e72f250d0375508dec0aa3
BLAKE2b-256 dfb16602487d94f6aef7677b18fe149bb0693fa209acf3b339a44ad8bc4060b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 815.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9a50d8ad7310b87e09d34ddf398c3d347d1ab28599b7f181d432a59ce89cb6ac
MD5 8ee713cfd8c8dd78558739924b12d17b
BLAKE2b-256 eba381e90bba3e5e011ba818854f84efc5480386349aa8039f85b5ed196f7264

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-win_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 820.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96bd084e388afa10eda7ea7e2e2c7b070589ff180ae7a61b7af9039747c2848f
MD5 878e461231cfae9899962b836014e86e
BLAKE2b-256 5aaeab46e8a875675b9b0ab76f04e30267f8d56988b776977c29584a2ae3f0be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-win_amd64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 814.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7ab8e8f9d636a199a60c01427eff854b52d3bec5023e7ed516b3b0e26ee088f6
MD5 0aa9b2e986ea6f7ff15e6bc722deef1c
BLAKE2b-256 765dce8c73aaf26461232efe31659b448699f46f29dfa7fd2726e582bf9b6ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-win32.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21a0b97c0fcb9ce63895e37642e64dbb119b27053f7b5292ca9dfb597c1bca5f
MD5 5da7bcb79ef2e0dffa8f5b1fc5cdbe98
BLAKE2b-256 e0a59987c5b2f909f9b7796de7e3c5ea3f9d7ebe3e3454862904e80bd6c37654

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e84103297ac0d1f3079ba6891b1f5f3f9459cbe1a61ad5465643c311021bec6a
MD5 43ed53878e3effb8b723f6ee73acac22
BLAKE2b-256 ba5754b5f915b3daa31fe4a93f04700bd0f17570fabc90a7d7c107aa3da14248

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b48d37852d45673a6ef38cc91fdee6ad59eef74d1f24691c6f19069a5de936ac
MD5 01c00dfa169b57ba5ad8f0d652f3f8d4
BLAKE2b-256 217a9916952952bebc37b0cc1b7544e494da33ebe779581dc7d5ceca020eac8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 751c2cc268e0a43e53ed6d41d3c36ca23f048b35714a9e1c83a3b3216bda37af
MD5 d48d9e02705cc7fd60a84a9f9a27016e
BLAKE2b-256 f03f7a4a9d3f8d0dfed987914dcd77bf87e2091889b1b1b5076b73deddf2ccf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 47f443322528b03106c7bcc4784288ae35fe5d7bf4cf99a9d79cb4b582a3ecdc
MD5 722b3145c7737f5822ac06152568a478
BLAKE2b-256 3750f5204dc860cf219b744e70f8c69b8ae7b08093acb200d56c3fd7b10b59b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd37241ae704da14b71961da2b6a862a6100bfa83419782de3c3e2336a5d330e
MD5 d5e8d96fb03b0d26f405fd807a1fadc7
BLAKE2b-256 006ac08d9c0131ea86fc13837d8b4c90264ace36c2c6823a65e2af07819c24e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 209aa073b8939bfbdae0e74d76c85db4ad8681aa4ec157d6db3aa5e0ada6ec8d
MD5 55366f07a8da7b8d64a2a54ed27b6fb9
BLAKE2b-256 7145b0d2f2c463d4c74eec652bb4bfaa7107c0ccc0880ad06d3d384f6c393aab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 815.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d22465d4798d4fbfc6992de089d07ca33821fcaaf876a15942a9cc2e99441ad4
MD5 9b5a5854e5006707c01dd73bc033f080
BLAKE2b-256 41b403a75f77a129a3f8ec33c28d6abac23198a4c18a455ecc02a5bbf336c07e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-win_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 819.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ac4029c949f8141ea5600e34e12cc400507d664e2746cda4fa4f2895959bebed
MD5 1d9353585ac3cc6f5c240a7138a9a0f0
BLAKE2b-256 2e93588e44ab0db8a016d052f9e225e987c2709fe36111b975baf47d31ae1efd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-win_amd64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 813.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fb0ad64ed30b8ad268ebcafebefe00750868c23d4d62b137da3316f26f3361b1
MD5 a489fb94bceab208414e56c13a28f120
BLAKE2b-256 e00bb2883d8cc6ea4dbe089d613bb3f480d37c2c60d5b6fc5811bbf359709b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-win32.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3ef22f72013934c1a688f42c3dc629b2c8215d03e313ec45f00e4f9a80ef2c8
MD5 151e4078bd777830ca1af10e12927339
BLAKE2b-256 5dfac21e7fe8f480538c58f718b49bd1370e81f2ebaae91c6b4844378d17c24e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6ee6af1a764a563bf82ac49b54b38cf7e34615ddb709c974aa7a9105a9b9d24e
MD5 63c8f275bb8e3ae249fc7b450702a85d
BLAKE2b-256 04ca814fe3f7bac4c84c6400dc34b7b73bcca8f5eff60e52ea9e0e7e9ad8b723

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5277ec3804d6c174953aab6e960f6590d7ed43ee932c4c29183a4123881762e5
MD5 dd8bdd994d71f9f88f06d232d146a8a0
BLAKE2b-256 e3ee79749c0c936845539b0acede9ced62c2720d41d6a438a32e448907437620

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a376caecb6cf32d0b27190a304e884e6db68b05d3bdf3ee3a7e780081745efbe
MD5 9fb409667d91002b8f170152b1b080bd
BLAKE2b-256 bec19eac4d41ea1cfcad75db29e89942cd2eea21339647e71805979805e85d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 065f8c5d5a8c677cfefc2dd59fe55b649827255375675f9061b459163735e123
MD5 00e9ba328a5f13b09ce088ef59022925
BLAKE2b-256 c81c1af393729126c9999daa4703d9b52c699878a73a4e6c4636061069655fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d478d036b15a7b421bd663290fbdcf2ba6a6072943cdd6cb90274832c40534b
MD5 d1ec74a7ad38e6cfa9eb4180ca7869da
BLAKE2b-256 56f87da63e0961009dab27a74424c054dc802dee526de2660a41443323bdb320

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 232629980d2286644fcfdab89d6f16990a4b34f9c11f8e94184491895c84f652
MD5 86b5ff32b434eec05a3e47658bff6bbd
BLAKE2b-256 26a82dd2627a1bb8e9b7cc137464b8b494b3b857c6a4c668d544892feeb66b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 815.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 149377eecd3321ae8f20de61a71d1feb8f06ee3ae16d109ad566cd2c1e15fabc
MD5 f501c8f6ae9b4aa3209323567eb3c63d
BLAKE2b-256 fba495df1efb97377cace8038e2369977b5d6d110791a6c715225e8537bc71b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-win_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 820.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7874e91c80531ce2e7f4ed5e786662e095515465cdfd8beff2055336ef9b57e5
MD5 dd88093877ad738a1f6ff0f753478fe8
BLAKE2b-256 fc00f327ef421b2a5293a42dc3ffc4165ff4d0fafbd7a25630cc65da21ee6e9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-win_amd64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 814.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 77db1c8603cd84c6e9e4c40d9fee69fd8410fc2d33bb7da1cc742d687ad7893d
MD5 c2bd69969355eda0afa4b7f9cdd3e63c
BLAKE2b-256 5e0f80a921d88458fdf1d599fdb590e5d160e2f46c668164ce74721e500ad9cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-win32.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ad4e7456da05d23d6e0e60ef2b8c48c6020eeb9c16483d2112ca9f9c7520011
MD5 d0973a40da429fc726040cb002b4c646
BLAKE2b-256 4ff7791c2c77e1f20625aec2c0f23ba8ccaa7716b3e60fbccd57e842ccd08c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d1bcd563503c2c610a90bd89b07fe8c08bbefb8dbbbc06997170cbf90a04f18d
MD5 e3be07e472c5d36650cba21bde83deb8
BLAKE2b-256 6522246e8380bdc81300c75d3d0621894c13b23d67b52f700588d3170def53e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e2b07eb24bf8b547a89049e3b2a79978b3a1568064d48e0cdd3ac273115314b3
MD5 5a8c4ef0682af706ba9098a836b672d6
BLAKE2b-256 c351ddf7ed40cd737a15c87648a39e6ecc38f78aeb4b945f48eb032eb2dabbe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 390286a44715a2691cafe251b7e4dd525447629cf1273a05183daa2bb3781048
MD5 c4d40b7d96381db382de69345d79cda3
BLAKE2b-256 038c4b436efa54e0e0672b64f458c2eba1bedb7ff6c2fd51a3aab99ee681cc5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7a5ca13e1555b210422125b6c37483523baa49ac0fb36c9dbb3068b68ffe1dec
MD5 0934f40411cffe614405b860a3eef60d
BLAKE2b-256 1d7a8e33fd5a415683bd915a9b98e045bab7efc5b391decb7dbae14091a6fb09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7c0846ced2ee89a9f2a3be5aa28048ca3bc5a649daed5c4a7de0a38c6221cf8
MD5 d3d625eacf395e74f3366837aafc6232
BLAKE2b-256 438e0f8cfa8afa4504a18870f661be10f28f71a236ec5a4b53c53bc28e357102

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1e303b6d96c5b8374082244cfc272207cbe00c58393733cd50afe478366f286
MD5 f781ae046cde94c9c2ccf0e117406966
BLAKE2b-256 57ef97ae63490b697aedade849e501ff7ddc1b1c092685c7c46330fcc0c97503

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 815.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f991da24ba0e4d82384e71c358acd3f7e290b6ec35df1c88fb153a20ff936368
MD5 5e08f2240eef3fc35bc5fa7e36f30284
BLAKE2b-256 6ed3154b46ed238f16bf692cb67f9c66631420871116d7bc7e89b6f358f070eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-win_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 820.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0f06a0f7f8e41711885587e84dfc5e2a7616e34132f56cffb85da0200cc063d5
MD5 86060f9619a7bbaf870fa6f06fc51e98
BLAKE2b-256 95e78bf4716ca29886fe42028e4788592c5363181d4cb9127dffe90b7ebe8fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-win_amd64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymongo-4.18.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 814.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 256b1249d523cde62343cc9d45380ec5c8f73b90718e83fee7ab90671ac1ed7e
MD5 20a2ebd42bc5b1043f79f63af3238184
BLAKE2b-256 e4111de3f88695c47d2c519ea71939bb8fd2b01c9168b720fa4e83d3d762985a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-win32.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73fe723d55a06e1a9fc78239463709e4a2b5e15c6514fa756590254f4ebab85b
MD5 efa06f6ab5de86d539c36183f3d196e4
BLAKE2b-256 cf8c794ddc144e18b78646b3e8d5176089e0c68b436b196d619945c64a08b1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 33ce77c90e5bd20811aa4c5491fa89be1b53289ef67278079be049b10e33e96e
MD5 2627e533a31288ec50eddb4628dd1688
BLAKE2b-256 bb309701de6ade9308e1bcbcc092d13b8d9643c118e84d0136cfa6369c1f7fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 50475b7f3eb9e0d6beead7f0d611ea8708c29123ed430a39b0a13b93cd9d37db
MD5 763bee5ca46422951a05e0e6f6269481
BLAKE2b-256 f40c87e680e802bdb4b08c2321f65e337c4a75ec681f6de282717bacf9685c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de411c82f6a1e4342f8053695212351ae43ff9e76f7a50d56635d0dd8212816a
MD5 ce9d68ae8914efba1d045eab1af6d95b
BLAKE2b-256 c3fc1da1c731d4c2560dca4994afcabcd6178b15e882a706445416d7ca82b4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 96394fc9d5f3be356c358d6d9142d1cffef96ec90a6a19fc62541b82ba016588
MD5 e7ef719862313e6a57f4686555979c01
BLAKE2b-256 a4f0d3caa0d38d9a18a5b05dea26d595887d4170608d79e74485d4042093c807

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65e31eeef9a825d9769f4d75c127ec22668fb25a4baecbc23e647f3ec6583c11
MD5 4cc906ce5511f922a4a1360066c94098
BLAKE2b-256 ea8ed5cefca68c01e5b21f96026795da546a204fc728661f17fd522b5257a5d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongo-4.18.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 077c18422e70191739a7f3be840851dd7ec6b7e2527e13e935ccd84e9061b97b
MD5 55584d112f64b9b0f0838118a3e2a0d3
BLAKE2b-256 b0afecd8874c398cf4927a54fc54a74c02f76e268cba22efee9a6f00e2bc7c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release-python.yml on mongodb/mongo-python-driver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

4.18.0 This release

71 files

4.17.0

71 files

4.16.0

71 files

4.15.5

71 files

4.15.4

71 files

4.15.3

71 files

4.15.2

71 files

4.15.1

63 files

4.15.0

63 files

4.14.1

57 files

4.14.0

57 files

4.13.2

57 files

4.13.1

57 files

4.13.0

57 files

4.12.1

57 files

4.12.0

57 files

4.11.3

57 files

4.11.2

57 files

4.11.1

57 files

4.11

45 files

4.10.1

59 files

4.10.0

59 files

4.9.2

59 files

4.9.1

59 files

4.9

59 files

4.8.0

50 files

4.7.3

60 files

4.7.2

60 files

4.7.1

60 files

4.7.0

60 files

4.6.3

82 files

4.6.2

82 files

4.6.1

82 files

4.6.0

82 files

4.5.0

82 files

4.4.1

74 files

4.4.0

74 files

4.3.3

74 files

4.3.2

74 files

4.2.0

67 files

4.1.1

83 files

4.1.0

83 files

4.0.2

83 files

4.0.1

83 files

4.0

83 files

3.13.0

110 files

3.12.3

108 files

3.12.2

107 files

3.12.1

107 files

3.12.0

98 files

3.11.4

64 files

3.11.3

64 files

3.11.2

64 files

3.11.1

64 files

3.11.0

54 files

3.10.1

56 files

3.10.0

56 files

3.9.0

31 files

3.8.0

31 files

3.7.2

39 files

3.7.1

47 files

3.7.0

44 files

3.6.1

43 files

3.6.0

46 files

3.5.1

53 files

3.5.0

53 files

3.4.0

49 files

3.3.1

53 files

3.3.0

44 files

3.2.2

61 files

3.2.1

61 files

3.2

61 files

3.1.1

61 files

3.1

61 files

3.0.3

49 files

3.0.2

48 files

3.0.1

49 files

3.0

49 files

2.9.5

41 files

2.9.4

56 files

2.9.3

67 files

2.9.2

67 files

2.9.1

67 files

2.9

63 files

2.8.1

55 files

2.8

55 files

2.7.2

56 files

2.7.1

56 files

2.7

56 files

2.6.3

29 files

2.6.2

29 files

2.6.1

29 files

2.6

29 files

2.5.2

34 files

2.5.1

34 files

2.5

34 files

2.4.2

34 files

2.4.1

34 files

2.4

34 files

2.3

28 files

2.2.1

25 files

2.2

25 files

2.1.1

19 files

2.1

21 files

2.0.1

19 files

2.0

20 files

1.11

13 files

1.10.1

13 files

1.10

13 files

1.9

9 files

1.8.1

8 files

1.8

8 files

1.7

8 files

1.6

6 files

1.5.2

6 files

1.5.1

6 files

1.5

6 files

1.4

6 files

1.3

6 files

1.2.1

6 files

1.2

6 files

1.1.2

6 files

1.1.1

4 files

1.1

6 files

1.0

6 files

0.16

6 files

0.15.2

6 files

0.15.1

6 files

0.15

7 files

0.14.2

6 files

0.14.1

5 files

0.14

5 files

0.13

5 files

0.12

5 files

0.11.3

5 files

0.11.2

3 files

0.11.1

2 files

0.11

2 files

0.10.3

2 files

0.10.2

2 files

0.10.1

2 files

0.10

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9

2 files

0.8.1

2 files

0.8

2 files

0.7.2

2 files

0.7.1

2 files

0.7

2 files

0.6

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page