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.3.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.3-cp313-cp313t-win_amd64.whl (987.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

pymongo-4.11.3-cp313-cp313t-win32.whl (959.3 kB view details)

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pymongo-4.11.3-cp313-cp313-win32.whl (910.4 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.11.3-cp312-cp312-macosx_10_13_x86_64.whl (895.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pymongo-4.11.3-cp311-cp311-win32.whl (817.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pymongo-4.11.3-cp310-cp310-win32.whl (772.1 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

  • Download URL: pymongo-4.11.3.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.3.tar.gz
Algorithm Hash digest
SHA256 b6f24aec7c0cfcf0ea9f89e92b7d40ba18a1e18c134815758f111ecb0122e61c
MD5 04335d738b3aca0e9790b38c7d275c2d
BLAKE2b-256 dbe6cdb1105c14a86aa2b1663a6cccc6bf54722bb12fb5d479979628142dde42

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.11.3-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.11.3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 987.9 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.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 07d40b831590bc458b624f421849c2b09ad2b9110b956f658b583fe01fe01c01
MD5 eb6968518447efe407459eb00ba5defd
BLAKE2b-256 7d6411d87df61cdca4fef90388af592247e17f3d31b15a909780f186d2739592

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.3-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 959.3 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.3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 45e18bda802d95a2aed88e487f06becc3bd0b22286a25aeca8c46b8c64980dbb
MD5 8288e44b3b09880c26d351fc50650750
BLAKE2b-256 7215c18fcc456fdcb793714776da273fc4cba4579f21818f2219e23ff9512314

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0a91004029d1fc9e66a800e6da4170afaa9b93bcf41299e4b5951b837b3467a
MD5 16372460e73c7fbdd29e1f63ac8cbcb6
BLAKE2b-256 b04d1746ee984b229eddf5f768265b553a90b31b2395fb5ae1d30d28e430a862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e8aa65a9e4a989245198c249816d86cb240221861b748db92b8b3a5356bd6f1
MD5 7938c605445408555c75bd24f47275a5
BLAKE2b-256 5df7ff5399baee5888eb686c1508d28b4e9d82b9da5ca63215f958356dee4016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a434e081017be360595237cd1aeac3d047dd38e8785c549be80748608c1d4ca
MD5 d1e9b4adc584eb1e7346a214be65eff6
BLAKE2b-256 1d06fff82b09382a887dab6207bb23778395c5986a5ddab6f55905ebdd82e10c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2eaa0233858f72074bf0319f5034018092b43f19202bd7ecb822980c35bfd623
MD5 549861cd45c832f3e956365db1ed1d85
BLAKE2b-256 91a9d86844a9aff958c959e84b8223b9d226c3b39a71f2f2fbf2aa3a4a748212

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b992904ac78cb712b42c4b7348974ba1739137c1692cdf8bf75c3eeb22881a4
MD5 619bcdf5d7a7779f60b27a37933a6104
BLAKE2b-256 1cdc5d4154c5baf62af9ffb9391cf41848a87cda97798f92e4336730690be7d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62bcfa88deb4a6152a7c93bedd1a808497f6c2881424ca54c3c81964a51c5040
MD5 5dc75fded9cde6f6b8760078e8d01219
BLAKE2b-256 81884ed3cd03d2f7835393a72ed87f5e9186f6fc54bcb0e9b7f718424c0b5db8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f23f849693e829655f667ea18b87bf34e1395237eb45084f3495317d455beb2
MD5 b2ae568e7af14f3ac0696a910968c0ed
BLAKE2b-256 d3c70a145cc66fc756cea547b948150583357e5518cfa60b3ad0d3266d3ee168

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5b8b7ba9614a081d1f932724b7a6a20847f6c9629420ae81ce827db3b599af2
MD5 d28829ef79fbbc20984d25929ab0b97e
BLAKE2b-256 77f3023f12ee9028f341880016fd6251255bf755f70730440ad11bf745f5f9e4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.11.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 910.4 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 40c55afb34788ae6a6b8c175421fa46a37cfc45de41fe4669d762c3b1bbda48e
MD5 782c271393e2ddc3d10c925677c0472e
BLAKE2b-256 e7ebb1e9cf2e03a47c4f35ffc5db1cb0ed0f92c5fe58c6f5f04d5a2da9d6bb77

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b05e03a327cdef28ec2bb72c974d412d308f5cf867a472ef17f9ac95d18ec05
MD5 6ef3490d537433aeea66e74808945eac
BLAKE2b-256 bec8c3f15c6cc5a9e0a75d18ae86209584cb14fdca017197def9741bff19c151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 051c741586ab6efafe72e027504ac4e5f01c88eceec579e4e1a438a369a61b0c
MD5 79deb4df86b88bb07dc989c7d19f3686
BLAKE2b-256 fcd3cf41e9ce81644de9d8db54cc039823863e7240e021466ae093edc061683a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a29294b508975a5dfd384f4b902cd121dc2b6e5d55ea2be2debffd2a63461cd9
MD5 515395ce28aef0db7e8ad562a368718f
BLAKE2b-256 139ce735715789a876140f453def1b2015948708d224f1728f9b8412b6e495d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3742ffc1951bec1450a5a6a02cfd40ddd4b1c9416b36c70ae439a532e8be0e05
MD5 7e5c9d3d705b80949c02bbba1b40734e
BLAKE2b-256 706d1ddef8b6c6d598fe21c917d93c49a6304611a252a07e98a9b7e70e1b995b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dafeddf1db51df19effd0828ae75492b15d60c7faec388da08f1fe9593c88e7a
MD5 ea7813db712ec6023f24c8a4c6e32779
BLAKE2b-256 1b0d613cd91c736325d05d2d5d389d06ed899bcdce5a265cb486b948729bf1eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8464aff011208cf86eae28f4a3624ebc4a40783634e119b2b35852252b901ef3
MD5 a14392a9b2579bb229d5c53de1f40a48
BLAKE2b-256 679aae232aa9379a9e6cf325facf0f65176d70520d6a16807f4de2e1ccfb76ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e53b98c9700bb69f33a322b648d028bfe223ad135fb04ec48c0226998b80d0e
MD5 fa328166e337ddbac5304bc20ba94a95
BLAKE2b-256 01f119f8a81ca1ef180983b89e24f8003863612aea358a06d7685566ccc18a87

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4673d8ef0c8ef712491a750adf64f7998202a82abd72be5be749749275b3edb
MD5 17c3bcd7ee30e6b3b88d2b1227f0d870
BLAKE2b-256 968a604fab1e1f45deb0dc19e06053369e7db44e3d1359a39e0fe376bdb95b41

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.11.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 33a936d3c1828e4f52bed3dad6191a3618cc28ab056e2770390aec88d9e9f9ea
MD5 ef8b379ca6bf8e773040247ce219e2d5
BLAKE2b-256 074834751291a152e8098b4cf6f467046f00edd71b695d5cf6be1b15778cda63

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73de1b9f416a2662ba95b4b49edc963d47b93760a7e2b561b932c8099d160151
MD5 e03c599b84dabd4b9f0cecac58eb38bf
BLAKE2b-256 d7ce63719be395ec29b8f71fd267014af4957736b5297a1f51f76ef32d05a0cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd3f7bafe441135f58d2b91a312714f423e15fed5afe3854880c8c61ad78d3ce
MD5 0e0235681d358c48a9c2d63f28d32533
BLAKE2b-256 f897bcedba78ddbc1b8837bf556da55eb08a055e93b331722ecd1dad602a3427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14f9e4d2172545798738d27bc6293b972c4f1f98cce248aa56e1e62c4c258ca7
MD5 05059cc39d5d5adc9943786a9dfcb8f4
BLAKE2b-256 9289925b7160c517b66c80d05b36f63d4cc0d0ff23f01b5150b55936b5fab097

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5be1b35c4897626327c4e8bae14655807c2bc710504fa790bc19a72403142264
MD5 98692c6c7d82c676d365daa397defe42
BLAKE2b-256 0ebafe8964ec3f8d7348e9cd6a11864e1e84b2be62ea98ca0ba01a4f5b4d417d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e24268e2d7ae96eab12161985b39e75a75185393134fc671f4bb1a16f50bf6f4
MD5 7643d2b95db893fcc8833f958d47e880
BLAKE2b-256 c136de366cee39e6c2e64d824d1f2e5672381ec766c51224304d1aebf7db3507

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 722f22bf18d208aa752591bde93e018065641711594e7a2fef0432da429264e8
MD5 34b97f10dc80cb6617d9d0a675006eb3
BLAKE2b-256 c6f5287e84ba6c8e34cb13f798e7e859b4dcbc5fab99261f91202a8027f62ba6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5f48b7faf4064e5f484989608a59503b11b7f134ca344635e416b1b12e7dc255
MD5 e44b80440ba2ea212efd75e6452e9a4a
BLAKE2b-256 6dcfc606c9d889d8f34dcf80455e045854ef2fa187c439b22a6d30357790c12a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.11.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c237780760f891cae79abbfc52fda55b584492d5d9452762040aadb2c64ac691
MD5 1db52c873144edc8aeb3ef4e9d8f2e72
BLAKE2b-256 e1f3073f763f6673ecfb33c13568037cdba499284758cfa54c556cac8a406cb7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 be89776c5b8272437a85c904d45e0f1bbc0f21bf11688341938380843dd7fe5f
MD5 2980b3af8c61e52528f03bb0248d6993
BLAKE2b-256 2b6007f61ad5ddd39c4d52466ac1ce089c0c8c3d337145efcadbfa61072b1913

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f2f0c3ab8284e0e2674367fa47774411212c86482bbbe78e8ae9fb223b8f6ee
MD5 043da9e2ca7b5fe4d2d92bfd51206c5f
BLAKE2b-256 ce42d0ac7f445edd6abf5c7197ad83d9902ad1e8f4be767af257bd892684560a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0992917ed259f5ca3506ec8009e7c82d398737a4230a607bf44d102cae31e1d6
MD5 4c7fe4d767424025cada50bde1bd48fd
BLAKE2b-256 4ba8fde60995524f5b2794bdf07cad98f5b369a3cfa7e90b6ec081fc57d3b5ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65e8a397b03156880a099d55067daa1580a5333aaf4da3b0313bd7e1731e408f
MD5 256a40e9f453332bcdb56a734a5ec7be
BLAKE2b-256 33974882a0b6be225d0358b431e6d0fe70fba368b2cedabf38c005f2a73917c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3f20467d695f49ce4c2d6cb87de458ebb3d098cbc951834a74f36a2e992a6bb
MD5 d155335d66992086c16d80dbd346eebe
BLAKE2b-256 d44bd1378adbac16829745e57781b140ab7cdbd1046a18cdb796e3adf280c963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2240126683f55160f83f587d76955ad1e419a72d5c09539a509bd9d1e20bd53
MD5 07f54ab87fab66545fdb7b1ec302233e
BLAKE2b-256 e702dd67685b67f7408ed72d801b268988986343208f712b0e90c639358b2d19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 505fb3facf54623b45c96e8e6ad6516f58bb8069f9456e1d7c0abdfdb6929c21
MD5 baeb450ba65966bda03f70e985e0bb1f
BLAKE2b-256 46dbbfe487b1b1b6c3e86b8152845550d7db15476c12516f5093ec122d840602

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31b5ad4ce148b201fa8426d0767517dc68424c3380ef4a981038d4d4350f10ee
MD5 ce8f66e0f30c7f390085312afe7111e1
BLAKE2b-256 7b9a11d68ecb0260454e46404302c5a1cb16d93c0d9ad0c8a7bc4df1859f95a7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.11.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07231d0bac54e32503507777719dd05ca63bc68896e64ea852edde2f1986b868
MD5 9ba490dc973dd6fed639681614110f53
BLAKE2b-256 9255fd9fa9d0f296793944c615f2bb0a292168050d374e7f37685f57ac79c9c7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.11.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 772.1 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 84b9300ed411fef776c60feab40f3ee03db5d0ac8921285c6e03a3e27efa2c20
MD5 5f6a354a1779636e674bd7bcd7f02d77
BLAKE2b-256 9615ad8464d6084a8c06fc9937277b527c6f6782877864b5a994cd86e3a85ed9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f618bd6ed5c3c08b350b157b1d9066d3d389785b7359d2b7b7d82ca4083595d3
MD5 a1510371cbc5a56e019304826ce50797
BLAKE2b-256 6857e3d5508fa8ff8a536f1dfbcefe4ac18d954c0b8d67eb05b8aadddb0b51b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9120e25ac468fda3e3a1749695e0c5e52ff2294334fcc81e70ccb65c897bb58
MD5 40ea8ed3a0712223a869fd7c19a12d43
BLAKE2b-256 dc6e440d56354e95352ac1dc5f1ab27d5e45d4d1c6e1d2cf174727061ddddb85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1a16ec731b42f6b2b4f1aa3a94e74ff2722aacf691922a2e8e607b7f6b8d9f1
MD5 e87a5040ac841539aec9bb32098cd44f
BLAKE2b-256 ad7781fe752967fa1ed7adc5b75d7bdf7c15546f0734c7c21d1924b564ff421d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9047ecb3bc47c43ada7d6f98baf8060c637b1e880c803a2bbd1dc63b49d2f92
MD5 5f4d2db662a98b73134ea94bef780ff1
BLAKE2b-256 b091f48cbcc9cff5196a82a9ca88d7a8f721bae2a3f9b8afddfe346f8659fff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98017f006e047f5ed6c99c2cb1cac71534f0e11862beeff4d0bc9227189bedcd
MD5 ad793d39cdb6e334e97ac38e5a08d2dc
BLAKE2b-256 119e60f40c5b6dd1f710208dc9eb72755698df607eb20429eec3e65009e73df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c9cbe81184ec81ad8c76ccedbf5b743639448008d68f51f9a3c8a9abe6d9a46
MD5 0f286708fc94007263aad79e1532e6c2
BLAKE2b-256 ef0ce810c2a98a6a4dd3374400fce1744e4594075091b3067fb440f855f3eac9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78f19598246dd61ba2a4fc4dddfa6a4f9af704fff7d81cb4fe0d02c7b17b1f68
MD5 2141f097274d24761698505617254f78
BLAKE2b-256 21dd61e6a43442b13533ddf0e798e05206a7ebc4ebcb03a3e6c1aace73a94d19

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.11.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a19f186455e4b3af1e11ee877346418d18303800ecc688ef732b5725c2795f13
MD5 fcc01d3e95512e0aae04fa2522f47ec2
BLAKE2b-256 eba62711b906fdb42ea0f74568a8d74cc8e79dc4103f72bb29aecd970e65e9ad

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e1872a33f1d4266c14fae1dc4744b955d0ef5d6fad87cc72141d04d8c97245dc
MD5 fee9820917ad2867e6a643d3511fa83c
BLAKE2b-256 2f7706d611413ab855630c98a0a7e661fb13afaaae009ceaa7bb1637708c61c6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 730fe9a6c432669fa69af0905a7a4835e5a3752363b2ae3b34007919003394cd
MD5 9e1ae4f239bac1a2300c274a7757965f
BLAKE2b-256 e2797867221913a4a0e9ec67b3d57869c3daaf4985ccb6595b55917000a59eb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afc7d1d2bd1997bb42fdba8a5a104198e4ff7990f096ac90353dcb87c69bb57f
MD5 2d99068c17dbd9006820b0213c227bb5
BLAKE2b-256 5630a49337dd636153c09df42fc8cdf4562c1e425d34dbf91bdd655fe9cf44c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1b943d1b13f1232cb92762c82a5154f02b01234db8d632ea9525ab042bd7619
MD5 5f48c371a0d66cd983663035ff5c10fb
BLAKE2b-256 4d4b77c58d370adbb446964a4d0a29faa04802dd25982d2389c92a63498236c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be60f63a310d0d2824e9fb2ef0f821bb45d23e73446af6d50bddda32564f285d
MD5 c1d102aa879e17917b650df35fdc3d92
BLAKE2b-256 f4c16942dbf031856fade676a7fe10e1c31f3a29ef99f12842fb4ef10a40b229

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a30f1b9bf79f53f995198ed42bc9b675fc38e6ec30d8f6f7e53094085b5eb803
MD5 a382f61ff6ecd7d0a4b24f9f228fa049
BLAKE2b-256 db93ef216513ad0ed8d48f15eba73ce1b43dd0153b14922c85da50389d9cd6e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e88e99f33a89e8f58f7401201e79e29f98b2da21d4082ba50eeae0828bb35451
MD5 87bc6f97f313fc591f2f5003f7a40faf
BLAKE2b-256 129d7e2c8b6447deced99af767877c244264f51952905c4b9dcc7c2c8ef3afd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0633536b31980a8af7262edb03a20df88d8aa0ad803e48c49609b6408a33486d
MD5 aac121a3ae18b6b575f26e147bb1c180
BLAKE2b-256 c33775bf93e3bac8e2d8206bbb7e4ea3d81ebb8064c045b5b130b955cd634c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b1aaccbcb4a5aaaa3acaabc59b30edd047c38c6cdfc97eb64e0611b6882a6d6
MD5 682c60ba3131fb1dab0ddd9db444bbac
BLAKE2b-256 8a746a1c51f851b8f7e621f6c42798e8af3e0c5708eba424e9f18b60085c0a4c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.11.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a1c241d8424c0e5d66a1710ff2b691f361b5fd354754a086ddea99ee19cc2d3
MD5 8a0ad2239ad9c2295cc269558253e20d
BLAKE2b-256 7d28343647ad019a041f1a9a74972b612974d860add385b2059c661e04f43b51

See more details on using hashes here.

Provenance

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

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

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

Supported by

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