Skip to main content

Python driver for MongoDB <http://www.mongodb.org>

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

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]

Documentation

Documentation is available at pymongo.readthedocs.io.

See the contributing guide for how to build the documentation.

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

This version

4.11

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

Uploaded Source

Built Distributions

pymongo-4.11-cp313-cp313t-win_amd64.whl (987.8 kB view details)

Uploaded CPython 3.13t Windows x86-64

pymongo-4.11-cp313-cp313t-win32.whl (959.2 kB view details)

Uploaded CPython 3.13t Windows x86

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

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

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13t macOS 11.0+ ARM64

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

Uploaded CPython 3.13t macOS 10.13+ x86-64

pymongo-4.11-cp313-cp313-win_amd64.whl (932.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymongo-4.11-cp313-cp313-win32.whl (910.3 kB view details)

Uploaded CPython 3.13 Windows x86

pymongo-4.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pymongo-4.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.11-cp313-cp313-macosx_11_0_arm64.whl (949.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pymongo-4.11-cp313-cp313-macosx_10_13_x86_64.whl (949.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pymongo-4.11-cp312-cp312-win_amd64.whl (882.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.11-cp312-cp312-win32.whl (864.0 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

pymongo-4.11-cp312-cp312-macosx_11_0_arm64.whl (895.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.11-cp312-cp312-macosx_10_13_x86_64.whl (895.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pymongo-4.11-cp311-cp311-win_amd64.whl (831.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.11-cp311-cp311-win32.whl (817.6 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.11-cp311-cp311-macosx_11_0_arm64.whl (840.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.11-cp311-cp311-macosx_10_9_x86_64.whl (840.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.11-cp310-cp310-win_amd64.whl (781.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.11-cp310-cp310-win32.whl (772.0 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

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

pymongo-4.11-cp310-cp310-macosx_11_0_arm64.whl (786.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.11-cp310-cp310-macosx_10_9_x86_64.whl (786.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.11-cp39-cp39-win_amd64.whl (731.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.11-cp39-cp39-win32.whl (726.5 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (921.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (920.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (894.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (911.3 kB view details)

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

pymongo-4.11-cp39-cp39-macosx_11_0_arm64.whl (732.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.11-cp39-cp39-macosx_10_9_x86_64.whl (731.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.11.tar.gz
Algorithm Hash digest
SHA256 21b9969e155c4b16a160fbe90c390a07ca7514479af6c3811b1d15ead26e10ba
MD5 0fec3f685c9e0f59e1345309983a36f7
BLAKE2b-256 b43671797b3edfd77f32c79a0ca7e35ec37f0242733224347ed1986d86b12df5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 987.8 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pymongo-4.11-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 488e3440f5bedcbf494fd02c0a433cb5be7e55ba44dc72202813e1007a865e6a
MD5 4a91564c6b24b2a62029e11cfef5e3bc
BLAKE2b-256 540ac20ef65268514be131860e7d70d4f3892114b6a6e2a3a4a56a9f6aff901b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 b7246f2060ba03dcc25ade803bc6a3c39f1cc7db93297875edd251ca8cf5cac7
MD5 d0ff459c9e16009b73b4d6b51eca9489
BLAKE2b-256 6efa76ecd623ce046e44a6025a017e0322fbed7db8be11b1e87d721b3108eb2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7f2309384de675e7e25104fc5947acb65ad3ba69dc8246095d57ff1220dfcbb
MD5 f1a63e9542bc47f2c9ceb699dcb7d010
BLAKE2b-256 48266a29c4f9eb58716d7cb170e6e3628de34774dfad3fdec870bcc41e076b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11-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.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae7f636010ce54885f1ea19c37ea2cb744d976ce689361a776fd0e991d020b81
MD5 e906c134553ad56955a4577a56a15736
BLAKE2b-256 f44bf99c08992aff1acb54836aa7e7e24315f6aa2b91df5a2974d9a7e6fd1fd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17966e98d0350b578a337f053cc541458c296236d4b5b4b8adb76f5e82644fb8
MD5 ae5aa30a0369a59ea7f1ce1f47613aa1
BLAKE2b-256 29d36fa17edadba7fd5f68e823d62d484a3ef5a7d48c224cfff3952343bcc2a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17d4b787afed3163e5faa147b028d8ec7996a5388328499588c5c5858f26ab8a
MD5 d78ed2414300daf88f8ee44522df4823
BLAKE2b-256 ad327bb57a0398174a9807336da529ac8afa8b3e788354bf5cdb40764b420e18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c3b67a2949240d63a0b8b1094e1d2d4b94dedf0317ac6e14164adc9aaf260963
MD5 cb282fbd2d478eb54dc55094e103e15c
BLAKE2b-256 33635f4d8a877d9e754cc05a96961d9d3200f3c61f5bf1fecc20a39ec5e4431f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e5a56a508612c64906d5375ebee413cee2fc432c09abd9cb4d9e23ac8bcdd3a
MD5 265cb9b106a38acaf206d6cfa0fa5a78
BLAKE2b-256 9242fa3de33777f0394eeb505295b64f961ec97f4e733b465a79aed66e0b3d61

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 981ae0caa245bedf9af3af9159ae71b05444e35dd61a0250235b5c58dcd69178
MD5 d9d16d2e14d43c828ed7781a78baa85f
BLAKE2b-256 a6b087011f6427f291f34254f725fda6e8780b4dd18b2af0c0b066094d56bd24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c0ab91c06bf79dd3d3fd5f2a53fe22db8036084ddcfaacd80e83828b6eb4f25
MD5 d3dc804836ccc3c3b3fbf09244418d72
BLAKE2b-256 29db8eb5513aa6754fb91adf3a64a87ae3c6f80474bcbdedd74801d345ff20e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3a7ead31317d3a3eabc17486c75ad109f3d514a702002e52da474b59dd8acce
MD5 b7bdf2d79a1e1e2706b7862fbdda5dc5
BLAKE2b-256 43d13d7a54b5c77789b3f7a5f240dddc4558861cd39bbc890c5b2cd842ab0598

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11-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.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a04f49d6f1fa4f4e6a98ef76b4881b4a9c7decd8a90ee5c9aeff087662e2d8a
MD5 fb1705fdba7eff10fd847b9151c75d30
BLAKE2b-256 b7ea6fec3e6011927c0a6ed863cbfa6f7a33f2c67d8691d78088a04606812ac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4db6f7515f5087ae9deecc3b60d3d8a512b1a0a9bff93113bc9edf20ed29ab9
MD5 4dbd0d1849860c689160fbbce8cc8ed7
BLAKE2b-256 b6f540b0b21b469b555de0d33d4a115bd5bfd9cc8933bb82193fb18b0e6cc240

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d33c80afcbfdd2934917fedfa005251484ca8d98767c74793c35d5f24b8e48f1
MD5 2309c5cb838c86a4420e7f510deecfb9
BLAKE2b-256 561b9150417d1ea05b19447dcb61381a4638db22bbe7616261335b8df60bf317

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74f02b7dbb3b15c2e48c7bb28941f6198dc73ced09683738180a9fdbfc0983b2
MD5 8d94df937b535b949c0475536d3089e3
BLAKE2b-256 3fca45cc3ab47879cc3be19fb7aa675c88127be4198e09626bc4e4a39357cfe4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b7af60e034e04c3206dfbe2a7bbcc46057ca4f9ad8ed66869bf669c02a1e6e99
MD5 5499b842f91cac6dfd9f7ce8d803fbc9
BLAKE2b-256 c90dc9c2d4425d82d4f914f87784bf4369102c3faeee05dfb5b5edf729bad68e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85cfc99af2ae0fb8699e15b1f3479018216eb75d80f0082973a876ecfdf1022e
MD5 4e1213766efb10572ae44566fa9ffe22
BLAKE2b-256 0373e5a8fba8a03df7d4f4223f94507449f075b4c2f239d84302db4dc6f245d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ac81987985275abeb53f5faa5c4a7f7890df9368c0f730fe37460a6301d94d7
MD5 4620e968e73803957287e3cdad917d87
BLAKE2b-256 5051e25c686128abce5b87289056d50d81073470cb59a5f1fd797a136a9c32d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11-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.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b885210269455e05f5704887a4c7b3b99d03c9ab37f320005acc21d1761f1656
MD5 20062ea58626414e48249746ccfc7d6a
BLAKE2b-256 f1563e2af56a53e9d5a98da892a88d5a91ea9a731c6b2d7ec3d6d38947685572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e84e27d6fa4b3e532043daf89d52d2cfbd7b4697b44b86a7b3db8cacdcfcc58c
MD5 6ceef859f185e8ba10c15be91af06a95
BLAKE2b-256 00e3471839c8705ae024d6eb3af65bd2fac85b33561c04048ff846d22d5ed9d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 254aa90fafead13aca8dbcfbc407e2f6f7c125fce726925bd96adc74b6226f9e
MD5 99d51831ab0b996b9068846293ed4562
BLAKE2b-256 cd91d641d3658adec7f40ec661ae1a6f1588d5adcdbab94241fc15582bdf58d1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a308ad2eeaee370b3b4154a82840c8f8f9b18ccc76b71812323d243a7bda98a2
MD5 65c4889ce06c6a4bd9511bd9d18a0b22
BLAKE2b-256 15e5e70d1fbe2a72b7d88d8007ab913abaa267187e71391490ca3975836f0d40

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 64ad12ae8d79f18ec30d807b9b9b9802c30427c39599d8b1833bc00e63f0e4bb
MD5 9a1efe73cd69fa35ee8bb31e3485c1a6
BLAKE2b-256 208312114777ead3ccf71be90d2e14a00aa875d3c5c09e8281581727fd3ea2dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c72165e4ee884c3c9ac85a443f20dd01849c9df26b38ff25b08260330ed78202
MD5 f6fb40605682104d25167fcd957bc847
BLAKE2b-256 10089a445f95c3215bc5fb6f8f977646795c5b4dff7d335da1c02ddb70ceb505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 212f14a882659a45db472f0bc0fdf83c16fad4e7e4d4257187797779c461320e
MD5 72f7a95eb050df3b888c61ec2aeebb79
BLAKE2b-256 3653fc39f5d07e079d73f653454b6f733a9370061f291f39ef8ff86b99902b2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11-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.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bedcf4a602042cb2c19ae3ee450fbdd5832095ae5b563e004f7c0d307a22c9e1
MD5 dc29b23f50c47aeaa38c9b15e6bbd759
BLAKE2b-256 2dc7fdf53938b25ffc9120ef71181a64307b45aa46ff0cbb306bb9a993f7d94d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f300d1811bd33940b2dd1907dbe2b4ae473003a384d6a764babb3ea5a4edede4
MD5 5b4dd1b7339cebea4669d669bd331287
BLAKE2b-256 2e877970ccc9524e8e44829668d427b1a3bad1c13c7172b8972bbb8fb7f72bb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0197fe47e31bee488e82e7ab73e6a351a191bbd6e25cf4a380622e4b1ffcd143
MD5 9f80f5ace3ca2d97e93fe80447245d2a
BLAKE2b-256 0acc9da39b9a2166889af193295ffb3c12d603a0b1fcae648ad158899bd5cb11

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 06e82968ea031aebc18820898b102efed1ea8dc21b51eff2a81dc9ba4191fa6b
MD5 36343c69c3d026a3a3421f864651f974
BLAKE2b-256 00b3f7faac25941de357a40d49bf01f4d2f2fd44d4deb0d180439415dba6a5a6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ee3cc9bce848a1024d1c96717540f3f30cba885df9610be70c0653764e30ae6e
MD5 47d7e05a871c1b4211d1abd5c83d5039
BLAKE2b-256 c08cd5f3f9e4c71cfb34934a35955bc58c588e002a47b2ddd3ba852c18d1ad7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf0a36fae1187fc2bdf3c527dc68c6bfd7c89726fbbf3215460b82e28bd8b81e
MD5 27a219de5e10db2caae6ce1112dde3e6
BLAKE2b-256 299228a8573a839db64ff38db4c10a2c88ae87f636da2fa609758c2559a657f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e43b0533f291a8883e52fd7a8919353ae7038d50ef17873983877c2f6b76330e
MD5 64f7ab6a09e8ce3729901eaf9779c500
BLAKE2b-256 db2dcfaf340e7c2a7599901bb9277552884a7b73894932a4c8114e3e57abbaa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11-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.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff5176a083252a769e5bfb1a950d0e37da585c313e1a4af98903e22e7cf4c475
MD5 eabaa3a6fd36b91234444e691eb8f11f
BLAKE2b-256 279c83346fed0ef5918bf403c5079caa55490dd758b31a05414bd29d4ee1dc7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4878e92ae255a05756399a4e2b428f0fd3529561eacd9f4781a70ad5311397e
MD5 bb00037f28975cd9ac069b431498102b
BLAKE2b-256 8bfafcd0073e9d6a326201c1c791c1c1fba03cf4811ca1c01101bf741c5a1804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1971039a8e3aab139e0382b26a9670cd34f43c5301da267360b9a640b637d09b
MD5 da48e9d50db76d5cb05b3da4d0bab78a
BLAKE2b-256 e559effb3b9f3b640f63e498664d21df9fcf6f094e603b6f993ab5399ed1882f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bb3ce0ce49cfe5c31db046d567403adb2d158459cf10d7c71f6d72f2324c900a
MD5 975d8101926dac7db4f3c99f0d89eb0f
BLAKE2b-256 446025b0aafc13999628d959f8efae59f4a04b338fc8b3b914dc0807aae23a12

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4a275ea70f597d3fd77bdc83054307a65749b2c669bc5045cb4620930eed596
MD5 ac7b29a5b1ff6cd56de6b7290d49a987
BLAKE2b-256 2061586ffde8f390ffec38c0ab748884fc8c6f64ef70012d1f3f18a0b3474176

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cf9d18444259d86cd7028ac428f4fe7fbdefa3450575126ad2ee4447db0f52f
MD5 efc2affa9026288e86c3303c06b92b14
BLAKE2b-256 6667abb2951d2e8ea4271764d83b30b1181ef3273d335e89ff1a404996c8fac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c7e5e500cc408f7f2aa38a4a6ed96d78a4c4cce3bcc6f1a55113f0b9d7823dd
MD5 144811aaf32ad15910f5c2eabc8b4196
BLAKE2b-256 aa578a4f2d95cbc3b2c6bc5b0a99211e74be180ec3a3bde28a9a3b29cf1ded3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11-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.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 314648ec4d5eaa755233343d6d110348371988257de35f5a84667b709262deab
MD5 bb45efb998b34d42346f96e41b07e3d1
BLAKE2b-256 da5a38bcf31a750d30ca426773643845743343bc4703afb243af144d3e9dd335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 38f777f5e43f3acd651a79aaf95abf29e8e7f85429a12ce32c4b7f2f877b2200
MD5 7973a8cfd03e9bfea6423f7fbbf54025
BLAKE2b-256 8ab5232ddd3a56f6c3dddeb64f40e3c02fc5e5f76e4e6fb38056442d502177a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec86da9ce746de890b8d470a1f12f3d2634786fee002a4c56bdbbfd59e23f1f7
MD5 3bd831bc85e241621be6a516951d9b16
BLAKE2b-256 81fd7a935bf289399bf03e36340fb5db4dd3b872c4aab002139a9019bca6e6ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5837ee73ffa4a943360320d7b9b917da2752a4cb536e23a6eaca418c1c64f60a
MD5 895381a7d5cd55ffa13d62eac8e8f96e
BLAKE2b-256 c4865214580928027765074280bc9b1fa97e7b89a5235b165000d23a3ca9369e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8436f90f26379c167d47b61ac78c48224af98f3136ece380b74158cbef2ad6a7
MD5 132bb57bb8bd75da183e6ee8e8bb7754
BLAKE2b-256 7e6fe5bb9a06f8ee15e2b9e050acf898be1a74b4137921e8fdc40271215c83a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page