Skip to main content

PyMongo - the Official MongoDB Python driver

Project description

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.

Project details


Release history Release notifications | RSS feed

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.

File details

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9eb5d63a3c518cb0804ed678f5e2b875af032d89a7cf57a57360322cf6a4d222
MD5 929b924dca4da37347e327f20b1e2414
BLAKE2b-256 45ef7fe366c84952619ee2f69973566c214775e083dd4df465751912153e4b72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f3ee3d241ed77a4fc99ce3cff3b289c3ebce37f61fdd7349d3592c23b82c8784
MD5 4b5b79b4876b3e0f693071566c4440dc
BLAKE2b-256 7bd44cee4a7b8d8f6f0550ef6cd2fea42455c5ed619a220cb6ba4fb40d6a5bc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37a8385c29881b43eab31f584100fa0eaddedd5607adf010147ba1810118be90
MD5 8a0a643a7aff92e4ffd09a351245c3f4
BLAKE2b-256 95ee149b0d4b1a11c38bff6f14c23d5814c9b0843fd6dc38ad40596bdb1a62d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e537e95514dae1aaa718f481ec03151a0f0394bcd05f1322896d8fc1330cb729
MD5 b39f8bf5c2dc242fb095bb81a452467d
BLAKE2b-256 78359d3565ea45b1606f635c1e2cd2563c28d66caafdc50f7ad7d979fcd1b363

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fe0de9d0f6791abce3471230b32b4817bf89d27b1182b6a550e1ec0fa72aa9a
MD5 1de3bbe5c75b778d453b9428d3d45ceb
BLAKE2b-256 a6e9313840f1e52c6dfac47f704428cbfbce59956ebe7633bffc92b03f74f0ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d53ffa94b2340dbf6b055e09a0090618c60482c158ecfc9565642fc996bf0944
MD5 98deae9caed94d81c8bdf69b8a0a657f
BLAKE2b-256 989060bcb508840135d5ee46b51b1a950f548338aa8145a8366dbe6639ae51ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 855.0 kB
  • Tags: CPython 3.11, 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-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a8f9c40a09bb7d4b9fc8b1da65ecf6efa79bda5cb2756f39d9b6940fac1d19ae
MD5 b7350595f782537beccf1bc31da823e5
BLAKE2b-256 1db2c7b4870fbeef471e947d3e014676f5910d02e0197074d692ebcf24ec049a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 867.9 kB
  • Tags: CPython 3.11, 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-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e190827834fce70ecdf9d46796c6dbc0ce08ea87dc2ff5bc6f3f5579b605cb9
MD5 69ad44c637d8dbd05e40eaa7b2e2bcc1
BLAKE2b-256 11c0c04da9f4c0c6252404598f4e394b862a58a9e866822a70ae261c8a018fdf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 852.6 kB
  • Tags: CPython 3.11, 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-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c2292144505fb12156b981bd440f3dc994a883da06ac726c0c8692ccdbc1c510
