Skip to main content

PyMongo - the Official MongoDB Python driver

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status

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.10+.

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 zstandard:

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.15.4.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.15.4-cp314-cp314t-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pymongo-4.15.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

pymongo-4.15.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.7 MB view details)

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

pymongo-4.15.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.7 MB view details)

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

pymongo-4.15.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

pymongo-4.15.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (2.5 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pymongo-4.15.4-cp314-cp314-win32.whl (992.9 kB view details)

Uploaded CPython 3.14Windows x86

pymongo-4.15.4-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.15.4-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.15.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.4 MB view details)

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

pymongo-4.15.4-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.15.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (2.2 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

pymongo-4.15.4-cp313-cp313-win_arm64.whl (944.3 kB view details)

Uploaded CPython 3.13Windows ARM64

pymongo-4.15.4-cp313-cp313-win_amd64.whl (962.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.15.4-cp313-cp313-win32.whl (938.1 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.15.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

pymongo-4.15.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.1 MB view details)

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

pymongo-4.15.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.1 MB view details)

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

pymongo-4.15.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

pymongo-4.15.4-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.15.4-cp313-cp313-macosx_11_0_arm64.whl (975.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.15.4-cp313-cp313-macosx_10_13_x86_64.whl (975.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.15.4-cp312-cp312-win_arm64.whl (896.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pymongo-4.15.4-cp312-cp312-win_amd64.whl (910.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.15.4-cp312-cp312-win32.whl (891.3 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.15.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

pymongo-4.15.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

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

pymongo-4.15.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

pymongo-4.15.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

pymongo-4.15.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.7 MB view details)

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

pymongo-4.15.4-cp312-cp312-macosx_11_0_arm64.whl (920.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.15.4-cp312-cp312-macosx_10_13_x86_64.whl (920.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.15.4-cp311-cp311-win_arm64.whl (848.4 kB view details)

Uploaded CPython 3.11Windows ARM64

pymongo-4.15.4-cp311-cp311-win_amd64.whl (859.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.15.4-cp311-cp311-win32.whl (844.5 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.15.4-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.15.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.5 MB view details)

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

pymongo-4.15.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.5 MB view details)

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

pymongo-4.15.4-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.15.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.4 MB view details)

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

pymongo-4.15.4-cp311-cp311-macosx_11_0_arm64.whl (866.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.15.4-cp311-cp311-macosx_10_9_x86_64.whl (865.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.15.4-cp310-cp310-win_arm64.whl (800.9 kB view details)

Uploaded CPython 3.10Windows ARM64

pymongo-4.15.4-cp310-cp310-win_amd64.whl (808.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.15.4-cp310-cp310-win32.whl (798.3 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.15.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

pymongo-4.15.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.2 MB view details)

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

pymongo-4.15.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

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

pymongo-4.15.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

pymongo-4.15.4-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.15.4-cp310-cp310-macosx_11_0_arm64.whl (811.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.15.4-cp310-cp310-macosx_10_9_x86_64.whl (811.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.15.4-cp39-cp39-win_arm64.whl (753.5 kB view details)

Uploaded CPython 3.9Windows ARM64

pymongo-4.15.4-cp39-cp39-win_amd64.whl (757.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.15.4-cp39-cp39-win32.whl (752.2 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.15.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (950.7 kB view details)

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

pymongo-4.15.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (967.0 kB view details)

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

pymongo-4.15.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (972.0 kB view details)

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

pymongo-4.15.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (952.8 kB view details)

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

pymongo-4.15.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (943.6 kB view details)

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

pymongo-4.15.4-cp39-cp39-macosx_11_0_arm64.whl (757.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.15.4-cp39-cp39-macosx_10_9_x86_64.whl (756.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4.tar.gz
Algorithm Hash digest
SHA256 6ba7cdf46f03f406f77969a8081cfb659af16c0eee26b79a0a14e25f6c00827b
MD5 7e511913ff11534452e5054ba8e183ac
BLAKE2b-256 74816d66e62a5d1c5323dca79e9fb34ac8211df76f6c16625f9499a37b796314

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-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.12.9

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2d921b84c681c5385a6f7ba2b5740cb583544205a00877aad04b5b12ab86ad26
MD5 0dd5b33f62a9443f41ab1f5e1f595bfd
BLAKE2b-256 600fd450350f103db4bb856cb1ee60c8b1fa68d5ac50c846896d74deba3e9950

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-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.12.9

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3fc347ea5eda6c3a7177c3a9e4e9b4e570a444a351effda4a898c2d352a1ccd1
MD5 411a10b07fa0ef4781b0ec2cce11e2a5
BLAKE2b-256 01713fade727cc4c7ac77fe19c4e3a6bbfb66d7f46796108ba106f236c64492f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e1bf4e0689cc48e0cfa6aef17f107c298d8898de0c6e782ea5c98450ae93a62f
MD5 761eaad751299cbf58db1f41d6dddfc8
BLAKE2b-256 c8f729ce41f9e55b1dd912bed39b76e9326e23ff6c097c4a8de88b2c5bcd54e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1d75f5b51304176631c12e5bf47eed021446669e5f99379b76fd2bd3929c1b4
MD5 7a731fde23765001bacb8d0f42b591dc
BLAKE2b-256 d0a3c0ea0da1185d3be4e73923ab3b74f14f424b40f787c710690c83004f147a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 edbff27a56a80b8fe5c0319200c44e63b1349bf20db27d9734ddcf23c0d72b35
MD5 7de23e9c5d7c3646f2602b56cb69a51f
BLAKE2b-256 c7a8b06231d5ea48d0fcc47bf6c2cebfd8dbea3eda1a1d7bf786443cb9ef5b94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d18d89073b5e752391c237d2ee86ceec1e02a4ad764b3029f24419eedd12723e
MD5 b7cb690168dc71a9e467cc46ffcd3a4a
BLAKE2b-256 4a395a3b01f7e5fd464656421246516723c02067e85bbfb52d30da7d79b8336f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41e98a31e79d74e9d78bc1638b71c3a10a910eae7d3318e2ae8587c760931451
MD5 15d62af719f7a635089346ad42ca406e
BLAKE2b-256 f8cd7bd739d04b67c99f00c942465b8ab7659dc2c1ad80108b5f4f74eecdf9f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bd3c7945b8a5563aa3951db26ba534372fba4c781473f5d55ce6340b7523cb0f
MD5 f07eddd30e4a816bf09556ab7443f1a4
BLAKE2b-256 0a8458efbde2b52a577f9162bb9b97605b6669354bb171bc241a0dc2639536d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fd6ba610e5a54090c4055a15f38d19ad8bf11e6bbc5a173e945c755a16db455
MD5 85f2fd4efc180539c901f6a452185d94
BLAKE2b-256 40eeb59cad7d46598d48708bd2a6559ea8b9cbb6fb9665d617b5a52b58de81b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cdfa57760745387cde93615a48f622bf1eeae8ae28103a8a5100b9389eec22f9
MD5 ac60d41f9307079a01ef343782abdf2f
BLAKE2b-256 12e710f3bc034fcec374dc46462b369205527478199a803169cb10e9e4b48c68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-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.12.9

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c689a5d057ef013612b5aa58e6bf52f7fdb186e22039f1a3719985b5d0399932
MD5 b44b7278cd43dc42036506b1a0018bd2
BLAKE2b-256 2b713813d15fa5ce6fb5fb40775bedc95a1970790f5aba968d92b014a796aab6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-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.12.9

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 111d7f65ccbde908546cb36d14e22f12a73a4de236fd056f41ed515d1365f134
MD5 d6db20b347ef7aaff98b63fb980d5938
BLAKE2b-256 f0234ec0f7c9bf3397b6cafaf714f5bfe0a9944e7af088daa01d258eec031118

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 992.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f0907b46df97b01911bf2e10ddbb23c2303629e482d81372031fd7f4313b9013
MD5 e1d69dcd340705ddddfda56141b2abb9
BLAKE2b-256 a036c6609f632bcaffcdf9f7e67cb888402a1df049a7c3ff2f56067a0b451a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11840e9eb5a650ac190f2a3473631073daddbabdbb2779b6709dfddd3ba3b872
MD5 0995c1383beceb22a4cc6b05a0c73ef2
BLAKE2b-256 3193ee9f8a42eed6ecb8dda52e586a470bf88007a298b0f1a2c4ea1ff352af8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e93828768470026099119295c68ed0dbc0a50022558be5e334f6dbda054f1d32
MD5 e1df2619c803b601b6d4bba15e7cd60b
BLAKE2b-256 922b3989960c7de983c5cc05b2d43b26fa560fe9de433ee60b83259d6ee2cde3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c6c21b49c5e021d9ce02cac33525c722d4c6887f7cde19a5a9154f66cb845e84
MD5 40b4f2b9c224390789efb6a90f45f2c8
BLAKE2b-256 516b66b4fe2d3c566ed655d95b1d8947dfea05642b05a285a3081d6cebc4f5da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1aac57614fb86a3fa707af3537c30eda5e7fd1be712c1f723296292ac057afe
MD5 7838227f3eb335d5b692613140950249
BLAKE2b-256 24093a538cb82766ce89559c4ca0d5694f782485080db6a8f628784dc7debba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a9a90d556c2ef1572d2aef525ef19477a82d659d117eb3a51fa99e617d07dc44
MD5 53ab3c87b0b8658e645d5bed268049f5
BLAKE2b-256 50716f37eea22ffa5b136c1ca0a21ba390c273b582d800bc979961fbd46c9bcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68354a77cf78424d27216b1cb7c9b0f67da16aae855045279ba8d73bb61f5ad0
MD5 ea12878346b23437165a0c304c480521
BLAKE2b-256 bb0c0c364db72cd80a503829885643478dd144a8bf05e1e853c89648a06ad34b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 539f9fa5bb04a09fc2965cdcae3fc91d1c6a1f4f1965b34df377bc7119e3d7cd
MD5 c486972928045d4fff7a99a16d342057
BLAKE2b-256 9fe6f315ea84656adcd18d5b5e8b362b47c36bf606843098688cc0809b28c8a8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0255af7d5c23c5e8cb4d9bb12906b142acebab0472117e1d5e3a8e6e689781cb
MD5 4a9244d500d1bcadd526cde1dda50a06
BLAKE2b-256 22239b9255e432df4bc276ecb9bb6e81c3376d8ee2b19de02d3751bb5c4a6fb1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61b0863c7f9b460314db79b7f8541d3b490b453ece49afd56b611b214fc4b3b1
MD5 38d9b2e20e89d1cfd0165977fa88e600
BLAKE2b-256 10ad6e96ccb3b7ab8be2e22b1c50b98aed0cae19253174bca6807fc8fd1ce34c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9c5710ed5f2af95315db0ee8ae02e9ff1e85e7b068c507d980bc24fe9d025257
MD5 e4b9d16bd407c90b42d36fb547b536ab
BLAKE2b-256 b1cd50f49788caa317c7b00ccf0869805cb2b3046c2510f960cb07e8d3a74f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d1a1a0406acd000377f34ae91cdb501fa73601a2d071e4a661e0c862e1b166e
MD5 b581c39bb2b9add8b618470cc9a380a2
BLAKE2b-256 6f9faae8eb4650d9a62f26baca4f4da2a0f5cd1aabcd4229dabc43cd71e09ea2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b60fd8125f52efffd697490b6ccebc6e09d44069ad9c8795df0a684a9a8f4b3c
MD5 9e0d4137898d11152de988ba3df7d6d6
BLAKE2b-256 7dc0692545232a17d5772d15c7e50d54415bdd9b88018e2228607c96766af961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2e41d6650c1cd77a8e7556ad65133455f819f8c8cdce3e9cf4bbf14252b7d805
MD5 444e544b190e98441fbc19bfcc4e8ea8
BLAKE2b-256 2a160e0495b38dd64efbfd6f2eb47535895c8df4a78e384aee78190fe2ecfa84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f53c83c3fd80fdb412ce4177d4f59b70b9bb1add6106877da044cf21e996316b
MD5 7396666d06819f0dfd727ab3e14f5736
BLAKE2b-256 ef967c6b14956ef2ab99600d93b43429387394df6a99f5293cd0371c59a77a02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 78bfe3917d0606b30a91b02ad954c588007f82e2abb2575ac2665259b051a753
MD5 eb2b65632697acbdac22318ddcb1b508
BLAKE2b-256 7c7d037498c1354fae1ce2fc7738c981a7447a5fee021c22e76083540cc1f9d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4690e01d03773f7af21b1a8428029bd534c9fe467c6b594c591d8b992c0a975
MD5 10948cddba6c5cc1608a151d3fcb3d29
BLAKE2b-256 aa6e8f153a6d7eaec9b334975000e16bfd11ec4050e8729d3e2ee67d7022f526

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ff080f23a12c943346e2bba76cf19c3d14fb3625956792aa22b69767bfb36de
MD5 c9c402b6c624a2b6ac867cb753519273
BLAKE2b-256 511009551492e484f7055194d91c071c827fc65261156e4daced35e67e97b893

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 263cfa2731a4bbafdce2cf06cd511eba8957bd601b3cad9b4723f2543d42c730
MD5 d0a1b1e228681ebf3f9a79f43f44eb6c
BLAKE2b-256 418120486a697474b7de25faee91d9c478eb410ae78cb4e50b15000184944a48

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6f43326f36bc540b04f5a7f1aa8be40b112d7fc9f6e785ae3797cd72a804ffdd
MD5 869be0f12ac9cceba4456b151b13aafc
BLAKE2b-256 cfcbcb70455fe2eadf4f6ccd27fe215e342b242e8b53780aeafb96cd1c3bf506

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 39bb3c12c772241778f4d7bf74885782c8d68b309d3c69891fe39c729334adbd
MD5 9150f6d01fdb5539cf971d80027db535
BLAKE2b-256 e78cbee6159b4e434dc0413b399af2bd3795ef7427b2c2fe1b304df250c0a3d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 563e793ad87633e50ad43a8cd2c740fbb17fca4a4637185996575ddbe99960b8
MD5 a88d7c0e32bddbcaed8240f9804327ed
BLAKE2b-256 82dab1a27064404d5081f5391c3c81e4a6904acccb4766598e3aa14399d36feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e799e2cba7fcad5ab29f678784f90b1792fcb6393d571ecbe4c47d2888af30f3
MD5 c53cab3bdfbe9c1decab83a9a5d74091
BLAKE2b-256 35b040ec073ccc2cf95e8743315e6c92a81f37698d2e618c83ec7d9c3b647bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0bd8126a507afa8ce4b96976c8e28402d091c40b7d98e3b5987a371af059d9e7
MD5 5440c2e442893954dfc098ed2120805a
BLAKE2b-256 ff08b7d8e765efa64cddf1844e8b889454542c765f8d119c87a4904f45addc07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f83e8895d42eb51d259694affa9607c4d56e1c784928ccbbac568dc20df86a8
MD5 93ba8bf595d30257f1ceb5df5b6bd701
BLAKE2b-256 425a91bf00e9d30d18b3e8ef3fa222964ba1e073d82c5f38dae027e63d36bcfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1d21998fb9ccb3ea6d59a9f9971591b9efbcfbbe46350f7f8badef9b107707f3
MD5 c1245f7ba77336a0d94df3f80a7ce892
BLAKE2b-256 ff817be727d6172fd80d8dd1c6fedb78675936396d2f2067fab270e443e04621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e12551e28007a341d15ebca5a024ef487edf304d612fba5efa1fd6b4d9a95a9
MD5 82c5ac0a6b35491eeff4694ce612b7da
BLAKE2b-256 9497d212bd8d9106acecf6948cc0a0ed640f58d8afaed427481b9e79db08f45c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ab4eef031e722a8027c338c3d71704a8c85c17c64625d61c6effdf8a893b971
MD5 5f17c68bb1cd192f05db4f9943889fe5
BLAKE2b-256 75bb09176c965d994352efd1407c9139799218f3fe1d18382dff34ef64e0bd22

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 848.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2096964b2b93607ed80a62ac6664396a826b7fe34e2b1eed3f20784681a17827
MD5 5a314c34b80df1bfe08e3dd6e242c651
BLAKE2b-256 d540d5713b1d5e0b10402446632bab6a88918cd13e5fe1fa26beac177eb37dac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 859.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53bfcd8c11086a2457777cb4b1a6588d9dd6af77aeab47e04f2af02e3a077e59
MD5 38c668b91005e74236c175bdb6131f48
BLAKE2b-256 a50d3d009eed6ae045ee4f62877878070a07405af5e368d60a4a35efd177c25b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 844.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f811e93dbcba0c488518ceae7873a40a64b6ad273622a18923ef2442eaab55c
MD5 a0cc2842a851c2ba07411fee3dd5ed8d
BLAKE2b-256 37366b78b105e8e1174ebda592ad31f02cb98ee9bd8bb2eeb621f54e2c714d03

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ab985e61376ae5a04f162fb6bdddaffc7beec883ffbd9d84ea86a71be794d74
MD5 150fa525dd693793a65bf09ca7ebd10c
BLAKE2b-256 1f02e706a63f00542531a4c723258ae3da3439925de02215710a18813fbe1db4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 44d95677aa23fe479bb531b393a4fad0210f808af52e4ab2b79c0b540c828957
MD5 bd67d5542d41995969a65494487addff
BLAKE2b-256 208bcdc129f1bee5595018c52ff81baaec818301e705ee39cf00d9d5f68a3d0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dd8c78c59fd7308239ef9bcafb7cd82f08cbc9466d1cfda22f9025c83468bf6d
MD5 f745d385572f74dc6827a0651a9886f6
BLAKE2b-256 737eb7adba0c8dfc2dced7632c61425a70048bddf953b07bf6232a4ea7f0fb7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad7ff0347e8306fc62f146bdad0635d9eec1d26e246c97c14dd1a189d3480e3f
MD5 0430e036f00f3f04b518b3d63ff976c5
BLAKE2b-256 9fe6eac0b3ca4ea1cd437983f1409cb6260e606cce11ea3cb6f5ccd8629fa5c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 990c4898787e706d0ab59141cf5085c981d89c3f86443cd6597939d9f25dd71d
MD5 18ac2a4de52320c03e5b96b0c182ad64
BLAKE2b-256 0f449d96fa635b838348109f904f558aa6675fdfb0a9265060050d7a92afbf97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7df1fad859c61bdbe0e2a0dec8f5893729d99b4407b88568e0e542d25f383f57
MD5 56251bc889e4a633623e066e2f7e7624
BLAKE2b-256 09d46f4db5b64b0b71f0cbe608a80aea8b2580b5e1db4da1f9a70ae5531e9f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2967bda6ccac75aefad26c4ef295f5054181d69928bb9d1159227d6771e8887
MD5 b4613a3a3d358498ae9b91470e899dd1
BLAKE2b-256 71a4b1a724352ab47a8925f30931a6aa6f905dcf473d8404156ef608ec325fbd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 800.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 abfe72630190c0dc8f2222b02af7c4e5f72809d06b2ccb3f3ca83f6a7b60e302
MD5 515491f280b1fda40b8c9b106bd23ea4
BLAKE2b-256 30d295505fb5a699180a215553f622702464bc47000e5e782cc846098dcdfc37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 808.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 68ea93e7d19d3aa3182a6e41ba68288b9b234a3b0a70b368feb95fff3f94413f
MD5 f8e9bdf40d04c690684fb4bd67fe072b
BLAKE2b-256 b21f78b2d3d7b35284c5da80342ce2b7e4087901ff8fb030eccaa654b5d3d061

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 798.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 20ffcd883b6e187ef878558d0ebf9f09cc46807b6520022592522d3cdd21022d
MD5 131a73efb4b1a8e330c799c3d36497b4
BLAKE2b-256 9d7fd5c975dcbfd339f3cd3eae2055fe6d96fb546508e1954fe263c0304e0317

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1903c0966969cf3e7b30922956bd82eb09e6a3f3d7431a727d12f20104f66d3
MD5 7cb43d70e2e66a5fa9bbb4de1943035a
BLAKE2b-256 ff1752434425cde25e6d0743a6d8af8a8b88ffbd05cce595993facf09a5d0559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 94e50149fb9d982c234d0efa9c0eec4a04db7e82a412d3dae2c4f03a9926360e
MD5 ceed04334d2f99cc532443a12d5a97f2
BLAKE2b-256 189157b4a08b81686e0148a93ecd0149d747a31be82aafa0708143d642662893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 67c3b84a2a0e1794b2fbfe22dc36711a03c6bc147d9d2e0f8072fabed7a65092
MD5 e4fecfee63b2062c81c1319d36543301
BLAKE2b-256 2fff98768d4294f271175aedbad209d748ac769a3f35bee35f8c82b57b03ea4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22e286f5b9c13963bcaf9b9241846d388ac5022225a9e11c5364393a8cc3eb49
MD5 d89e7f2807ebc36b380454c0ba813a5d
BLAKE2b-256 3ee85449663ec341fb83c3e4d51011f65b61de8427620679510cca57386c9446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 eee407bf1058a8f0d5b203028997b42ea6fc80a996537cc2886f89573bc0770f
MD5 efbfb6d487d57b852ce3e72eb62fa890
BLAKE2b-256 e8178c50a695a7029d582da50875085465f01bf83e5146fb7dc3f671168aedb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71a5ab372ebe4e05453bae86a008f6db98b5702df551219fb2f137c394d71c3a
MD5 f2bc7fa6a3623a2cd9674c27a1959a1e
BLAKE2b-256 1faa1d707a836c436af60faa2db6f2706f9e74b5056d0bd77deb243c023b5e7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84c7c7624a1298295487d0dfd8dbec75d14db44c017b5087c7fe7d6996a96e3d
MD5 028cb74d6f17e3b8719583512e6ec632
BLAKE2b-256 5c9e5d6bd240a8d32e088078b37dcfa1579028c51d91168c0e992827ec1e87e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 753.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e6216290982178208b962edc9ba7ebc41b11f276a148ac3b496fc41f86963707
MD5 494df1b6f3e121e4ca911d295144a8a1
BLAKE2b-256 891dd99ab20d2c2fc64fff40885692c4ae81c90e082afda159ba12f9e0dfb939

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 757.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4ea5dc8a0268ea2e12a6fcfc43bb8f3da969deed46734167238884cbb29c2598
MD5 930162737aa2ca02a34a86526594d48d
BLAKE2b-256 370135247521724307981671464a278087d094817e36852fb5f2e391ce2c6f83

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 752.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4eb3c2fea850104c41ce3f1f52f6a70f3d1a6998e9c63c197fcaab08c7c89e22
MD5 f59b83b1900dcc4ec2efdf3f202ab9fd
BLAKE2b-256 f5cea8cf7230ec976d8b8cfee045af8b57ac1297cde899258656639be3f02783

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.4-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.15.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cdab8a71f673b597dbe5cd610913525b59cba34835fc8c6ffb2b62f28028959
MD5 15de8326399b25004721971e5f06bd04
BLAKE2b-256 994609d18fa54688bf1acf1f1e79e3505dc441401b7c02f277d7e66fc63c1416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 649d24ce86f90a8c74897dba35e34c6b86e0d7d7381d7dc18cafbd06dc78fbc3
MD5 9988d349d0c6bc13a6d5cbfe93b22388
BLAKE2b-256 8d95dc5739ccdb448273e1b2648e3d366ce039e9d5c888d927f96b2a93ff7e61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e84c95b185dce012575adc74a18342a2581dc9bb939712125317e03d92148167
MD5 fad75505b60db4bc96fd4d55af31276a
BLAKE2b-256 528aa501f170384045ae9f207ed415e5a48a3cd761f8f43bfca8b9e58bfbea0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9e2f96e7e7a769a7804121c02f3290a39ca4d78a398bc56c6e024728d350897
MD5 53fa9a924e9934856c447d33e20aeb96
BLAKE2b-256 5af27e69601da55807df590a169354a7b02988ed62d995cb8bd8dc729348d9ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 94f8e9ab6954899d60babe48418e41217dc510d6fa4305af7aabee244b2a9882
MD5 5b0a2d00aa81af54792a2eef41f679f6
BLAKE2b-256 ba229f2827057e1e4c49fce155fa4de9354d543ddb87ceb8cdad5b4cc5f7d279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05e0f2ac285e24de802912908d64dfafca8bea5ab1718a88aab0f197b003dc28
MD5 515dc36cb76e985d22bd90befb000124
BLAKE2b-256 cdaa688ab885da63c27a3f71d390357602de216ad25436a52e737f9bfd9a7698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4c44bb6e781373915c56bc88f3b4849137869284e79c08a5b18f4c0d6adfd26
MD5 2f8d3465cb49180a1a711165430a4f91
BLAKE2b-256 c9b246dfa25378aab96f30b9e897479a35da21bb28f27f22a76c8a3b79631d56

See more details on using hashes here.

Provenance

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