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

Uploaded Source

Built Distributions

pymongo-4.11.1-cp313-cp313t-win_amd64.whl (987.9 kB view details)

Uploaded CPython 3.13t Windows x86-64

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

Uploaded CPython 3.13t Windows x86

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

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

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13t macOS 11.0+ ARM64

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

Uploaded CPython 3.13t macOS 10.13+ x86-64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.11.1-cp312-cp312-macosx_11_0_arm64.whl (895.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pymongo-4.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (921.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.11.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (928.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.11.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (937.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.11.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (921.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (894.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

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

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1.tar.gz
Algorithm Hash digest
SHA256 3757ce9257c3486eead45680a8895a0ed9ba27efaf1791fc0cf854367c21c638
MD5 fcb2658f1e29904d138a5517dd143fd5
BLAKE2b-256 c51863fd06769a2f47842c374fc5d937445fe8dc2f31b3a859c8bf7df73daa14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3854db4be39cb9e0c34add1fd7e515deab0b4ee30f3cc3978e057746d119ac12
MD5 7dd91b739121fa124406ab490a42f0fa
BLAKE2b-256 957b8d0767251e687966cf19a4ad032d597ab135d26af5ecebbdb8895ea92cf0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 889d20850d5aaa4f19814462c06488553e70ed4c62195dbaad5d5662884778af
MD5 29a9d1f1b2ad032b801c3258ab7e89fe
BLAKE2b-256 0cd3d7ca22d5eb654a451e18f616442b7c6d472ffe76560d6623a2a4ddfd4854

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a4e82dce301c97bb132dec28a487c1a609dc67948e9db7cbd23485875367204
MD5 be362a81a634c7c83530f4dcb0a12c79
BLAKE2b-256 c83e2261ac8e0b6a150d92d35ba2db30b8387c78f9ecba725b0b6a363250f9c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f97f62e6edde15d1d3d08abd7e43f1787ee9e672b1bb8e9d9f5fd6ded24f5599
MD5 2c4119aa697855e1bfac84d9716f34d7
BLAKE2b-256 3cf3c4cd608ddda2dbc7fa668dd8356bb728313b8eec5b118eca3fa937d4fc8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a8aba4818350d2a463e084ae2426d395e725525fe86bd0219240b265dc1ca52
MD5 76cdf09b69edf87e14102762c168e239
BLAKE2b-256 78ac6bf48a7c99b574c9afcb0f68b7a8b9bf9617a1a54773d0f8b1568f8a079c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d12f4c4579076b7351c63378e22f43d4ce4ed4f2c93208b653c4752f18f47309
MD5 cab256f6beb1c50f32d4599303a32151
BLAKE2b-256 312f7bccadbcf272b5e8c617a6a329b07671ecfd1faea080d9ab311240b93737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 985a614ec24519f4a3d82aafb766c3f782a452fc46b32112d508a4e19b33fff3
MD5 1e689a324af29c14fe7ec89fe94f903d
BLAKE2b-256 738041568f1ff09cb73976f7e6f9d11dae63003e4c1156834366ad03f91f27df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b3ea3494f3e166a524529bb05a4fdda97afd77031fed3a63862fd815288c9df
MD5 c445b48b8eab3e25a9549260e1e01770
BLAKE2b-256 cb05f43900c675e158cc024bc82a062dfcaaf12d4d7f574947b73f41d843d189

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d293cec18624825937bd7f1d8bacf16104c79ced45a8ada93f08ec8a7a2ad17a
MD5 1e2997d118409a81b94c2620be807486
BLAKE2b-256 db61f719841bc59d3d33c6002950e8b9978705b6f9f1dd5efb66e73fe6919a7d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f871efa14a1f368559edff39ec03799ca108bfa8e1ba330b7ffc05eb958661f
MD5 2f495029d361582890b4aab1bc5cc437
BLAKE2b-256 a0d497632e8f230e95a877220c785a69478cae97610e1ec48b5f9be59a926b29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.1-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.8

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4aa2c40e391ca29a337bef2b46b495c3f24b5696a87a58f0a0676a8bf131f9f8
MD5 1845bafc0060597cc7c1ada5a8e51013
BLAKE2b-256 1d867145841c425e4f6b012116db38e3bf4652dce7b8537961b2391e3c52e051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 698fb3d13126c0719077c98b40378cb9a6f4ab4a72b7691779aa01f1f6c66493
MD5 6ff6063deba80a452ef04962942d6ac3
BLAKE2b-256 77a6b700ccb2695f3233a12943e78760f68adc19516cf120949ad7c67fdc81a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7146ae04300ce6f83b75c639e97c3d0ce873f30edaac4b719ae173e886b9ff90
MD5 01bc2f3336251e5cd40412271c94b83a
BLAKE2b-256 adcc8765bbec58392929f414b5b26f4c3fe333bfb75ad2f03e92fc48c81bd25f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7dd7656794bfbfbe10723813332ec33eed29bd9bb7fc122c63829fd445eb8425
MD5 54ea68f66d5ec627c2c7575d742331a3
BLAKE2b-256 16031c792ab1e1e5a48fde005bbf739f04846ae48c8c8543a2f1e74ce42d465b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a63348c850df796199abef7e9afbd86c34449f56731c7ec70b3901df1f5c135b
MD5 1b5b2f9171e032a24a4685405fb9a26e
BLAKE2b-256 7fd65bf309a20892f47898e7bc626cb3169a1120b16b2d7b7a60c3fab607907c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f415d9569720f408cc4dcc171f60299d454b0414f120666e6fdd349d414bf010
MD5 5119a5856a548e9024ddc96e0ee5111d
BLAKE2b-256 d110c0e4c38c7a6d318a80a4dcd8cfc42bfb8a072145f152089e5bc8d60db902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aadea45e01103f6ee4e80d76d4a27393a4e2bd93472ce4ebb894781f395e1053
MD5 90704defdbed70d9146118b8ceea04ec
BLAKE2b-256 52540572ffa3d1c43fec0bdd065c5008b57f7ce4da90e6c6ade0a3c32f34c21e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f845b46d77a5bcf0c9ee16f11c5bc84c63f4668d9ea4fc54cd923c8d48a1d521
MD5 35388c3729db64fd7fec45859c1e5a97
BLAKE2b-256 71b6dc403a4dda2adaf0f0088d3fcfe6eb17c9e16098eca98f705f2a8e73e693

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c71655f4188c70032ba56ac7ead688449e4f86a4ccd8e57201ee283f2f591e1d
MD5 4bb5ae9031da998a7243e24c772ab18c
BLAKE2b-256 d2e2b1747eabad8bf172aa66fae50ed7290c4992b8adbeaddbe31944755dbed4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2d1d956c15dd05f1e41c61f0dbcaec59f274db4814cff2c3d9c2508f58004c39
MD5 865c6f190e59585aa8059b4a57b1cdac
BLAKE2b-256 c9a5f958fcdc944f97d02b6a46c94dbbcdde0d355639c8564974b31b4685e97a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488d1da6201e1350cfcd4deab599b32237ac2ac591180d44553a2c8e614f2c0e
MD5 d987cfe547f9cbdbf6d07ee8afad9a70
BLAKE2b-256 c6f71bd23ea674c957b24256f9ef87875892801cf77b3d2535e59dd78b04db2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7007669eef871079d39a9bbcda0fbcd4252f9b575592804343d0b5c05849d65b
MD5 d8e85cfcc50475e3b43bfa1c88f90243
BLAKE2b-256 d0911fdf2843a664f01b8ca83d22cd7accb48f3a5371e61813a5451bc33f93c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b630596089106c968ddd252bde3fe692c420e24f214dd39ca517d26343d81012
MD5 f469ef602e8e7d8b0e2e803cd3edd555
BLAKE2b-256 a7905ff61e8bad861621361868addeb34c4d2539a4c973a5767d1a266878cb32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74503e853758e1eaa1cad2df9c08c8c35a3d26222cf6426d2cde4b2e8593b9b3
MD5 1c795ce7b4977804449b9bd3839c1221
BLAKE2b-256 001130d3351f24cf8e652a0d5fe76e56a50478ea7e81dabcfea7339b1338cccd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 908e65ab42cd4bf1ffeaafe8f11bb86b3f804d54227058794e33fff2963ccc86
MD5 100211d379b9adf2bdc4e677401cc667
BLAKE2b-256 6242077b138efd223ed3cd03f3b8622d2315096e7cd1d9476cd8f1cf219c420e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 157e6a722d051c4bab3e6bc34a1f80fc98101cf2d12139a94e51638d023198c5
MD5 9049d7c6c6c8359abfd38db63caeadd6
BLAKE2b-256 056032910044b2329b7a580a1b4d4f895ecb9616cdffeb57c2d7622214659ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f96683f1dec7d28f12fe43a4d5c0df35d6b80348a9fbf5aac47fa284332a1f92
MD5 b2d7624cc201c1ff6089fb9e166f3541
BLAKE2b-256 cc8a81fdd61a0764c0ba1072cd70f67c7f4a83008ceaa61305e20add2ad580c6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7751e6e99c79057b09441c6ab2a93fae10b4028478aac5b455db8b12f884a3c0
MD5 15495ddfcf0dde1c84d1bdb49079c853
BLAKE2b-256 1d2d044b8511853c8d439817dfee4b1d99060fb76cb08c980877fcb6a6bc1da1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.1-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.8

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 27bc58e0b1bebb17d2426d0cc191c579f2eeaf9692be880f93fe4180cf850ca7
MD5 e1a3e1aece791bceb2eda31432ae0f70
BLAKE2b-256 76633768c99383e24ca16d59d860a1f799eccd02fc55a4e7588a72bf65740fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f28d179e7d434869e23f4582c941cb400f75e996cfea472693ec756ee213c685
MD5 e98fd300a691c32f6f5fbf587053b7cb
BLAKE2b-256 55dc1ddce3af1dd5156f1f1178857f768c8a88a44f8cc791c1490192ce7fd24c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6e46bcd3c2f86f442b721551ed5e5812294e4a93fce42517e173bd41d4cd2d8
MD5 234678cc0c16d608eafa41ecdbb0166c
BLAKE2b-256 a54b2eed7b9b7f65278123f0e73b39d38df7d99f477cc1eef49b5aa62485b0a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cdd0e404d5c3b1203ee61fcfee40a1f062f3780ce272febdc2378797b00401d1
MD5 07eeaeaccb5549fcfec5821da69601b2
BLAKE2b-256 31fff02900dac6d0374a98319cbbf3d6de3b3cd8cf5d1508d62062efb2084bcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50210249a9bf67937e97205a312b96a4b1250b111cbaaff532d7a61bc2b1562d
MD5 36166c3c9d97282359feafd3aea80303
BLAKE2b-256 58fb167e3fef60d2269a1e536cf6edeb871a4b53683f9d03681d2744983e0540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b56dbb6883ce7adad8588464948e0723a3d881e5549f48c4767f1654e8e4cb7d
MD5 6d284504e852e3a186a4d3b00c20749a
BLAKE2b-256 bbb9cfb32aea974c7656d81a47c1a52d7c94bf491b057ffb66ecec070c4f207b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 681806d3ecaf29b11e16a45c1f4c28f99d9d8283238f7b6ea9eee93b5d7bc6d2
MD5 2884f171d097beb0a1cde6216869f997
BLAKE2b-256 332f0df9ff0bb6a7b2812697dd9a3fb728fc0c7b4d035c85acf10eeb0b38579d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ac125f2782d8fe3f3ff93a396af5482d694093b3be3e06052197096c83acadc
MD5 3c653ab5bbcbd3eae794c60cc8e7a013
BLAKE2b-256 20ee8caede1100c5d59eee723980e39acfad04c5267d45b4f0827cc42f5de994

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e147e08df329a7d23cbcb6213bc2fd360e51551626be828092fe2027f3473abc
MD5 519609952e741192f2de2664b65ec4ce
BLAKE2b-256 78c38ae8e05e72e3349c2ca935fd7aec22a6e4011dff3e03f97a89e36d90e734

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.11.1-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.8

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 163c887384cb9fd16e0463128600867138a5a9a5344fc0903db08494b39a2d6e
MD5 71df653e1dbc8931b91b15e609b520b8
BLAKE2b-256 81ffcf195d0c7786fd26f1ea654e728b189ae5622f462e4672db17073a688ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cc6d48b74e9abe544dd71b000453ad06e65cbfcfd57c7342a9f012f65532eb2
MD5 5c62b60b263c629432c71403cf8adac5
BLAKE2b-256 4d9c9d19ea4187eecce995ea261ca6ead9b85082246370da10b5d3e8cb0b09c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fe9589d9a83f6e2abe88f32daa410276eddd038eb8f8f75975cf8ce834cea1f
MD5 0d23b4f7af1e2eb124edd03345f28969
BLAKE2b-256 176823e88bf9781c2eaa38d17f61c0b86c3191c73420a91deba5030930f2c27b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25b7cadae1d5287b2eed3d901a347f3fa9bc3f898532e1cb7f28a1c9237d824d
MD5 593e7c546ab0746b265c25d07feabe36
BLAKE2b-256 32be3b7890e9cca9b1218043a656f6d05d2569741ad3e144c877fb6a0c01e9fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7073a740aad257f9d2c12cb95a08f17db1f273d422e7ddfed9895738571cac7
MD5 7dec6897fcabac104733b56108122421
BLAKE2b-256 f6d0df9b520c1b702b6229a36fa58d7d2d5791bb1d5b9d585eed1ef3d0bad524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1518931a4a26d3cb31a97b9187087c6378cd0b0401d7a7cc160e92223a2a3059
MD5 3fd12792889061e27a84ea4b84ff3f0e
BLAKE2b-256 695c453d8815521b1a1c81e83a2083bd49255d96648e5b24fc0ceda131deb717

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15a88b25efcd61c5e539e9204932849b20f393efa330771676e860c4466fe8ad
MD5 ac97fb4bf0018ced6f8c15469eeeaa2e
BLAKE2b-256 c8a1971f4ce571d2e4622ff3360592ec9e674337c1feea2941ee88094b842015

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e596caec72db62a3f438559dfa46d22faefea1967279f553f936ddcb873903df
MD5 6155a8d98dbbae8651a95986b08a9dd1
BLAKE2b-256 0d985030f36a22f602b8ed8fa0921b80c5d1f1e2cb271a5e70e9b4269e54e6c9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ed3c885ac221ddebd3e894aeae7b6bd84e7dbd4fd59f03e551d8f51455c7e9b
MD5 e7f007eba23e07bcef2ce6f1ffa520be
BLAKE2b-256 f5de49d5a22f28a9e6e1abaf6c1e93a6449caeba6ca4f6eab75181fe8a3b6c3c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 490d3fd8006154894319af3a974764bf16baea87100222779f49c75cd8b16d3d
MD5 b880ba367ca3a099ed0de9745dcae693
BLAKE2b-256 ef7a138dab646855a6bf6c100110a22b6e1542049528c84f891e5682407f15f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 822a73d22970978a6e55751d53eb0948521fc8e1380e306b8644096b5230412f
MD5 dcc28dee402beb1211da04a04acceaf6
BLAKE2b-256 a4c1fb0420a86cd5e271b7a8f3bf88b8f0b2be985e0756b5ba419c9e7a8caba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 892f2137282a0a993d342db6e4e6dc2f3db0b771831c2d505f7055c52c023198
MD5 d059b367528ce6aa3356ca8fa922646a
BLAKE2b-256 cd027069c8b113646a5c56602a830aed49b036f3d8f5eeabb581561fc4069b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d7f291245c1688655aa308bbba7c9afa8116692c4fa6ad2646a835ed277a67b
MD5 b6fa29cc573c1a06e1c07b1563ca99fc
BLAKE2b-256 404c4f6782fe87d2f8c877bea73cfef29c012f9c502bea233b380c5e624d5c9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2737ad54f0cd38e19ebf76e6f34dbbc6927615a2973425e64475d15a65fc2f6b
MD5 5ca3991741f14e3ff351a5f4763a0fd5
BLAKE2b-256 060fb8fe7f33042fa58cd5b5ccdecdcd9891f2586549f5fc4ecc21b25386a027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34d8b0ee57ad2a07ecdccec06269a4530767c2befb68f4a185113c866ad20b00
MD5 c3390d53c1a95641082a5b293dfd4d5a
BLAKE2b-256 d7011ae620c56d526abcd8ab99097ef2d655cb836964704d8994bf00e11f17a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e7bac5fb1383a0df8b6881046207da20deb582a54e70c4c53ac9d4bbce323a3
MD5 faf64f2337c10c0eb753fe07cbee2137
BLAKE2b-256 c9e8c60f9b098492f07293ef71e4dd85e6bb2d2b8801000061e15e26f10a4f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18b669e15922316e25a318cf9ba594eae5a6c24285a70f455ea01571d70a47d2
MD5 650cbe5fec8cfaddd32099e830462b27
BLAKE2b-256 89fb09c2ec125a75993964a8923f272bce2075cec3a2efb78f2abba390accf20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b01623eb4a7ac58706e1920a94fbb47465f8ee19e7fbbb077e1707e37678863
MD5 3e4db44d9926b935a21473fc32842b5b
BLAKE2b-256 cdc8236a826396fd8f9cdeb1657cd7a464d4e67eebf00d000a39fe77f93616c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61f9a7ca6eb47378809c94cd8fbdbc5ee90c4bbb0c18ddf5592d25ed95cf939c
MD5 760926e55c1ae9f3018358baeb91c8ec
BLAKE2b-256 3b1302817e9ba8cb09e62dcf438cb1ec91d4e6dc7d152220b95b7cfd8728bb30

See more details on using hashes here.

Provenance

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

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

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

Supported by

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