MD5 41089c43b13e4e6dc046fe2c9cd0a4d4
BLAKE2b-256 4e05c952bac7db71c1942ea3559fcd308b49754cc5004b455935fb4000d1f37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.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.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2dfcc795f5b9fedbe179a11fdf6051581479d196582a3fe819a92a00e9b9969
MD5 ee73f2ae17514a18d05f63e08ca4bb7d
BLAKE2b-256 e9c26855a07aafa7b894929af23675b6fb9634800ce43122b76a62f6eeb8da2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 485c8a8eaa4c739f00a331fc73757898ee7c092c214a79e63866ff76aaf282ff
MD5 45cc62fd8eb0161578f1d878686abace
BLAKE2b-256 b39df08b07eeffda1a43c1759f0fa625e88ae12360996eb56d42aad832fa7dff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2a0d5ac205728c86e0a02192f1aa5f865b0d7d51f8df6101c01a69a7fc620d72
MD5 5b5669676a9d8ba5f9f95e6638375ae7
BLAKE2b-256 f7ca425dc1d21e0f17bdea0072fc463f662f7fa06d2852af52975c9eced3c07c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8446ff4bfcb6ec2a2e50998c860986a1e992136f998b7f53e7a717fb8aa5a0b9
MD5 252cc2dda5ff92f5bfc2cc73a8ef9618
BLAKE2b-256 82e893e4e5e5ce8fdf8929dabeefe24aafa5ce046028eed0dfa8eeb936e72c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ba2195d4f386f839a52a23ea1cfd60ffaaba78a3d7841db51b7e433001139918
MD5 9e653f310dfd3b538512cb239fb73b95
BLAKE2b-256 5fec62e855744489dbcd54fd778aae4d80fa4c4819e8fb228ca0cf6f21a03997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e68c76b84e0c132d9dbf9307f12ff8185702328187a87b9aca8c941303873433
MD5 0b47ee8de0b6de25b7bb384960a2f20d
BLAKE2b-256 348e75d3c6c935d187ab59c61e9c15d9aab3f274b563eaf1706e8cae5f508dec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4141e6c6a339789b2974efa00ecd9409101672d77a0e3ee2cc3839eedf8ec4df
MD5 163cf7e969d57ae211ed1ae5049df0f3
BLAKE2b-256 c4e2336d86f221cf1b56b2ed9330d4a3b98f9f38f0b37829ae9a9184617d5419

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 807.3 kB
  • Tags: CPython 3.10, 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-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 757f2a4c0c2c46cab87df0333681ce69e86c9d5b45bc5203ceba5410b3489e59
MD5 13bcb7748048320eca6e7fbaf01e73f4
BLAKE2b-256 22e20a4bba644f1cda3970ea1012149eeae3594ebfeed3f81fdaf32b61d90c95

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 815.7 kB
  • Tags: CPython 3.10, 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-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e46767f28dea610e02edf6c5d956ce615c3c7790ea396660b9b1efd5c5ead2e0
MD5 64691437a17d281064f40430669eacc8
BLAKE2b-256 22fab4e71bb8cb82ad7d21bb4e8c476f2d573ba68b20368aac36ef06e4a196b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 805.5 kB
  • Tags: CPython 3.10, 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-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 48bbc576677b50af043df870d84ded67cc3a9b4aa7553201beef4da5dc050a0a
MD5 859be4136b3edaf73c18594c93c3c8e1
BLAKE2b-256 8de43df15494c2015ed297958517f0e4f6493e21b00990748068a973e66d45e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.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.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77aa4bc164b4de60d5db193b322f0f5b6ead716e831031bfdef8e8bd92205556
MD5 ecce4c715357be0541ffbbcb05555ca0
BLAKE2b-256 4fc97352e0c20fe772541556e4d283c05e07ec48f8b0d2737ad930ac4a1b6655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c4979e7e8887862bbb44d203f00cc8263a3f27237876fa691b6beba23e40e6d8
MD5 bc172378fec4e09944be33c32730e3ce
BLAKE2b-256 3a94fb7e25441dd66f2069a9b172380849b0eaa5881c18b3db217bf64a6d393c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bd835cdb37a1adec359dd072c24f8bb14809e2644fde86fab4ee2fc9719b9483
MD5 d9ffa6ccec03cf3777bace2b03d827ed
BLAKE2b-256 2e2040e8e99824c1fda18261411e65ce3b0cd3d9a6ed3c056cdd0a569adc870b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5c8e180cb2cabe37300e1e36c60aa4f2ff956cc579f0142135a5d2cba252243
MD5 ea438c9c11321dc698229dd852e1bc6b
BLAKE2b-256 fbbe7cac5b1e89bd5a8e395067648241390321593a7c29243e36f91343c02a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 addd0498ebbdc6354227f6ed457ed9fce442d48a3bb30d5b5bad33e104996561
MD5 df0029dac3acc72071d151641dce7666
BLAKE2b-256 23d507b7e27e662c58d872efd104a0e8055eb6569aa1b6d4da436f3fdee7f897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 422fa50d7d7f5c22ea0953554396c9ef95684a2d775f860bd75a7b510538dfca
MD5 4c62edfbac316f1080459d865d7c3ebc
BLAKE2b-256 88cf5a70cee503ff9a2fea20607607f14d189f4d975960ac0945ec306ee7b695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47b021363cd923ace5edc7a1d63c0ff8a6d9d43859b8a1ba23645f5afae63221
MD5 e63fd9db2be0f8a6277493a6dc163eb4
BLAKE2b-256 c97728ebbf69772a4341d530831c7a006cdb06877ac23075cb53b0a227df4fe1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 759.1 kB
  • Tags: CPython 3.9, 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-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8a1be016198a03fd7727cdd55998964bfa4e5a6fd9733c8e95830628cef34d29
