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.0.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

pymongo-4.15.0-cp313-cp313t-win_arm64.whl (992.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

pymongo-4.15.0-cp313-cp313t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

pymongo-4.15.0-cp313-cp313t-win32.whl (986.5 kB view details)

Uploaded CPython 3.13tWindows x86

pymongo-4.15.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

pymongo-4.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pymongo-4.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pymongo-4.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pymongo-4.15.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymongo-4.15.0-cp313-cp313t-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pymongo-4.15.0-cp313-cp313t-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

pymongo-4.15.0-cp313-cp313-win_arm64.whl (943.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pymongo-4.15.0-cp313-cp313-win_amd64.whl (961.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.15.0-cp313-cp313-win32.whl (937.3 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pymongo-4.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pymongo-4.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pymongo-4.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

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

pymongo-4.15.0-cp313-cp313-macosx_11_0_arm64.whl (973.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.15.0-cp313-cp313-macosx_10_13_x86_64.whl (973.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.15.0-cp312-cp312-win_arm64.whl (895.6 kB view details)

Uploaded CPython 3.12Windows ARM64

pymongo-4.15.0-cp312-cp312-win_amd64.whl (910.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.15.0-cp312-cp312-win32.whl (890.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pymongo-4.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pymongo-4.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

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

pymongo-4.15.0-cp312-cp312-macosx_11_0_arm64.whl (919.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.15.0-cp312-cp312-macosx_10_13_x86_64.whl (919.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.15.0-cp311-cp311-win_arm64.whl (847.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pymongo-4.15.0-cp311-cp311-win_amd64.whl (858.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.15.0-cp311-cp311-win32.whl (843.7 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymongo-4.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pymongo-4.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymongo-4.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

pymongo-4.15.0-cp311-cp311-macosx_11_0_arm64.whl (865.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.15.0-cp311-cp311-macosx_10_9_x86_64.whl (864.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.15.0-cp310-cp310-win_arm64.whl (800.2 kB view details)

Uploaded CPython 3.10Windows ARM64

pymongo-4.15.0-cp310-cp310-win_amd64.whl (807.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.15.0-cp310-cp310-win32.whl (797.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-4.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

pymongo-4.15.0-cp310-cp310-macosx_11_0_arm64.whl (810.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.15.0-cp310-cp310-macosx_10_9_x86_64.whl (810.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.15.0-cp39-cp39-win_arm64.whl (752.8 kB view details)

Uploaded CPython 3.9Windows ARM64

pymongo-4.15.0-cp39-cp39-win_amd64.whl (756.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.15.0-cp39-cp39-win32.whl (751.5 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (952.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (961.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (943.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (945.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (918.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (935.5 kB view details)

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

pymongo-4.15.0-cp39-cp39-macosx_11_0_arm64.whl (756.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.15.0-cp39-cp39-macosx_10_9_x86_64.whl (756.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.15.0.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.0.tar.gz
Algorithm Hash digest
SHA256 430a6dc088355209e5755f77d85ddea2f1da0bb6123185952a573e7cf25a250a
MD5 26ea87cf3132efbffe765e94892ab087
BLAKE2b-256 37a5e466796ebc3ca04414ace520947bb5af3cef923fc75896fc54051405b68d

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.15.0-cp313-cp313t-win_arm64.whl.

File metadata

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

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 010297ecaebded4d2d759e118319e3b9bdce9d371d00ca9f5e47a58a546748cc
MD5 efabd970bce129902bf43be13378f426
BLAKE2b-256 faa7021c9f65ba92c7ac669a11a8b3c425fe8e8e91c2cc0ead32a6e4024ecdc6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, 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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 195f7fc52fe0f490d677dca5c6ef8d1cbcf68e2f0e42e3c59154fbc6b01342e8
MD5 6cf76c45572ca12c13c686d26e88f8fa
BLAKE2b-256 f651c7ab3d98f817fd426e55a63e7f4bf60437f2440cad8216056e45a8d90e9d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 413154d69cd2bccee5f7cc9af483c99bf37101e2e5e0ae9d494d5f1ff2bc5d2c
MD5 bee031d9c6aad4bbcb36249ead936097
BLAKE2b-256 8f3c39b0cfe424e80937e2e05436f8163591c4b6f70ebddf2bb27895895b6c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313t-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.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f800fc43edf3767ad42764d8eb5af94bfa71a066beb50e99592116c37cdca44e
MD5 f5077a9309337f4a5014901e0eb0465e
BLAKE2b-256 5b2cce5e1abd9d192a8f98d1384dc2dbf6a3f17451b71a0c30238952e8e8ece0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_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.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20a08466c55294db29c2ca2c0fcdcf3f475161571b571804c2db61482eb4fdee
MD5 a67966d3366c2475697b3562ae562341
BLAKE2b-256 fa65067167a9b7dfb3db4f3412d67523027d65f51cbece6f269babf7195cac63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_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.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09fddba097c1a583fb828efd781ea3e0aa806e9a6b672ac8ecb0d8aeec305796
MD5 3f54183c0a3da4555ccc314531905136
BLAKE2b-256 0d2fb3853308fd0c3e2d7728fc2cf9aaf6438d08441266c82ede8b0054d93ee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_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.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e3dcd9bcb818d5be66c3709bba163829e269a5a5395ee5bb2bb1bf1f8dd6225
MD5 37cc105da9ac28530dc11360b4959225
BLAKE2b-256 7dad8b0c0c3edc0e29db1dee8a7ed5fd2a8c4a21b6c32ff76a02acb02ea01158

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_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.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd29cf389258f1c3a4409ab0197977ce92c346d4f3ae63b899834076dd890497
MD5 f77356806fa99c718564cfa7bb91d450
BLAKE2b-256 303e41d44c3541d142bbd31fdd1c70b6661902a65731df951044b8ae22cea742

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71bc5231581374e523ddf4f816821ae905749ded3a905f3d7e1d7ae582b45b28
MD5 7daa744cae4269f96068c3376939bfc9
BLAKE2b-256 40d3a479461547409cafbe16f6d5d17c2909061ef0db7b3c5652dcea35a5259c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f7946cf573f6a2bd9a5e022092007d2fca6832ff2ec865de46347970e3b6cf77
MD5 fde30139f904e2d96e62f32bdda1bcd2
BLAKE2b-256 686be348a0e900900a6aa864a5186027fed08473321d1d104924e49d5bebe955

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.15.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 943.5 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 995b3d2c4363290d63a31d3629911137af37bd37292c6141b7f27f367f07852d
MD5 cca91f64f81202ab3902440c72fe880e
BLAKE2b-256 369bfec37a9ef76ed8bd66be8d08eb1e5a5fd9474b6f3344253ae588dd9d0372

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 961.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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 048e6520f0a5b0ddfc1c7af1e866ad3f0a7b1e8cfc7e32282d4b54a58db4adf8
MD5 c503a065c08040a5749e25c4a98727e6
BLAKE2b-256 4d689ddf20d882508dae1ef5a6199a634221d3062e3458d29311c3834cc9810c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 937.3 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b7280b19fbaf7dbf0b7efa6bd9f29ef3db0eb845558bb5be2a4e4f673c23cc63
MD5 30bc82c09a4e0bc84b8c944fd80012b8
BLAKE2b-256 e9b26533980550af80c869f5adaebfe28fb155f4670b485e1991faa30e803af1

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 176ce2c920a3ef588391f4f2f364bee607692f5dde9093b10f1d45dd4ff84341
MD5 bce77be7538ee90a3b0382a603118482
BLAKE2b-256 5e9f593384f8ab00fcd206222b935bc3b93c3d754662cf94718689b22109e81b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3c62d63270955a5b90e096ef822ff26b07b9e36ad7cd3203a40a26e11acfc76
MD5 db621c9a7c91b22f78ff7a8d294471a6
BLAKE2b-256 02fcc80bc7103d2927217b091adac048788298f5531fa9b203fcd725bbe245e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_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.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9ff919fb4d59f8bc78c7a237e35a6b070574dab9e63e4801398bf49af74a025
MD5 2796bacbcd9506794dd9c560131cefcd
BLAKE2b-256 e3dee6c4706d17a3996c63e76764d8881d199f2cc2f2dd19864667c257e699b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 498971e16a15b6cd03b4b790603172d862c25efa60ac210980f3f68a59cd04a4
MD5 405f893658dd7dd1e9878d00226d7bbd
BLAKE2b-256 a3d7e4f2c10e5524277f9d5248e9b106eb7b38a7e344925228a4dc42e472ef84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b17e4c3fa9538d818bdf68ea1d24c148d2e662e36381eb2b9620036a1dd13352
MD5 997af7ec5c629620db0fea1f16d653f9
BLAKE2b-256 58ec08e49fe72437e03027f3dbf9d6ec635ada713f559801fb06b030b951e541

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45b4e2f43b8e02f444f379ee4e0af8c9704eb8c92af4ae3f0140e1e7183dd911
MD5 ba3936289a8680e70d6a22cd7ba49ad6
BLAKE2b-256 30885f2a4bd5d0e2d37c8f63871be3e60a9ea2cfb6ee997649afd03ef0c22ce6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.15.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ac66f739747b938af5c10a3b7f66cba162703ba34748e91d9e8570e91be6f70f
MD5 f1eb05b820daa91e8212d3e202c197d1
BLAKE2b-256 0b28c0febc9f91801c9d5711599661ddb75bf0df7fe29466b8bec20c9abd7d40

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 895.6 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 00774f378b354f3e50446f9b48d7c3a6361695d7b4adc156cc6970d6c6bed557
MD5 2b7f774a4c5cca3d6a5f028bfa309b67
BLAKE2b-256 2d0cac344fa94d303af61bbad53fcf43a430b9ccac21c65106cfe9ae1ca2986b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 910.0 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 753d74b1d21c912d39654a44ef9d8f09ffda92587e5555ab861459c0beebd9df
MD5 7ba3aa22f0ea36d1962296df6d0d3c22
BLAKE2b-256 4c8d3426711f9f30702bd0a63394b09f71695c4fa69028dfeaa7aeb5c3579d41

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 890.5 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 958aa856a7b53084623a9e01e5f64969cab387461ca99b79a6137283cf413a2a
MD5 b4b01a8ff6452dd932e786bde65f47a8
BLAKE2b-256 dccf25343aef57bf37abdf199672e0fd086ee5f18addb5b3c9af515a69e1d672

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2f13893f0d4e9b5c0e9f63f4538479a904d3d97f0907ea1b6f83bf1bc9b1f84
MD5 8665ce4ced80b45fc1b9384a8cddfe9d
BLAKE2b-256 5b7c3b4c0ef65509129a9426a66447a47816845628e5fd0e067a8c30fdf1ce97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f646f1d5235ccdb9f58b7bc6d12ec15bbd4275ec993b3623e065d85b21d60ab5
MD5 5fc20ed0f30a57709e570db04ffb83ce
BLAKE2b-256 5f5087c7e9901d1183689790abaa58cb6e64da3f9b892bea23453e86aab0ba5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e084bb5a28a1a4887096806ed1d09faedece86098e5bb34ea425326e04393a1d
MD5 0984373ba67a2ebceb463f3bcca9f8e4
BLAKE2b-256 b248156f4fd9078dabc7320aa6bb9ed8c2b890096a3a3acdbf86cbf4c92ab75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5169b10686b43bc1ac437ce8ba3447cccb91181c9d229813d94321b833229230
MD5 e97e885cb1d0095857911c2c74d99fb3
BLAKE2b-256 cbb80cc92fa56f357b3c58293f291fca378b70287ec31e9e01649e43ea0f3e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d77e199cb2eb52e1d2682fdbf6523ab899b6b2211e4486a3dbc1b7efd8c6133
MD5 6b250c0f5f4dce3def4f467e76c103d6
BLAKE2b-256 b36b2d0cfc2e2d099a650a750b0130fc9644af9a5bac4c26a785581cc79be702

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd4a7360dd37e983712fe032eea71e6d59cdfb86e4e171a38425bd0570fef0af
MD5 c7914f7b856cec7918498b4801071d9d
BLAKE2b-256 59374470afa034dd12ec134a358fb863cd8e16f395b2838d7642679299ff63cf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.15.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 614fc7625019b78b19f2e47fc78c2d66f8d266b57aaedcb8044d909b9a48b49c
MD5 d7d8d506ebc89eaf762322c34b369daf
BLAKE2b-256 4707982f2a066c637d488474c60a18de69b9a067598789d093a84dd0ef2f229b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 847.6 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c83f4b65394e5f752c1fd976e5880801e7749efe34f14a18204ad2ccf095ba19
MD5 49527d7b2e7b42b20ac504f04018268c
BLAKE2b-256 0a5d27699b48763b83ab94519606bbe864a4d1672e1245decb5605e484f8c0c0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 858.3 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e37e8b77187aca6b0e3a7bdf8260635d1adc7f6fa3cd2c41a99d3af3e640cda5
MD5 c7d1c419e420d61ced6a9e5ab35a0bed
BLAKE2b-256 fa83ef8ad16e3bbd506cde04bc71e77483bb351918f7d528a0c4cbcc208e9d6a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 843.7 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f9a2d4c01d80fd3186c91fb91d4c9dcd3e7b7e09e093fb958c1b723ccdbf7165
MD5 50bad26e590057629456417d0a34cb74
BLAKE2b-256 4beb7492271003ac637faa30b1f643f58bd966604eebd4f6635a58fcfbe5d83a

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81d9e193fe1fe7fa5fbcad9f6b661139ff51fc04a6eaaf5de8a9ad875cdb0e5e
MD5 c122a04fed77be58bafa8c54ec859daa
BLAKE2b-256 53b69dc4565e9f9eb9edd144663df207296e43019078a782838b288f2e1ac13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a6ecc13da312e727a3e96e478496629ff4c58a7d7695a700bb27c048457b66a
MD5 1d7605c0ccc762e108a8b9fe54e00c9e
BLAKE2b-256 b35a388477bd907198b949b9d308ecd23dfe9981a63ebff2622602b89004f4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 672367016424949ac60215d42970d3c6e9b71c580d33568f9afca1a93d7ce11f
MD5 39d082914e292cef62e758f020699fcc
BLAKE2b-256 0abeb2652dc886dea8b4f807e6e9ba9b6d18034450653e1af926f1a92a2c3356

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9e8618fa198ea1081385dc85d024989f80ca3a6b7dded5b37ff62464fac4b6b
MD5 b3ac6e7ea93f88633d9154e7c5496234
BLAKE2b-256 52fa02b83d3d438aafb4f9fc558b7a878daa862f7e62b36ac44448275ae111aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fb65c581df0996d90698a1c25bb75fb0ede8b1437da76b358bbd08ee1853776
MD5 83b829a7e27598c31dd0c2423b2c0ed9
BLAKE2b-256 4b4706084464096ee1ae9f8c28c716d9f8ff2e13c4a62bb52e76a447ea060dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f178e865855d04cdd65db14990a685312d19e718c39fce5841a389105397d7f
MD5 4e9b408ba6ea0a702025188102a8b275
BLAKE2b-256 04dc44cdf3d0ed04ddb7c939a4fa79da9d284a1bb912d1b65d12c8e717c53a6f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.15.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73933ce0e910236878c3d4620a57263f3010f89c1897b1fbbd0b58735aaa05d7
MD5 f672ca6c97f470cba3e4bac0ee288ab5
BLAKE2b-256 930954902237689eb8e9ece36b187721b036d9ae5155da820226291e47846eee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 800.2 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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d4641611ca16b48d442fb450e802547ebb1c85022c808f71823ef92cb2e3b3d8
MD5 236d1f35cbe95f6aa1223669803c50aa
BLAKE2b-256 eebce01cbfaa49a593365131187fe716bde8ceeb759a497941616c5f59f3f7e3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 807.3 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c07e88e3470455702aeaac872c8c801c1c0aecb9ac6e8ce2b8d1c6650386cd07
MD5 a8cc741c478307b2005f195ba9e02ba9
BLAKE2b-256 a48549dea5a7e939ad19aa30fe9489ac2a81bc62f3ef5477be3a2e60363cdd49

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 797.6 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f926eca9ae3d4d5ba61c47ec6782b4cb97579350fd674a92973a50c40e997af0
MD5 978eb8a5d0a806d9afaee520f74ba4d2
BLAKE2b-256 720b733730bd3fd03a17acb9706e5029b332836a211a34790b594e6dd6420ffa

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d952327504f18d3b77b89c0af564740c74c6dbc7da6fddedb7f1d14282af86d
MD5 03acad0c0055f9873c3d9b2acdb4d4b0
BLAKE2b-256 a05cf91804d4fc730e9ac37e18fb3bacca63a84538810cd341b2a9f8841397d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 530a0cbc1a008fa3218070f9b83e070daff0e7093570b3d819bff0a7b78f4a7c
MD5 8afff48648655f08e611705134966050
BLAKE2b-256 9057704a856837cdd2ffb76115c958fec5752335cd61fa6fa81ec074754c352c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce5563232c675fe09bc9f0b249e55008d184d9c1c04c6a15715a515601c2d988
MD5 1f4a27effb394c1f44c9af63b048ec51
BLAKE2b-256 8f7b367d56463ef23c2a8bd6ef46fdcd8b7d79f29b2c4129b50fb0d93f534c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec783ff522ef364b38d0a529c959ec16035b6a9404d979de0cac1d9e44df2ebc
MD5 34cc924ca09ae04f8ac0e71b4d4520c5
BLAKE2b-256 efd03481f3271e4a8b788ffc3375233689f366c8827f24ecbeae0422afe88b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ec4f54835c082fbd0a8463f70a12627e6bdae43117942efbc93fc48464737f8
MD5 dc64cd5e2a88e80ed67078dc6b7877b5
BLAKE2b-256 879bb8fe14d1f2ec780f85eff98a86586673c9f2dd7448962a2df0e0bfac4980

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdaf7fff3ae012ce365b4c1e50e671cf3f8625c5173a293b10f1ff54554e8b84
MD5 03c73e00e7fa1fba2c811ef26ad07682
BLAKE2b-256 947acd096c80fa4dc266df909a195e31ea0df4caa2c992999acd7f37db53d3d6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.15.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf49cf9be05aeea81d1cd74f028bf6dad4d3028524a8534f7c62b29acf25bc86
MD5 18db9b009307a16a46a63f33fba07a84
BLAKE2b-256 252777e64135cfcbbb8ac4597edba4453170afb93e0fc4d24dcfcbd599797614

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 752.8 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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e544a4881f44d4a820002540902e31a3e6f2b913d8c1acda8a667a12879c870e
MD5 6f9ee066048e739d15872c27f9230ecb
BLAKE2b-256 a4169689000cf59c43fa4e295f1c5b14e75005eebf849a6c2f0b4318c7cb2c02

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 756.4 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b63bef3ee09380e8305ee7cd9add29715aaeaa3797aee60aaca6334a9fc6e018
MD5 5aa95f3c35d1689e877601a11ff06dd6
BLAKE2b-256 4bb6499f70b7cd74d9826e2f2d357caac71676b42727e25454b01d657ef4e497

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.15.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 751.5 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 831fca32b5e374942329ea30e5a99e645574df9659167aaf66b9be4bdce2bb68
MD5 13dfdc3b04e30ad9e37f58bb02c9f02c
BLAKE2b-256 aab2330f71c3254bb1ecc16e92545b7dcc950591db9d067d1dd0585d4174f296

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46c4d590195604ae1d14027b50ad387238e5776d87ba24d6d0c9bff5eca00379
MD5 09f2495b4efaf96f4d31a762e7e3a9e1
BLAKE2b-256 bb1dc8cfc26f8d8461cc64cc84df48940c3722242d60cbc7a51004417595eff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3781e7f3635c9322295d6f4bc47247c0bdf7d1b735b27ec501e4775a347f177a
MD5 ef7746f382697d559322f8b443bf873a
BLAKE2b-256 292bcc21589e813ad5566c09bfa9f513110d8b81a9f95dbf510f1700ae25e6e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_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.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d59b232b24c2d99d31b0182521236d8855f7e2c24e324cdfaad1ec8c231d9f72
MD5 16000e910b3108ea43f27e3e027ff30c
BLAKE2b-256 d06335c66b8a3b59d63921c5c5c16e33dd01a66ff71b2a901d5e4c952be1a9f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fba0a2afc7f3084b77a762ffa117fe10f75becd845198c6c0476c23af133fb8
MD5 d5fcfa8e64aa7d1a82cc7884f77f5dcc
BLAKE2b-256 e68326484a73579682ba30184aaed1b478d3198a4fc0a8372797484197ce455a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1d7f6a0a9b4300e5b854acb88c2014cfb29f98d1ceab3eaa80ca7694fb36443c
MD5 9659279a39b33e38acb9611b43dd95c7
BLAKE2b-256 879f7c5cd374d756a58a847a461d98d16d9a4f76d911cd5a44daf72efcf18b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8f128b0f6fbebd6e752a921c33cc3e2bda48027efd481cefc8932b2ffd87367
MD5 56d596ee032c9504d03cd47d35875792
BLAKE2b-256 8cdfe8e43d9124dbc09b31b5fe0ba456dab966a714ee692c96eceb62a2902e62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11cda43a209eb7eb2d3e6beb8fa4bab39264bde71929f064b6a45fc05e392de2
MD5 8adfa5e7f69d509f7278cee3aa8c7969
BLAKE2b-256 c554e6f541857b79172dd4d153195e01eb8f7980d9d7ea8ef39a850867d749f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f639d91f375f11cb54cc235f61641be207a506e2a4261d3422e219da19079b11
MD5 6109bf816b08800d285a596b1a25c4f1
BLAKE2b-256 78429dd4b5b257e71ed2a3b69f4b092e3fb6ee4666cabd6700694f3467d0a8b2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.15.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e88ce1f22db3ceb9d73e9d5cbf1286ad2136df1aeb7f6c6f77cc8cfcaee49fc
MD5 d35cf53ddbd048644794adec2e52325d
BLAKE2b-256 ea49daaa2e432962dc414f3e017c9b466c3abf878bb0c9cf9fb1be24cf830062

See more details on using hashes here.

Provenance

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

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

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

Supported by

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