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.0, 4.2, 4.4, 5.0, 6.0, 7.0, and 8.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+.

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.17.0.tar.gz (2.5 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.17.0-cp314-cp314t-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

pymongo-4.17.0-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

pymongo-4.17.0-cp314-cp314t-win32.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86

pymongo-4.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

pymongo-4.17.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.8 MB view details)

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

pymongo-4.17.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.8 MB view details)

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

pymongo-4.17.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

pymongo-4.17.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (2.6 MB view details)

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

pymongo-4.17.0-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymongo-4.17.0-cp314-cp314t-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pymongo-4.17.0-cp314-cp314-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows ARM64

pymongo-4.17.0-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pymongo-4.17.0-cp314-cp314-win32.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86

pymongo-4.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pymongo-4.17.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.4 MB view details)

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

pymongo-4.17.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.5 MB view details)

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

pymongo-4.17.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

pymongo-4.17.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (2.3 MB view details)

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

pymongo-4.17.0-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymongo-4.17.0-cp314-cp314-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymongo-4.17.0-cp313-cp313-win_arm64.whl (951.6 kB view details)

Uploaded CPython 3.13Windows ARM64

pymongo-4.17.0-cp313-cp313-win_amd64.whl (972.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.17.0-cp313-cp313-win32.whl (948.4 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pymongo-4.17.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.2 MB view details)

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

pymongo-4.17.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.2 MB view details)

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

pymongo-4.17.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pymongo-4.17.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (2.0 MB view details)

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