MD5 ec216e66424a292897cd9ad287f010a7
BLAKE2b-256 7f37adfc48de803bbb52060f5f2d3b25dfd1505fddad12e088b51427085b6246

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 763.2 kB
  • Tags: CPython 3.9, 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-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b24598dc3c2feccbc83b43044be48145a0dc4f9bee49ef923e3d707d54a55d85
MD5 469dd878e94ecb9088045c26b70ad891
BLAKE2b-256 8a55d3af567f1af9c057b30e9867c1e7d9093c1b428f6f9b2dfa0cd800563255

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.17.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 758.1 kB
  • Tags: CPython 3.9, 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-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5ab3b8ff79e0dfc49b68f3c925e8cc735ea95c60efaed84cfe75692dffcaac2a
MD5 3fbc448526e71b8ceb9e4e74ad0970df
BLAKE2b-256 cd84131b4a57fb964775e7d35ec34769d2da37a66dee9449a1f050392eef3986

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.17.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.17.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.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1175563375d682260f613a96fb7a53dce746ed752bfd924eab61de3bc5bfde34
MD5 ebf0f0e3119142a7a2a26de76cac432c
BLAKE2b-256 1dffda669b2f45e706d51d7346dff8ac5a8fb747e29e11a8bcf01bc3e9f28d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 51e1915761f65f2aaabd0ba691a31d56551d3f19d1263c2d6bf261730603de5f
MD5 9a92dbf4e844e0b1ac4358dfd0a8a860
BLAKE2b-256 0258c4e0aeead0be7ab1bd22212cc026f5f30c5fe050bebdaa62cbe759879875

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bb3ebc86782049f6928dcc583008287cb1c17d463501c94a620f035f5b4fd463
MD5 92d44a43036239a73c654d2e304a9121
BLAKE2b-256 818bdf7479d7cc1a5f7d8f555c64ba6f28d8fffbd8645271dd1b044bc2032ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5376ad67bb30ae910d83affcf997f706d9dee37e8b5dad8b6fedb0626e262d85
MD5 e5337f4a055294b1430fe4f9600f7d9f
BLAKE2b-256 4744ff0c5ee9649339f121582808b6ec6f5e9fc666ae4b72a6831a027e7d9e34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7db10678814cdf7ea39fd308c6f41395cfa7b29d904bcd7895288963d8f892ba
MD5 61b073f5d03873f73df77b6ac85a94df
BLAKE2b-256 7f207303d9f926aa41410691c87404f219ee2125a69cecff272226cddee4f8bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f09645e0ce4e3825fa0baa8254064a716ed0be33f78feeedd4731016cb8aaa17
MD5 6819b6f3b5e0b48a9aa267bf57b97615
BLAKE2b-256 26ab83aeee417fa4618a555a08f9c8e0556974c4f111dd3cca465a86c50291d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.17.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ae22fafca69dd3c78261969e999782ac5fc23b76cf8cccfbc3707982a74cc3d
MD5 6ea861333cfaec2846cf74241751ac00
BLAKE2b-256 f2f4efa4398908a00ec64b66f35cb949fc3bace2919447ce4a5dce5fbe923f0b

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page