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

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

pymongo-4.11.2-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.11.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pymongo-4.11.2-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.11.2-cp313-cp313t-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pymongo-4.11.2-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.11.2-cp313-cp313-macosx_11_0_arm64.whl (949.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.11.2-cp312-cp312-win_amd64.whl (882.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pymongo-4.11.2-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.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pymongo-4.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pymongo-4.11.2-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.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymongo-4.11.2-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.11.2-cp311-cp311-macosx_11_0_arm64.whl (840.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pymongo-4.11.2-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.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pymongo-4.11.2-cp39-cp39-win32.whl (726.4 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (921.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.11.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (928.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.11.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (937.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (911.2 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.11.2.tar.gz
Algorithm Hash digest
SHA256 d0ee3e0275f67bddcd83b2263818b7c4ae7af1ecafebe7eb7fd16389457ec210
MD5 7285c2e013b893bfd25f78d2e9c827ed
BLAKE2b-256 122f39971830e0a0574ad5b98952428f3f768fad2532eaa8c80e48ca967e5dbc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 54e24645ceeddaa3224909f073e2695ff3e5c393a82c1e16cd46236d2681651f
MD5 343ee0f5ef6f8d96331243cdd1d93d17
BLAKE2b-256 45322dab202425df1329614d4d43cdfb0532b34bf337dd7dfe5f6b6837ed2858

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e04a102ccb4c9f5a6b06108aa5fc26bfe77c18747bf5b0fbd5f4a3a4298ddb53
MD5 b25432d2bbc77199430931967c675447
BLAKE2b-256 4c687d7608673d9d5a267b6f8972875762796fc0ca88c51e8c5a446384b6b146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3410b5ee877430a99ed29b0e2bad8827015d313bbef19dbdba4f470049258d1
MD5 b093fbf171d32b16bec026ab4c11dc7e
BLAKE2b-256 837bef46f621a0b6fd667e45255689d64a7cbfde7e0e0cbfaaac3542ec4546a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11.2-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.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c012d44b841320148095b59e246cc0c8891f3ca125dcfa3cc9d89dc1573948b
MD5 af907e877a25151ba4c15bec60e96327
BLAKE2b-256 8b3399c547a2387432ca63740eafa6a6bef12877838f54291e5a9b11d54737c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.11.2-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.11.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a1cfff63667179d4f165124af5843cfd865bc1e774a2bd76fc56592c5dfe5fa
MD5 dea492308a482cfb725b3accf583aa0b
BLAKE2b-256 60e242554752b8027929cd3ada2b82251521c8347e68a809cda846e310127ac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f28d42f9f6d8a5ae05a62401a9cb7c44c5d448dc58299a0ce657084d070ea5f6
MD5 be5a06ade7d688298772917a97dbad6d
BLAKE2b-256 1eb89e4c0de3e5d20e51a2127b9804112a84e0f57a53f2a59bd147c605966d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36f9a3276dfb28b526eb5ca9511b627788cea6c4c8783a0dc609be1999b3506e
MD5 1f073241731c766f01a1e28af93671d8
BLAKE2b-256 02f0805f281bdf342c9768845ef46aa913a3e41c81ca858f7e9389f8b80b570f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f98a4493a221ee5330dad1721181731f122b7492caac7f56cf7d0a695c88ee2
MD5 6c1267924b57d41f7a12f3cac736f2d7
BLAKE2b-256 43286e5fec4d75db5749a5b0012c6db5689d8eb76651950efef163a950a106b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77c7edf2dc7f0e46a66f440a0d291ae76533a2ead308d176681745b334d714a9
MD5 589e7541354ba937d9d92811b73e319c
BLAKE2b-256 5c6f4d96a522faff16553ca3802a1c193a2b482333ec890ca54872e0cd7669a0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a4ba602980f43aa9998b0b8e77fd907cec9c7a845c385dc4e08a8b5716d2a85f
MD5 59ec71840b98d093bad1a148ad86db69
BLAKE2b-256 1222c01cbe03e05caa960799dee8d3141fbc04f89d28d4ce100a4b9e2a513e68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5da59332ec88ea662c4a9a99f84b322ed6b9d2999bfb947e186936ccae3941be
MD5 cc33501fadab97f6f44fd0d32dac5b2b
BLAKE2b-256 a551aae2d3572d99aa1a7dcc649bc9e621933f75a905ca18825550d83e7e053e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 164865b78bd9e0ec6fdbe2ee58fc1a33666f32f8c455af3c9897c5c58c7b3d00
MD5 b9a20762ccf1cd8517df669bb2984496
BLAKE2b-256 c608cc0ce82c611d71e7c90a81860880a9160bc91c9f748891b8b84d0766b920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63239e2466d8324564cb4725c12fdd2be0ddfa7d250b4d0e41a47cd269c4cc1c
MD5 f8128e8f0ece82c601d41417409c773f
BLAKE2b-256 b55cc7656256f9806bd8008431d7771157353726605ec0c29a461f59fb26439c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0734940f9f347904796a98481fb4100859f121017e68b756e7426b66d8b2e176
MD5 2840cdca7a628d1e807379a8318fc2a0
BLAKE2b-256 9fcd4684821a803f25c72cfc6b816228e6e16aa07c95bd7532e4e095505be271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29fc4707d5f3918c6ee39250439ff41a70d96dc91ae5bfbc1a74bc204775cb82
MD5 2d976a8f59ef17512dadc085d46acda0
BLAKE2b-256 538193b0e2acf8e58f323656f2c1b72224eb0230e0b2cd87ec630d1e2ca17729

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbbc3ba041cf2e3f1f4eac293af15ce91cfbac68540f6b3733b834ad768aa319
MD5 c9e3f9104fa20e7b86f196933a223080
BLAKE2b-256 b017dc8df4d8b461289fa427cce9c7df1afbe6ac22ec95a3c7c87cdfb3427c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57474d83511292e06f2da585fd3a6cb013d1cba6173df30b3658efb46f74d579
MD5 8f379504532ec5bdc6d1aef18fcfeda5
BLAKE2b-256 85f76395948234b80ed52dd733135da09415c9d179edad93fd6cfa189db1f849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 587328d77d03d380342290d6494df6e7becca25c0621c3ad0be41e3ae751540d
MD5 a72a9d71b8615677853929fd5ba014a0
BLAKE2b-256 cad746ab363149a1ed80534f7f64896e3547a7475cade8f8eaa69fc8e81be424

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 882.2 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.11.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9609849dfd00f2c2e3d17403cdce1a0d81494dc5a4d602d6584a0326be0d46c9
MD5 4ac9dc2323c22639336501e67c919fe8
BLAKE2b-256 fac0c8b26a8e516b7765eac3e82174794225e830954276c8e3d92f0f4a9f9428

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d563d16a693c6e38180a54e2a07cb41111422e99267e46304cd6d616a3759d68
MD5 e0854d401d4e2010da376036b3c95c58
BLAKE2b-256 0515198a9f8619c3079c220e25cf67431ad6545d6982440c99da3b9f5772fb75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e75c88f2a765005a3a93fb2367d11451efc90c3a288ade84c247621e3044ff64
MD5 61ca891e6809836fa4bdc0fcb4256a24
BLAKE2b-256 6ea5fb17dabc485d8e870da10ad775e0e702823dba457d373af61848a3d7a19b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bb3de24ec209c44b8b70196252f4294bbf61095747153b0deab358c7085764b
MD5 bc7c648ed5eab7e1306879db1be61f0f
BLAKE2b-256 9d17f64bd5840ee99b8df711b454777203fc772f22a3562f59a31e5b2b38e501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfbfabc46b1bb9253a3916e3c5c5112a0799d2b82bac789528acc579d7294508
MD5 104ae2a501d23cf60bcf2a4789d8a908
BLAKE2b-256 46c51aaf67fa0028d05be2759b630f192e7b1e8c6d1b44a9b48f584dd8146a20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d05014366bea8b6e403591f81f9ef03871bace4802dc7afe7a066836b2f64e50
MD5 d1c25c81a0b9e757dd6284e003c10015
BLAKE2b-256 767bcc0391e3a017507c7d6c92bb74d17f2f529a713019383130eb34158b2932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13a395554584a50dec350f69df0dc240be11d2b59399f1371311d07bb18133b5
MD5 44068a69fc767ae06b7982f0fbe6fd9c
BLAKE2b-256 19883bffbee2932fef49b088f7b22402833e8a7449a62066f0890374e91da3c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b94a9c22b31c158d254ba74ad41f928b0c3a208caac8d1436ddff711459b3cad
MD5 6c4364fc8d8753fb6694ac1139a7900b
BLAKE2b-256 9406adade3e7bdbd9de16553d1eb39542583b373a84dbfa14e80ee3d997532f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b9955ddeffa7b236a985ed9c9ab87ca6c98eb02d7bd5034960f385fbfbdb54a0
MD5 dc6140e3a7d92c8a81c9fcfd03c7bea4
BLAKE2b-256 88205ae870cbda5bf2fb6b0d26f3a63114bf2f29ce557cd168534a4013ee9589

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab4c1dd1970e34d37c8ab22a2c28578cfe694347997d3692b8440541f4798d85
MD5 d3d8ce5ae636cbba5bfc9fe100c33b71
BLAKE2b-256 1fc65b50d1874a06d7d129482ecb2b3ea43d9c594e6d56c7cbcae1e6d3d072d7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ef32b5622dcf7cac2f81af5e14ce9989802bf19b691adb8ad00484e4fa9391c6
MD5 01ba17d3e9f25baba0cfb92ce6e1620f
BLAKE2b-256 b566bcfdba2c5004c5e7737a6d9badf3ca4b4ac086cc090088125be40f0fb7f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cedc2e38e0186676f96e1d76f40aa2cc016f392ed71f0649a67fd2520dcb35b
MD5 dd3b7e64d593992ada44588d0dbb264c
BLAKE2b-256 b00204b8f24d81c762eeb6c805a89b7d48e6e91d6765d8f30fef25ab21a55171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0c6dfa545205547fb9205243a7327de02141c17cc6910544f2805b07ad45a96
MD5 f04d96cdadd67edd346a607119647388
BLAKE2b-256 fb7a66bab3c63f3bb91603ba699fa1faf9c53fd0749790fb434bb358b1609517

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec7c1cfa6dc290f8d7bd85a6ab1e942a2fac4671b2d8c67437fc7c33b2d4e8b4
MD5 9345b06690cdf397dc5f00173f44a74e
BLAKE2b-256 79ce86f7837bd1ad131aae825302a1f97abf5a13d97d2439459fffd63a5e2acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9ace309794cc5ad5be94b873ad17e85dda09c3bb54c150aa71e9c03447d6763
MD5 996d2ab7ce42329f628eaa4fb2e17cad
BLAKE2b-256 7470701159faad3107f9e80f4bfbfb7166d098184c6973271939da65a184a81f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74ebb54f450e557e6f0e950790bab9c9f190243077262e72085ff8feff17a10f
MD5 61090724d55283750fed72ced4eae3fc
BLAKE2b-256 13bb570aec1cefe0e6c46e8380db42ed972e49d6f52db39bcd166370985bc7cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad13aee24d77aef19606eff569bea18124be097a64767ab631e7980f4b3a0a74
MD5 9d30609105c05956b6af239019fc284f
BLAKE2b-256 b212a5ed2e100728192844d3a92b92fa0de3eff57c0463ea912827ab6fc01292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c87ad59bbc88bc41a0396ee87f2d0ad45d23db5649fd0ee2eff6fbc35c046db0
MD5 6c9ff57358aa9e6963fdc8d200d1ecc6
BLAKE2b-256 5462919ef497130f35c925f763c7632ce15a608a6eec7a953b422fc37802b231

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d679e099d15dac7fd25513dd91032869e291abf2bf6fac33494fc973b0e2346
MD5 f746e029e260f12dcf690646323f3017
BLAKE2b-256 20e48e27a0d52e17217b03738ff6390bb9318c2a8b8e39b8bbe269d9d95bcb86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 842de0a38ac2579e1c640564e36749c3b596095e7c8701384a70ed1acf16632b
MD5 6ad2eea2960acfcae7dd5d1c37a8c502
BLAKE2b-256 13237f91d043e15c52801804fbafa5769e4ccc3b3f7c920eec27c50057a2b42f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5848c7180103a7d9bacb32ddf41cd4ec2bfac35f94eaef77d323c8cc8c2ea665
MD5 205f8956d9e9cf304d5e826ca8821ad1
BLAKE2b-256 f1f935df0bd5021d4434bb102ae05f3b0ca9f3c967c2a08f4a88777471a04551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4fca5a81546ab91b7ad0fbab754a6932ffc3240fa8ab06b238a3cb97e1395b2
MD5 67cc298b5fbad495125e47694d8a71b4
BLAKE2b-256 7667b3cd0127ccfa0ad1b555b535b05e6aee75738a9481c69ef30d114f69f18c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ebb30e04c362576351fb34b1360b3fcfa6e2227a4bafa9bab2acba9c705239d
MD5 ab5edd2e07036b876f801bec50b3e469
BLAKE2b-256 ae74ef7b73330f5c292a9b5a25a9932b69d5eaa3b0fbbea0d2230f9c4d4eb886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b08c83538635c04694a22a5b6bf6b8156a3c9bc35bcdfb12de157ad1f0fc4d41
MD5 558d642db5263f20f62e637f77602581
BLAKE2b-256 d0f734f47e6834936362f54b84be40ee26bde60ffb00f74ebf7c0a32c1e57877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81273ed1faf58e89c9e0f6290c8026aa31d8d9e45ea8bf0d96713e0433fd1764
MD5 9c4207309ad55bdb282bd142a20368b4
BLAKE2b-256 19b8ed480bac087aa54511f3e3ee25baeae4ad782ecfe473e5f55fc2f192b14a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 979cc5ea601f1c1c33824bd4550ab4aa71b367cf5206697cc915840cc495dd73
MD5 e4d69f38619977275db9aab1e9954856
BLAKE2b-256 027805a52403d9dc0e8331eb04bc12e0239d105e5c4302154bd457536e44b6e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a5184fd5ff4d96eb7758316646c9cc47ca8b8a8125853a537fe7a47ae50fe51
MD5 5e66bf0e16ec48c3e19e0fe6c5de9d8d
BLAKE2b-256 335f777dd9f3c4452a1e38c3ef47a0518a5d9d0e9ebbfd5f4523e30f15731a76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-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.9

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 84643c86a41bc254466be3be0d85e7bc3f4c9ceb4eca44ee7ac751b12fec4785
MD5 1bd4aaab96b71cbf6dc3e2944951a20a
BLAKE2b-256 804d07631a38f605f36aabcc3c0d1491c529179fa27ac7d62521229b7203e85c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 726.4 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.11.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3481ece566991a796a63bd5ffc3822cc974554485e5790653369e1fe96998b41
MD5 9ea53c8d3c314af26b467dd3761f0a9d
BLAKE2b-256 3ea0aa3857f6f3c8276ffa7853c143e42f24c475c4fe2d4bbc4345792bda6af1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f01c5d7634db67b4e386735edcb7419041ddc3cdaa95dbdb0bbe19fd8f08dda
MD5 284f9627f2aea6c990bab07941586980
BLAKE2b-256 97761df7ad0763e90778ed339f0c0ae562bd122a39237a7dc781707bc79c4611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fea45642c3289304437dd0f459aee47b9dff994f8fff990dd3fd723c0f22caf1
MD5 321b1c92ac17b93248ff4e887380c707
BLAKE2b-256 c35d2bcb23045ba3dbd8079c27678ce4e4f93cde3558b0145171fe7c497b226a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 830eeeb7536b901c40aa20c913d431c1d9d10711ee01692d6fb9e4aa891e8444
MD5 f2d72d2c934422a11b6283cb19d67e25
BLAKE2b-256 0b2f4290dbaa1fd7c4049d2ad247f24d495fd8601d32331fab51724dd8fe2add

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9486db58c8d8048b59baac821885d91316a7219a97da13122142fdad1de916c0
MD5 930e4078311dc664b7a7b9baa7787e42
BLAKE2b-256 13026754c39dbb6fec6e98162f628ca18af6f5bf44f793a746b61903a3db5605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 80b5dc9a8d99d3891cff2664ad21e11bd4d9448a2dd00509bb9c057be31d0a6a
MD5 52583af2d45eb0534ea667547c31e0ba
BLAKE2b-256 5c0a35f4367c5ef168f857e5a93668491a9d566d8af4e3a862d3361ea2cc322e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a3572eb86d55ddbb20134f6c5c2af5aeb05120188ca907596561ffeaa4c2644
MD5 6f584aeba7abb480ae85fe1d0ebf35f3
BLAKE2b-256 7ad24345962c898a9a1c0d61e7d4873d6b25716bdfc5472273b6785589b8b540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db32510aba8968b62531135ff86c689075e3c6d60636636287ff060469226d07
MD5 758d9ff6663b43fb14e4dce039c892f7
BLAKE2b-256 ca2db78b6e51eed7187e6931afd9a8a0fcef4878c02217706b84d43848229af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e26ffb4c05b9abdd9d063020c39dfeef6d6fc79945a606ecd35add528e86bbe
MD5 df1f2c5c7b42428c7574b0d7be22edc8
BLAKE2b-256 f8ecaa23a895cbad0cf2eae1fec14bda084c77a407e2ea821c0a1bd766c140de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8402f5d09540f4a0542624245009f3aec8a9c7d2b7c1a09d6d399a64f6000d5e
MD5 cf12bfaa697e5965192fff2596fdff87
BLAKE2b-256 50e7bbec13ca994965ce149e98bdfbfbb90cffba1b4766a2820ebeb5684efe39

See more details on using hashes here.

Provenance

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

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

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

Supported by

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