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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pymongo-4.15.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymongo-4.15.3-cp314-cp314t-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pymongo-4.15.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymongo-4.15.3-cp314-cp314-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pymongo-4.15.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (920.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.15.3-cp312-cp312-macosx_10_13_x86_64.whl (921.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pymongo-4.15.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (866.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pymongo-4.15.3-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.3-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.3-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.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (757.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.15.3-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.3.tar.gz.

File metadata

  • Download URL: pymongo-4.15.3.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.3.tar.gz
Algorithm Hash digest
SHA256 7a981271347623b5319932796690c2d301668ac3a1965974ac9f5c3b8a22cea5
MD5 0e92277d6aa968151038f08d22c47816
BLAKE2b-256 9d7ba709c85dc716eb85b69f71a4bb375cf1e72758a7e872103f27551243319c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 47ffb068e16ae5e43580d5c4e3b9437f05414ea80c32a1e5cac44a835859c259
MD5 c4bdb0a0676f0419f5e4dc95273b5429
BLAKE2b-256 39312bb2003bb978eb25dfef7b5f98e1c2d4a86e973e63b367cc508a9308d31c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fae552767d8e5153ed498f1bca92d905d0d46311d831eefb0f06de38f7695c95
MD5 5660d70390e4d18be1915664a8aedf68
BLAKE2b-256 70c8bc64321711e19bd48ea3371f0082f10295c433833245d73e7606d3b9afbe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e7cde58ef6470c0da922b65e885fb1ffe04deef81e526bd5dea429290fa358ca
MD5 dfe364a6a11aed323f611b78c674289d
BLAKE2b-256 5bfe7a6a6b331d9f2024ab171028ab53d5d9026959b1d713fe170be591a4d9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b03db2fe37c950aff94b29ded5c349b23729bccd90a0a5907bbf807d8c77298
MD5 89ca2e6f2595b6e6e73055d717d6e50e
BLAKE2b-256 38fe043a9aac7b3fba5b8e216f48359bd18fdbe46a4d93b081786f773b25e997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cfa4a0a0f024a0336640e1201994e780a17bda5e6a7c0b4d23841eb9152e868b
MD5 f260a72ec7056b0e759cac36288f7e3b
BLAKE2b-256 c9a2112d8d3882d6e842f501e166fbe08dfc2bc9a35f8773cbcaa804f7991043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 446417a34ff6c2411ce3809e17ce9a67269c9f1cb4966b01e49e0c590cc3c6b3
MD5 9ac444b96c483d7353d9f50363594ae8
BLAKE2b-256 1098baf0d1f8016087500899cc4ae14e591f29b016c643e99ab332fcafe6f7bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f6feb678f26171f2a6b2cbb340949889154c7067972bd4cc129b62161474f08
MD5 b8475e44632ced33718cf4630cfd7d59
BLAKE2b-256 938f66a7e12b874f41eb205f352b3a719e5a964b5ba103996f6ac45e80560111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7dd2a49f088890ca08930bbf96121443b48e26b02b84ba0a3e1ae2bf2c5a9b48
MD5 098e867d0319e014c5aa728f7910c23f
BLAKE2b-256 55fdc5da8619beca207d7e6231f24ed269cb537c5311dad59fd9f2ef7d43204a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 390c4954c774eda280898e73aea36482bf20cba3ecb958dbb86d6a68b9ecdd68
MD5 819f60cc37383d2c04f3e253d2da890f
BLAKE2b-256 92b26d17d279cdd293eeeb0c9d5baeb4f8cdebb45354fd81cfcef2d1c69303ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ffe217d2502f3fba4e2b0dc015ce3b34f157b66dfe96835aa64432e909dd0d95
MD5 acd6b943fa769bfcaa0470958df2a94f
BLAKE2b-256 ad3137c76607a4f793f4491611741fa7a7c4238b956f48c4a9505cea0b5cf7ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ff99864085d2c7f4bb672c7167680ceb7d273e9a93c1a8074c986a36dbb71cc6
MD5 eec8feb96976d720bde61fa375ccfd67
BLAKE2b-256 949f1097c6824fa50a4ffb11ba5194d2a9ef68d5509dd342e32ddb697d2efe4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9df2db6bd91b07400879b6ec89827004c0c2b55fc606bb62db93cafb7677c340
MD5 c034a47e91cc64018d603a4633e93625
BLAKE2b-256 98b514aa417a44ea86d4c31de83b26f6e6793f736cd60e7e7fda289ce5184bdf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3561fa96c3123275ec5ccf919e595547e100c412ec0894e954aa0da93ecfdb9e
MD5 6da24629e997ca917edcb6058c56a0cd
BLAKE2b-256 12c42e1a10b1e9bca9c106f2dc1b89d4ad70c63d387c194b3a1bfcca552b5a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d4b01a48369ea6d5bc83fea535f56279f806aa3e4991189f0477696dd736289
MD5 c276c9463f28ac143fe5e610faf2d34c
BLAKE2b-256 17edfe46ff9adfa6dc11ad2e0694503adfc98f40583cfcc6db4dbaf582f0e357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e84dec392cf5f72d365e0aac73f627b0a3170193ebb038c3f7e7df11b7983ee7
MD5 e797d0788e189d19f75540772ff88a9c
BLAKE2b-256 216d2dfaed2ae66304ab842d56ed9a1bd2706ca0ecf97975b328a5eeceb2a4c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7c0fd3de3a12ff0a8113a3f64cedb01f87397ab8eaaffa88d7f18ca66cd39385
MD5 32feb203a32b9b6d1b01fa1e87cc65e3
BLAKE2b-256 0f70bf3c18b5d0cae0b9714158b210b07b5891a875eb1c503271cfe045942fd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2d4ca446348d850ac4a5c3dc603485640ae2e7805dbb90765c3ba7d79129b37
MD5 2f9dc0f0c135bb063ecf14b4da89f5d4
BLAKE2b-256 c24012703964305216c155284100124222eaa955300a07d426c6e0ba3c9cbade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2c96dde79bdccd167b930a709875b0cd4321ac32641a490aebfa10bdcd0aa99b
MD5 17885e1010fa71f45d1646c87d8d1a16
BLAKE2b-256 bb9cd9cf8d8a181f96877bca7bdec3e6ce135879d5e3d78694ea465833c53a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f681722c9f27e86c49c2e8a838e61b6ecf2285945fd1798bd01458134257834
MD5 49a4be1b7541f4123e1f8b39d0c99e02
BLAKE2b-256 641091fd7791425ed3b56cbece6c23a36fb2696706a695655d8ea829e5e23c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.3-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dcff15b9157c16bc796765d4d3d151df669322acfb0357e4c3ccd056153f0ff4
MD5 d9c5a1364ecd7bdd134a29b008c46a4c
BLAKE2b-256 e7a3d8aaf9c243ce1319bd2498004a9acccfcfb35a3ef9851abb856993d95255

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fb384623ece34db78d445dd578a52d28b74e8319f4d9535fbaff79d0eae82b3d
MD5 0af646486773f22c11a485021753cb22
BLAKE2b-256 487c42f0b6997324023e94939f8f32b9a8dd928499f4b5d7b4412905368686b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52f40c4b8c00bc53d4e357fe0de13d031c4cddb5d201e1a027db437e8d2887f8
MD5 090d2b7b2ea2e85c0e7cafd0f83673fe
BLAKE2b-256 80f35ca27e1765fa698c677771a1c0e042ef193e207c15f5d32a21fa5b13d8c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d66da207ccb0d68c5792eaaac984a0d9c6c8ec609c6bcfa11193a35200dc5992
MD5 434765331eb28b3381fc727d4acf9d58
BLAKE2b-256 6e7b365ac821aefad7e8d36a4bc472a94429449aade1ccb7805d9ca754df5081

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9897a837677e3814873d0572f7e5d53c23ce18e274f3b5b87f05fb6eea22615b
MD5 a54693f9479060d88d8c999cac134bdf
BLAKE2b-256 d6a3820772c0b2bbb671f253cfb0bede4cf694a38fb38134f3993d491e23ec11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 77353978be9fc9e5fe56369682efed0aac5f92a2a1570704d62b62a3c9e1a24f
MD5 3de75df3314cadf8691683e40d191c71
BLAKE2b-256 ffd5e9ff16aa57f671349134475b904fd431e7b86e152b01a949aef4f254b2d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 76a8d4de8dceb69f6e06736198ff6f7e1149515ef946f192ff2594d2cc98fc53
MD5 dfe46104614f98002a65d0ce6e819333
BLAKE2b-256 479a29e44f3dee68defc56e50ed7c9d3802ebf967ab81fefb175d8d729c0f276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71413cd8f091ae25b1fec3af7c2e531cf9bdb88ce4079470e64835f6a664282a
MD5 aef1c6b7d7eed0add536fa5baa76c765
BLAKE2b-256 ba07094598e403112e2410a3376fb7845c69e2ec2dfc5ab5cc00b29dc2d26559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 97f9babdb98c31676f97d468f7fe2dc49b8a66fb6900effddc4904c1450196c8
MD5 30b563a190883f66e36fb7f756912548
BLAKE2b-256 883322453dbfe11031e89c9cbdfde6405c03960daaf5da1b4dfdd458891846b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09440e78dff397b2f34a624f445ac8eb44c9756a2688b85b3bf344d351d198e1
MD5 bca968d078b3fd05b086b693a0a3815d
BLAKE2b-256 743c6796f653d22be43cc0b13c07dbed84133eebbc334ebed4426459b7250163

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a47a3218f7900f65bf0f36fcd1f2485af4945757360e7e143525db9d715d2010
MD5 eb7ae2bc61ee5613b831848647b4e494
BLAKE2b-256 46a4e1ce9d408a1c1bcb1554ff61251b108e16cefd7db91b33faa2afc92294de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c4fdd8e6eab8ff77c1c8041792b5f760d48508623cd10b50d5639e73f1eec049
MD5 687aa4cfa997cd88b9e58ee393ec5496
BLAKE2b-256 b461d53c17fdfaa9149864ab1fa84436ae218b72c969f00e4c124e017e461ce6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f6b0513e5765fdde39f36e6a29a36c67071122b5efa748940ae51075beb5e4bc
MD5 191e350c6bee3455642d560685a6c6fc
BLAKE2b-256 bebaa8fdc43044408ed769c83108fa569aa52ee87968bdbf1e2ea142b109c268

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b3a0ec660d61efb91c16a5962ec937011fe3572c4338216831f102e53d294e5c
MD5 46e0e3bb6e86fd9987716b9c0831b836
BLAKE2b-256 fe10a63592d1445f894b18d04865c2d4c235e2261f3d63f31f45ba4fe0486ec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b33d59bf6fa1ca1d7d96d4fccff51e41312358194190d53ef70a84c070f5287e
MD5 bde443c21556fbd565ddc18e8e07295c
BLAKE2b-256 75d2927c9b1383c6708fc50c3700ecb1c2876e67dde95ad5fb1d29d04e8ac083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b63bac343b79bd209e830aac1f5d9d552ff415f23a924d3e51abbe3041265436
MD5 ad1178d2449813ef1f068eb3beac1529
BLAKE2b-256 1c3be19a5f2de227ff720bc76c41d166d508e6fbe1096ba1ad18ade43b790b5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 07bcc36d11252f24fe671e7e64044d39a13d997b0502c6401161f28cc144f584
MD5 2006f08b878fd82e6d8c3f4e48aca871
BLAKE2b-256 acfddfd6ddee0330171f2f52f7e5344c02d25d2dd8dfa95ce0e5e413579f52fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de3bc878c3be54ae41c2cabc9e9407549ed4fec41f4e279c04e840dddd7c630c
MD5 9e7d4acadf627c09070ec9e5d7292d55
BLAKE2b-256 0b963d85da60094d2022217f2849e1b61a79af9d51ed8d05455d7413d68ab88e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 959ef69c5e687b6b749fbf2140c7062abdb4804df013ae0507caabf30cba6875
MD5 187498487ef7d31ef9e627c4e1a0453f
BLAKE2b-256 b8a67dc8043a10a1c30153be2d6847ab37911b169d53a6b05d21871b35b3de82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 292fd5a3f045751a823a54cdea75809b2216a62cc5f74a1a96b337db613d46a8
MD5 87e05ee926056861a85b18adef5a9969
BLAKE2b-256 ce0c98864cbfa8fbc954ae7480c91a35f0dc4e3339dab0c55f669e4dbeac808f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bd0497c564b0ae34fb816464ffc09986dd9ca29e2772a0f7af989e472fecc2ad
MD5 5fbd958443b2151f145ae4885ee831a4
BLAKE2b-256 5b927491a2046b41bfd3641da0a23529c88e27eac67c681de3cd9fbef4113d38

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2fd3b99520f2bb013960ac29dece1b43f2f1b6d94351ca33ba1b1211ecf79a09
MD5 fb4ea380fbdc4780c9c26f0bb449d081
BLAKE2b-256 818f64c15df5e87de759412c3b962950561202c9b39e5cc604061e056043e163

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c57dad9f289d72af1d7c47a444c4d9fa401f951cedbbcc54c7dd0c2107d6d786
MD5 cacbfb7ea80cd017adfa2cb56b666b57
BLAKE2b-256 1272e58b9df862edbf238a1d71fa32749a6eaf30a3f60289602681351c29093a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9483521c03f6017336f54445652ead3145154e8d3ea06418e52cea57fee43292
MD5 3ca856e501168e20e462b92cf24ccc40
BLAKE2b-256 a03bf39b721ca0db9f0820e12eeffec84eb87b7502abb13a685226c5434f9618

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1246a82fa6dd73ac2c63aa7e463752d5d1ca91e0c7a23396b78f21273befd3a7
MD5 938db0f0007c974ade092aa57bd8e31b
BLAKE2b-256 340da5271073339ba6fc8a5f4e3a62baaa5dd8bf35246c37b512317e2a22848e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 89e45d7fa987f4e246cdf43ff001e3f911f73eb19ba9dabc2a6d80df5c97883b
MD5 34ff68b8614c02a5b75a99f45f6953f3
BLAKE2b-256 19e252f41de224218dc787b7e1187a1ca1a51946dcb979ee553ec917745ccd8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 21c0a95a4db72562fd0805e2f76496bf432ba2e27a5651f4b9c670466260c258
MD5 58f87098ee9d1ba9b05d169039d9e894
BLAKE2b-256 08583c3ac32b8d6ebb654083d53f58e4621cd4c7f306b3b85acef667b80acf08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d09d895c7f08bcbed4d2e96a00e52e9e545ae5a37b32d2dc10099b205a21fc6d
MD5 2901aad291f324cc3e3aff8a4664611e
BLAKE2b-256 30399905fcb99903de6ac8483114d1c85efe56bc5df735857bdfcc372cf8a3ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fe4bcb8acfb288e238190397d4a699aeb4adb70e8545a6f4e44f99d4e8096ab1
MD5 f67f7a4cc07c7388fe63ae5eb0ff4db7
BLAKE2b-256 6a0b84e119e6bab7b19cf4fa1ebb9b4c29bf6c0e76521ed8221b44e3f94a3a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17d13458baf4a6a9f2e787d95adf8ec50d412accb9926a044bd1c41029c323b2
MD5 8edfe8b7fc016047613f2bedac7bf7df
BLAKE2b-256 8c397f7652f53dd0eb0c4c3420a175183da757e9c53f9a2bf3ebc589758a1b9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39a13d8f7141294404ce46dfbabb2f2d17e9b1192456651ae831fa351f86fbeb
MD5 e5437119ae1f457534d9c54bc1764edd
BLAKE2b-256 73043dbc426c5868961d8308f19750243f8472f587f5f8a5029ce6953ba74b82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 300eaf83ad053e51966be1839324341b08eaf880d3dc63ada7942d5912e09c49
MD5 a7fe8de98ad603d632acf3a0424f9386
BLAKE2b-256 d5b3f136483c3d13224ad0b80ac2b7c8f7adb735a296b5e8c94cfc2415b77d70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8bd6dd736f5d07a825caf52c38916d5452edc0fac7aee43ec67aba6f61c2dbb7
MD5 3e8d9cda60026528500b1e85e6d28fc2
BLAKE2b-256 1cb786563ec80fc41f644c813a3625d8b5672fd1d2b52da53727eca766dfc162

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 90ad56bd1d769d2f44af74f0fd0c276512361644a3c636350447994412cbc9a1
MD5 33ab406a656a1ceb5ef2f4f82e9c6b69
BLAKE2b-256 adc21ace9cf4b88addceb5077e5490238a9e20dc9fef75ae4de146f57f408a06

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45aebbd369ca79b7c46eaea5b04d2e4afca4eda117b68965a07a9da05d774e4d
MD5 db86856c0f591743ee49dffdb1bd34af
BLAKE2b-256 2347763945c63690d5c1a54d1d2ace352ba150b9e49a5cfdf44fb237e092e604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 982107c667921e896292f4be09c057e2f1a40c645c9bfc724af5dd5fb8398094
MD5 f13b8ffeee27f3263e5370f3e78e81c6
BLAKE2b-256 af60b7968e855284bb67d366dfb50b6a9df4f69676fbbae51f3e647d2dcb12eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 82a490f1ade4ec6a72068e3676b04c126e3043e69b38ec474a87c6444cf79098
MD5 459ef9e4ca5eb11e30109f55ac833994
BLAKE2b-256 ba09ffe1a114d7a39f6746c27a6f5a717b1dc5ea763cb0458a9a679142f623aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49fd6e158cf75771b2685a8a221a40ab96010ae34dd116abd06371dc6c38ab60
MD5 1bae797f1af1ff2304b199812a9440c2
BLAKE2b-256 6d27b5f21d9a556e31d083bb17d0c026244a604a96f7bdb277fd48dee99415ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4a0a054e9937ec8fdb465835509b176f6b032851c8648f6a5d1b19932d0eacd6
MD5 56ed2667c8e9980c7f3fa522a0009b6e
BLAKE2b-256 37fb03c3bd14e6eb5236b360cff8598677c4b7b9557eed3021d9b3f6e82de51d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7eb497519f42ac89c30919a51f80e68a070cfc2f3b0543cac74833cd45a6b9c
MD5 41796405b604b135628544a82f5ca068
BLAKE2b-256 11364bd2aa400a64935b59d68d1c35c168bf61613f1f2bb824757079b2415cda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 482ca9b775747562ce1589df10c97a0e62a604ce5addf933e5819dd967c5e23c
MD5 27eb673dadc0501092f4b0d8db89ab48
BLAKE2b-256 94387ba7e7b57ccf2b04b63796c097c35b32339b2cb6e4d851d9dbb84426dc99

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2f3d66f7c495efc3cfffa611b36075efe86da1860a7df75522a6fe499ee10383
MD5 fc37b53a1c581984b151e73ef02996bf
BLAKE2b-256 14fbf7337880c54665068f8a3a14346829c765476ad981ce05d69de16e15840c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5bf879a6ed70264574d4d8fb5a467c2a64dc76ecd72c0cb467c4464f849c8c77
MD5 36904ac3ed4db0752f85bc2f72266e2b
BLAKE2b-256 d0eda6257e6c0d74a5580123dfcb146b9270e1cf754295296c8626d648c4164d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 17fc94d1e067556b122eeb09e25c003268e8c0ea1f2f78e745b33bb59a1209c4
MD5 98b7a75b510bf6ab14310eccdf601a1b
BLAKE2b-256 3406f7800d870339587694c82a535f32cc9764d9d778c6898ce187c485dc5f4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.3-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.3-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.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c85a4c72b7965033f95c94c42dac27d886c01dbc23fe337ccb14f052a0ccc29
MD5 dc08f390eb532ea94ead3678e056a772
BLAKE2b-256 f9e5b7be85a66a720c8886b2d31921dc712ecf4af8a583ddd88febbd1548a0b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5c78237e878e0296130e398151b0d4aa6c9eaf82e38fb6e0aaae2029bc7ef0ce
MD5 372004ee3f6fc1da47c9a634751cb376
BLAKE2b-256 524e713bcad0bcf6cefa180e168d6bfa776b6967cc7158923905bbcfdd8706c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dc583a1130e2516440b93bb2ecb55cfdac6d5373615ae472a9d1f26801f58749
MD5 8a80988ec1c1333704794fdbd6a94c87
BLAKE2b-256 ef189d8d611780263091e55f565bac82f03e9f5d1a29742c30bb9a04037ff420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a054d282dd922ac400b6f47ea3ef58d8b940968d76d855da831dc739b7a04de
MD5 13b5cf32d71d3cd442c996189955985b
BLAKE2b-256 b700e8ee9703c38329204d5ba3ba3272f1c672e246e76593c8cbe213fbdd0b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 86b1b5b63f4355adffc329733733a9b71fdad88f37a9dc41e163aed2130f9abc
MD5 7bbf2534d3c10cea9bb9b437d0250b04
BLAKE2b-256 652d214167c25bbd9e71f81de87706a8a7850cfcf603acca7d890f280ab00945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bc9f99e7702fdb0dcc3ff1dd490adc5d20b3941ad41e58f887d4998b9922a14
MD5 a717d967ab273463a1247b286e6502e9
BLAKE2b-256 036d8c7536a52fd0bd658de3b29862363e3a5b60703fd033539d4550f63e0a26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58d0f4123855f05c0649f9b8ee083acc5b26e7f4afde137cd7b8dc03e9107ff3
MD5 bba3b829af07126421c14cb51abd8d3c
BLAKE2b-256 30809e3418cf7f76e6152af2b1374e1b0a2d45bb7b5258dbeef9e9f81ac9caca

See more details on using hashes here.

Provenance

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