pymongo-4.17.0-cp313-cp313-macosx_11_0_arm64.whl (985.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.17.0-cp313-cp313-macosx_10_13_x86_64.whl (985.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.17.0-cp312-cp312-win_arm64.whl (903.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pymongo-4.17.0-cp312-cp312-win_amd64.whl (920.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.17.0-cp312-cp312-win32.whl (900.5 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pymongo-4.17.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

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

pymongo-4.17.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.9 MB view details)

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

pymongo-4.17.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

pymongo-4.17.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.8 MB view details)

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

pymongo-4.17.0-cp312-cp312-macosx_11_0_arm64.whl (930.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.17.0-cp312-cp312-macosx_10_13_x86_64.whl (930.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.17.0-cp311-cp311-win_arm64.whl (855.0 kB view details)

Uploaded CPython 3.11Windows ARM64

pymongo-4.17.0-cp311-cp311-win_amd64.whl (867.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.17.0-cp311-cp311-win32.whl (852.6 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongo-4.17.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.6 MB view details)

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

pymongo-4.17.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.6 MB view details)

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

pymongo-4.17.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongo-4.17.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.5 MB view details)

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

pymongo-4.17.0-cp311-cp311-macosx_11_0_arm64.whl (875.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.17.0-cp311-cp311-macosx_10_9_x86_64.whl (874.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.17.0-cp310-cp310-win_arm64.whl (807.3 kB view details)

Uploaded CPython 3.10Windows ARM64

pymongo-4.17.0-cp310-cp310-win_amd64.whl (815.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.17.0-cp310-cp310-win32.whl (805.5 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

pymongo-4.17.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.3 MB view details)

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

pymongo-4.17.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.3 MB view details)

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

pymongo-4.17.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

pymongo-4.17.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.2 MB view details)

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

pymongo-4.17.0-cp310-cp310-macosx_11_0_arm64.whl (820.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.17.0-cp39-cp39-win_arm64.whl (759.1 kB view details)

Uploaded CPython 3.9Windows ARM64

pymongo-4.17.0-cp39-cp39-win_amd64.whl (763.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.17.0-cp39-cp39-win32.whl (758.1 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (985.8 kB view details)

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

pymongo-4.17.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.0 MB view details)

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

pymongo-4.17.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.0 MB view details)

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

pymongo-4.17.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (984.9 kB view details)

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

pymongo-4.17.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (975.1 kB view details)

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

pymongo-4.17.0-cp39-cp39-macosx_11_0_arm64.whl (763.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.17.0-cp39-cp39-macosx_10_9_x86_64.whl (762.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.17.0.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0.tar.gz
Algorithm Hash digest
SHA256 70ffa08ba641468cc068cf46c06b34f01a8ce3489f6411309fcb5ceabe6b2fc0
MD5 0a54ceb45f9f969ce5c2650c9a83a739
BLAKE2b-256 ca6450be6fbac9c79fe2e4c17401a467da2d8764d82833d83cec325afe5cab32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9543d8f84c2e5608565c08ac679774811e6730770d8a645439b073422a4276fb
MD5 3077f88b626d27120065b917e961b292
BLAKE2b-256 dccbd9780b66939c4fc1f024bcc7be23a2abcfe06a9745ca8fa76dc73395482e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3689ea34f6b647c7d1e7bdc60fcfb214b2789ed1359a7fb96569c69f50e5f18f
MD5 acd500c036cc83de7ecff039ba191ee2
BLAKE2b-256 e45e648c8a238eef18a25ed8a169ea6542d4a860bbec3e95b3d9badac2935c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b93b22eedc62598cf5ee9d8c8007a8e9121c50fd88137012d8985500e9dc3151
MD5 0adf8ddaa6e013081959b0da8a37d71f
BLAKE2b-256 9ed8b75f6f4ab6c8beb50b0270a4f1e2530b5774f5e116563440e1677ca1820f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.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.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64837adbbd72073301af51bb0fc80e3d7707fe5527cea1033ba0320f0b2f881b
MD5 52e8dc1fc890e764c2b821fea81266b1
BLAKE2b-256 674c3f83412d086f682d4d468761d66ddc49cf161e786ea74073045eb4491c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6c5f62862d0f87be481fa1fe8cb811994486773c94a2b61e509285e3f2890763
MD5 7485da63fb12ca0e4d732db97e056b47
BLAKE2b-256 b3eb87b0e988ba889e1fcc3430c2cfc166b251872c813e92b43174298bee17ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 15d3f3d732aecac1f8d481bde4029755615639bd3076f258a2147210aec8515a
MD5 d196f0cae150575af773884c17294bb9
BLAKE2b-256 ef2ef70993d1255e33f6ee59a4ec4371cc65bff7a7e3fda7d55c3386f25287e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50e8f8e23c6df7c6d6929f5e734980b227706e73ee847517c9ba5af90f7fc466
MD5 71ebfb5abb04d2cf878ae1edbe0b993c
BLAKE2b-256 7727426cba1ec5973082a56d4150798529bfdf4151c31391ed1fbbecb23ef2ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 75bc3aa5b94fdb7138d357ec6ca61cd97e0c79f4f7f0bd3efe9639b15cc50942
MD5 cf2e4152135e2ecc02433255d4a9cc8e
BLAKE2b-256 a219a5208f62f9508a26d73acc69bd3821b8c8adae253679a3c26d2f9652f0d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93641192644fa1ee0f34030e774fd31022a27ad11ba22cb1716142231524f8bd
MD5 185d976638524f5a894953a3353da009
BLAKE2b-256 814b69c67f3e23fd9b23b9bedc7ebd23754881cc9d5c5d5b2a9811e96b07f475

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b4384700cffc3f1dd98e088bc0072dedf6d7d68a230bb4b972665cf69c071c1e
MD5 f893ad34157a8690aa2da2f170df2b33
BLAKE2b-256 1ee0c4c1a86791415b14c684fa0908f9da96de91594a3fd1fa1b8dc689fbb800

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 68fca71e05ee5da23a8d73cee8379dfb3d26e609a377cae731d742771ed96946
MD5 8f77ec33ec65f4a10e46aac78d90a6dc
BLAKE2b-256 e019e235f39906134cb0ffd5574c5a59c355ef5380f0499644ab94994afbb109

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c797f8a80957134f6dd9690367a0f8f5906d672119af2c6aa55f0c527b656bed
MD5 6cc196e395591321a6e1bc56792ae1a3
BLAKE2b-256 f7555c3a3db1048054c695c75c5964cc8bedc2247fdb5a75ef6fab4ec8bb013e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 df4a644af9ae132d4bfdb2e9516ea51a615fd881caddfbfbd071cf1354844479
MD5 2bfdb8331f55308014ae60ece2816e14
BLAKE2b-256 eac30d949f9d3f2a341c1f635c398c16615e96f89f51ff424ed81e914cf1a4de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.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.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 320b34457b20bbcc79997801f95d25ce00472915ca5241167242b42c4359e027
MD5 c040915c2f1c991df80bf7078828b6ff
BLAKE2b-256 0689081d7f1809d5ca09d1e47e49f2111b245f5694de3a7af32cd3a353a6f43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cee36b3c0d0354f880fa7a7fdcdaf2bb5e542c2281e25c1bfadf8cfe21eba7d2
MD5 1093634f83e29ca40274f09f9ca29853
BLAKE2b-256 d28421ee95c8bf0ca7acae7ec7eb365d740bf8fc0156c194baf2c3bdfcb85ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3987e96e7c7be4083d42e8ac2cc6c0d5b78db9973c90fce42ae800b616ca6b20
MD5 ea89a88b5ae5e4cdd65eb341988a66a4
BLAKE2b-256 f23044c115b8ba1479942c15fd9480eb29a7da0ba68acd56983423ba0deb4a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2db66aa8dd253a0fc1fad3b0d23d5b3993f7ebde02fbbd7727128debf2853675
MD5 496bb91dfef14b0b639f3443ab6e76e5
BLAKE2b-256 adb9aff42be75108b96c2469b1d9329b912c15108f3e7ef32fdc86da8423c330

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 12c4fded3a9f1d6a687e36ebd384ac6d00b9b00de1969aa74048e7051ec2a713
MD5 e20a54dcff10d0abc38bf9af56bedf45
BLAKE2b-256 78a171704f61632dfc90407a5834fe5f6132854937c4a3648f6c05c351d85a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e816db649ba5d7de0568cf3a9f287a9dc9aad21cf0ca667ab156a7ef47fca0b0
MD5 f70d88ad1eb6b54a4a59c5bad27808d1
BLAKE2b-256 891c7a9b5447a08be20e84b6e5b17330917e8d6d9507daa3cd099a9309f11ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff5aa3f1c7e3f08eb0e7a016c91ba468b1850ccfd63d9b1f12f56350f4974cef
MD5 5b84850c2e00cb0eec5a7f608db916f8
BLAKE2b-256 da492b0250762a89737ed6f9cea238331baca061b89a8ddd10dd17fee52c3970

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 951.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0ff6bd2f735ab5356541e3e57d5b7dbfbc3f2ee1ccb10b6b0f82d58af69d1d8e
MD5 1a3b8c669d22cd44bc3cd01757c2d011
BLAKE2b-256 97f0c39480a2db385fde23861d0c8acda41cdaf1d43e46579db72c5c013a2e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 972.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5960519b4d7168f1ecdd3ea10c81b2aedeb9423651aca953cfbc8e76705d3b38
MD5 44a609e636489818b98810821de45a86
BLAKE2b-256 6f77c0ed522f798a286b99acaa7914ed8d9c80ab091f97f57c59ffed72906e5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 948.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c9786665926a09630c5d420c79762cfadbff35a9438bcbc4c81a9fb5ab9228b7
MD5 b39244e310d3ef550f3e9f020bc366be
BLAKE2b-256 374833410b8819837ed370c738587306bdf060b59cef11823be212f4a07703c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.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.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 faf03e4c2aafd6de626dbd30ba246d369ae33f47f10629d1bbe40f72115027a6
MD5 f3d05f30bcf9b14843c19ef7564d18a9
BLAKE2b-256 12106195be29962a61ebb5f4bd9e4c7519890b172f7968a0a0d880398c6ddb02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 dff3de1294fbbc1db0ba6b511f77b8e540601d092538a31312e99c8a91a78b1e
MD5 223655b72c0d149700514a402683a12f
BLAKE2b-256 3dcf1e4a7db352ef9485831c7268dfe8402f0117b32a9ad54b16e810699e3617

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5a5de048e6da5c18e27cc2437e8c15b3b0cdc8385c15b41178b0caa3322a09c2
MD5 c9c3e20f1524af4e7a5a10fcf8fc565a
BLAKE2b-256 31426e41d434297ffe8b30d9c3717916591a4a7be9075a0dcc2fafdfaaaa62ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20323b0b1c1d33770ad1fc68d429c757734ce9ad3594421c3d6618f10572b1b9
MD5 2d0dbc071cba96491e8f5d4c3b846be0
BLAKE2b-256 4ac5081f59a1c02ae8c0dc73ae58e563838c44eec81aeafa7d0b93a637841c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e4fab10f8403169ce92f3cea921609d9ee81107306caae06c08f592d4b8ad2b5
MD5 a044018fa8f2d58f423475e5af985378
BLAKE2b-256 740af6dfd5ea3901e5d6888da8de8ba728971a1d447debab681cfc56f90d1208

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a431b737816bf4cddd4fa0fcef04e424ad36b7692734a64150f872fb8f3208be
MD5 a2ff7c20e3edfaf7e361f73ee90ce276
BLAKE2b-256 cbcfbb044ed85160e5c40f568c7c4f4e8ea16f40764ff5d302e5befbe8f6f814

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.17.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 809ec74de3b9148ae43fa8df9faf53470f511c8d384f13b99d6f671f2a379f15
MD5 b629b2ebf6755f6e1b8c0b0178f46312
BLAKE2b-256 2a6bc1206879708b94e82fcd8b9653440ec271f79a3674d122192df383047f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 903.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1195370a77baf003b59b10e91ecc4706297197f0dd9d29c840cc556dc08f7cee
MD5 f08c88b4b4da66e2c8ff31bdf8c7544f
BLAKE2b-256 8ddae9c7265ee176faccf4e52c4797837e794d93569a1046f6b19a4acc36e5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 920.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9828485f72f63c7d802e0ec41f71906f633c2692621ab3af55ca990186b091b1
MD5 94c729330585a42c20f146f5ce94e99d
BLAKE2b-256 11355c9262a459f988b4eb2605f70815240b77a0d4131136c4326d18f1822b89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymongo-4.17.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 900.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6877214bff5f06f6884a9fc8d9016a4a7a5f51f537f5c51ac3a576f93e7dfb32
MD5 ad00f25a57d0b2798d5817c9a6ffa5fd
BLAKE2b-256 b869dafcf04f66e130ddd91aeb92e7a692480eda46dcd04ec1dbe82c06619e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.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.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e97e03fa13327c87e3fdc5656acd01e71817f0c1dc3221cd8f30de136bf4ec3
MD5 8394f07fb56276b5011ee5344180c981
BLAKE2b-256 2f35b577d82c6d1be7aee7ac7e249bc86f7847998345042e5f8360de238e177b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.
  • Statement:
    • Statement type: