Skip to main content

PyMongo - the Official MongoDB Python driver

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status

About

The PyMongo distribution contains tools for interacting with MongoDB database from Python. The bson package is an implementation of the BSON format for Python. The pymongo package is a native Python driver for MongoDB, offering both synchronous and asynchronous APIs. The gridfs package is a gridfs implementation on top of pymongo.

PyMongo supports MongoDB 4.0, 4.2, 4.4, 5.0, 6.0, 7.0, and 8.0.

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.13.1.tar.gz (2.2 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.13.1-cp313-cp313t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

pymongo-4.13.1-cp313-cp313t-win32.whl (979.3 kB view details)

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

pymongo-4.13.1-cp313-cp313-win_amd64.whl (955.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.13.1-cp313-cp313-win32.whl (930.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pymongo-4.13.1-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.13.1-cp313-cp313-macosx_11_0_arm64.whl (965.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.13.1-cp313-cp313-macosx_10_13_x86_64.whl (966.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.13.1-cp312-cp312-win_amd64.whl (903.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.13.1-cp312-cp312-win32.whl (883.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.13.1-cp312-cp312-macosx_11_0_arm64.whl (911.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.13.1-cp312-cp312-macosx_10_13_x86_64.whl (911.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.13.1-cp311-cp311-win_amd64.whl (851.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.13.1-cp311-cp311-win32.whl (836.1 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.13.1-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.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymongo-4.13.1-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.13.1-cp311-cp311-macosx_11_0_arm64.whl (857.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.13.1-cp311-cp311-macosx_10_9_x86_64.whl (857.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.13.1-cp310-cp310-win_amd64.whl (800.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.13.1-cp310-cp310-win32.whl (789.9 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.13.1-cp310-cp310-macosx_11_0_arm64.whl (802.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.13.1-cp310-cp310-macosx_10_9_x86_64.whl (802.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.13.1-cp39-cp39-win_amd64.whl (748.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.13.1-cp39-cp39-win32.whl (743.8 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.13.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (945.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.13.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (953.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.13.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (937.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (911.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (927.8 kB view details)

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

pymongo-4.13.1-cp39-cp39-macosx_11_0_arm64.whl (748.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.13.1-cp39-cp39-macosx_10_9_x86_64.whl (748.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.1.tar.gz
Algorithm Hash digest
SHA256 08dd70224978831ce7dc76016205d9b56c86aa337077f65a54b672240e7e9d6d
MD5 03656e922faecc2865af3872ca0e6c96
BLAKE2b-256 adbe9263901e3bf5460f8a06e823825d8bc369e19dd6c131b4c08ab3ac37946d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 6492565cd7bb10cb6104401af446926141249095953b57c108c4bdcf3452fa3d
MD5 5596d3b5f9eaf7c363ad00a78ad0ed3c
BLAKE2b-256 b926a5ef980305f5be4edd1c2523ae3127ad0e490b60585714c56428b8a24395

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 979.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.13.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 113fc90ea0c7fd6dc288844c325cab76fce06dfccecf45eac55c384a167abad4
MD5 624f3ba411402b0bcaacc178ed97540d
BLAKE2b-256 ff2679089773fc7a2123f9c42d3e5d26381c67922f7ba2bf7753b2d05763df83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 047fde40672831d546fde0f57b494556db1467283864e0faf10a109a87b5153d
MD5 c9fb6bdb32c5b0847f6977740e905a07
BLAKE2b-256 87c968641ccf0c8e1cfffd184e8cffbf2a18ec20d70a5bfc8360fe1c512771b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad6256e8157505052e3b7733e4b0c6038244ff082715f3a2ad8289ccf7ba16ac
MD5 875b63d6a9a2a2ccc5db295832b1a39d
BLAKE2b-256 a480c4d9b250de11b7cdcf1b4cdbe267a1fad473b79c0ba5d957bb18529ba00a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e314f863a338c1c716788d3b3a7be566cca8b4351aa637aefa9c2609d1c643e
MD5 f7cb9089d326976ea1f5ea318bff65f5
BLAKE2b-256 e9a446adc63f7049db2b5e7ab99b21e537a15ba02c0a65fc2923c1c72a7e02a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9318befdd8b78c2c4743ab42a86c6b6783209716aa1c5260b3517c6eea8b934c
MD5 72ea8de959c3bce500e696bde54dcbcb
BLAKE2b-256 fcfbc39148e25451ec644350196d2921136a7aba573c1f3b4f1a0292dbe85c1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a01b02180c6cfb6103cb8a27f2bbd7e017c7e2b3c5e34894c614aa8e63ee17df
MD5 8225a32c98ad55eca9f42b66c63103e8
BLAKE2b-256 089cc657fcebd2fa99c4dfe49ea8fc88b70a2ff6e3981e30df08580ec832f0d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fab03d9a4107d46864a9797dfedb0645b2dd97dfb2b1ba582e471c0c4e692ebe
MD5 51f19cd120fed03d2169b8578b5294ff
BLAKE2b-256 6306e7d7b8bf60d72525e27198a11fee0db363a6ea0feeb3de6b6e58b8558154

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bdbfb7828f06f3f1a928abd3e4c67487167e2c85a5598194157edfc732f3a571
MD5 3958a01d7436b19c1c8ed11fe793fa60
BLAKE2b-256 b51008ac758c60aba248380d721fa98496d305bfd20b97eec59aab6bf91602b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 955.0 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.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43f618d956b8f97e2483452d0a49d652bb07088c34cbf00917de6d61d31df4f4
MD5 2e3bdf8987ad65344456eec0348fef83
BLAKE2b-256 fd34cc4d109c7c64e7e740e91bbaa37b10de579f0569578c2bd83752cfc35439

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 930.1 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.13.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5f69576ccb93c1859075493a7890f9a3b3a89fd46427745ce08bc82100d3f60d
MD5 983f0505d2570e995166e96851e76fca
BLAKE2b-256 91c8540542c9a2aedee36e8c89008264903bdb8bd03d71c24ec097e03d62ff70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df0233ebfab9fe6f9cd41f5931261f53deee0e0b2e0b0fc5a515dc54cf39d789
MD5 799101e5e91ec429c19f1270a3d94b85
BLAKE2b-256 7b3f7b61040b419c1e21279f6b5b18f0f602d38949c66ee68b479cec95912d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a56960e5e7c2972332879ca5b6bd6bb39df0e344cba3d3cf4513fa2dfce54a1f
MD5 3dd4750903d9e1fe2e071154cdf55ed8
BLAKE2b-256 69a70b60a0a300aac26da7b326f9b60e40b08a6d6c5fb3778f7149fa5ec88341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc7ff2857fb3e9d865230f4226e57045daa9b09bdb21e4c6809f438e85f86fff
MD5 3416de87cbc80df89224559adad78cd2
BLAKE2b-256 6c2b66ce80df90c7e90d4f3b36f4ae799681645609dbd21d282ced202bcf3dfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c49a8274e79093697f274946e9e78079edf504158790401b538ba417c1cae5d
MD5 1b262c458f81bf49a1375cbb30ddcc29
BLAKE2b-256 708ddbee3aeb915537b256243fd47ea36b1bf529123110490b754857fed9a423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fb3d549a735c77470187d84d2087495be96cf86ce1dfc91ba3f69bf2abeded2
MD5 dbbcbc060e2fc469444b24c480c54246
BLAKE2b-256 7d98b36f395c8c79b17a6dc35f86aaff0e302915b9753b26b3c335bf42122d22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a8ca3e3383b2f33fe765e114af37211c3ba2a4654745756a94aa322b1c52523
MD5 2b50b26806d91427e56275aeb86c0122
BLAKE2b-256 193be11290ae9537717b638ea2b6e2219b2e9bedf42d00eec379ec5f05690cca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4fad51a0d951523e5f43d8271d074b700a64f46b347da176646816b9e1540a44
MD5 bf56bf0f574d8461f8b72131fe8fd01c
BLAKE2b-256 fa89e92a5141845329e79e79ac1e32ffdf8fa1b4d609b8ab6f62dd651a63976b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6823c2783c5da1bb0dc9759387db4f8ac266563f42fdb6709d6b15ca5a7e06b7
MD5 3fa0fdbaf4b66e00c90dca1c235d9cb2
BLAKE2b-256 1c92f53f5b32f2ec8c7aae10036d15aadbf85fdc4de0dd0020896e7f5cb17654

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 883.1 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.13.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0a9db585de9622ea0834833c4d48b873f83d10ec31c7370fb92c87d5f4e1b805
MD5 ac677e21bca2b674481f4647454c16ad
BLAKE2b-256 6f6670dfcec232c2441ac4d0026fe4429bdfac8f0a646da5c9dd5686c8a63f67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e994e4e99980a87b73be43b27820d20ff823eb966abd01f2242b71c0723d685
MD5 23f22f46408a2a8c50e3b2fbaa7caf10
BLAKE2b-256 5f9e2c74848969551e9f13f3c84ef6930ebdf4ff761beeab49e66f612a69a4b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d46d18854fed2196ea85fff3ee985c89658dd8c090292e6b174aa1387fe5dc4
MD5 25a1df1c2b628c2a30a4f10a2984207e
BLAKE2b-256 65736c74d28dfe3b2487022406820d70210dc23e317e3647294888d9b4651a1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3078a59ce15625a91963afc5086c69995877df10ea261bb82d099a1bbbe80efe
MD5 c1f67e7d036b2d9d4f53dfc5c73096f9
BLAKE2b-256 3e84f190716467ed7fbeba63a1e86845e4a4d8149919d1d6832a1a58085de3f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cec4206aac402f5097ee5d3f620c0e596f541f4872e91b3c936174d5dcc2d01
MD5 b40bfa60e58415fbd64e46758ab0578c
BLAKE2b-256 f7a1e1ce85e638f8b3b4a75e0a75883df5499d7943128a1b3241d52ef379a566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2d58b020d8c71eb9456cb435f355ff0b578259c0cf5a79ca3efab386ebb71de
MD5 8061adfdbbd9370379c98140e7ed4ba8
BLAKE2b-256 c8d91354cac15f78ea06b57fc5a911fe0be1392fcdcae8bdc9cc4631c9b8f379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77f5c0d57f381c76f143b951ac8e879d5ea57f7e51a3ecdd906a0d2cd3eb25e1
MD5 e31d6db24563f5c586d97d05028dc30e
BLAKE2b-256 622fb418b629e3ec386ec42dbbbd0915e216d5307d148516dbe24e67268eb5a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 47cc337065de00c087260aa8e8b91e1a3688b69cd1b181a478c1e84cf248d41d
MD5 e1ab357af9409170081e7daf618b81d7
BLAKE2b-256 943af30488427868a13fc67b294f09be7fe4e80515e412f79ca73bc410b52929

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 643b79645944899b2addb4ce03d9a6718dd1f4a0e1fa71fecdc49e6dea072b62
MD5 d146423da07454676bc8abac9f16e099
BLAKE2b-256 0fbc10c37970b109a80384fdc43b7532673779e588f6721db10d1eddc398cd61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 836.1 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.13.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 493c162b783614c69efdfc41ebe9521df6cc5da6be3d25c92535db111e804952
MD5 47d54a3809f7862a8c1d2c3463cf29a8
BLAKE2b-256 ca2ad5007e5dfdec5441c930c928c0544098ac159ed0076f6a99757656337a1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b0d614275cef7457fb0c9ae5831b35361bbb826f09ceb7d289f78c69f8bad45
MD5 515633252bd3a3e391c1db1ac8205a2b
BLAKE2b-256 8855a0af5ddfb66f0ecd0ab070502c3b96ca1ea3aef92a1d72be114dd3eebd61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 494ce1f93d507e8e170886dbefbef32662ac0cfe5b1734a65b6e523103b7ef3c
MD5 eae6a55e9cb90b4de8fe72458dd06c67
BLAKE2b-256 a19e92801672fa3043ba18b27fee1f5c49c5006adc86814d4caf6664beb926dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59ad9f47a95bd330e423fa506714494d84f1af6b4095f3a30f7d69f0ed741d93
MD5 55032ea307c77196f0321bd4b3d839da
BLAKE2b-256 9cbd18ae00db8c35de335de65660e23e704683a552137fc6d9d2e83082692c01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 759c879af24af5a4256e3675180b2d392bb7f009ccf1693fc12af66d38aadea7
MD5 4591390bb94d6b876f1b0f8d813a332a
BLAKE2b-256 8362bb141cca517b7636d257d3e45a3aa7aa09431d55dc0e2436207675b3f930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 443de2fd340f0b899a59d5b4fd4c773f016e8cbed8075975783bced3583fa0a8
MD5 e79ddd70a1d79e1b5931af1496e105a6
BLAKE2b-256 fc8321178fe7cbb6ffbf8edd72e825dc075e95aea563a27ae5f75f70bc3544dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2e557dedf2ca26a6ad6a6d41003177de113606256754f70f75d3e6902ae26e9
MD5 2117efba03b69bec90f7ce7054babcd2
BLAKE2b-256 4fdd90667744976e4dff66ac65f1b9e5db146c0a052a186728ce820f68b1af4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6249560e51a6e881cca6258d2de1241d30f50d45d8c7fc45205e1776306f44d0
MD5 4a454584808f8a1be5702896c4032d40
BLAKE2b-256 e05ae99cdf7b8c524f0cecbb08a1abeef3ea0aa26eb2d9d3ef12ef71f446e901

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 800.1 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.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78f86db7b94891ba61adbe00d4cf6eeead51bac2fb0cf6b8ec7c954236fe1ca3
MD5 63c273185e84ffd84fa2d630c34dd749
BLAKE2b-256 bb77f5c1e636cb434e496f8e243f40a2bf983d36d7fca970360504e341c18094

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 789.9 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.13.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c899acff9404b004ca7ba06ff7e30fb38ddf527431d75a5af6cb1133365c9a40
MD5 d292709ef91f3b8da8e68d6d34cd3d45
BLAKE2b-256 f88db04df58054a6cbc8fdb8f525954d68eb6067d12d3bb95d4b4730f7d70d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 716584c6af2e849f219da87decda6ac52f786a388f704af9cadc94133dc054e2
MD5 24b5beaeaa7b1bc0bcdbcc44da7f328b
BLAKE2b-256 428eb6c514811a1476344d217336afb102ea0d0de9bfd7984df9b12a469ac64d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 906db7bbe127bc295a1482226b4ebf55d3f6442424ad5e64f2db164d03e794dd
MD5 469c565fa3b0c906f175c41f08d1e98a
BLAKE2b-256 0de9977bf87eb623be6772a8cd00199195c72cfe3b76641fe574f60243f66a13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aad7474fc4b35265bab66b54319d31a7aae948095f8b03ea883ea4997fac98e8
MD5 e938aebd28d78c667c843a967b24bbec
BLAKE2b-256 26f72355b39bac4107702bead35a393a7e4295a6b1348fbcf5904ca903412862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 629026d35e41f069a8d49347ff76c7c205cd97b62537da7498b008ceba542c85
MD5 4c5e44c722055a16a5afd8e4d32e54e0
BLAKE2b-256 ce0cc364406db1b01cc00b733648840aa0898bac29376ab086dd1dd92ff0bc8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84f595bc1c1e8c7c784f52e6803540b8963df5ed561bfc2caa8b79111d59e987
MD5 84056654916129bf3c4e92e6d0e3e431
BLAKE2b-256 d7cefa23b129750354c37cf70f877724d388d6d88ba669ad0876f96c9a6f1eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 865f76463744169f44f49747ec3b01120a8c98c6d635fb12a5f5a86fcb0a462d
MD5 b8a13afb10a7461530fa604b867cc9f6
BLAKE2b-256 a6730d60b9953870610d4a0b420c7d69c575ff412a2eccc37583e6be930317a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90189695c019bf9ea1c701dea20f922bb6c11d0379ebfef4894e227bbac1f67c
MD5 9472f9cfd5cf5168882d6422bb97d904
BLAKE2b-256 6831cdcc2cca60e9ea6dee078023ceb3f658a7f720711c2b0cf1ee18dcb82531

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 748.8 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.13.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 65702467612d338028551fa0f6b3107ef48280d9a21f4cadba0128ee6eea82da
MD5 0d535d95ed997225a6a77cef6bfeec8b
BLAKE2b-256 eeb99dfb689b01b90a834d127f9664ae0e8322e0bf1e6b275461d99b971fa157

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 743.8 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.13.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 01d4b136e2e71c1ecf20cd38222eea154b347b4230eae1db2fa0a4a81ae824cd
MD5 a450c3f0cc7240c1430aaf83ac3c3aaa
BLAKE2b-256 3092f0557383d4fa751ebd9be1d2b8810442a0b5d2aa9c3fab4bf5a56827ab60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebf010ad764c81f0f7f85777c9e6684f2bdac65ff113b88a98946826e7318df0
MD5 1a1515a2c48e6cfafd8870a5d8b96253
BLAKE2b-256 050395112e4316d75711ce2e4886ed8b9bf88cc0945b00c9a555d2b9dc38fd4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86138e17f67fc959b609cf449ddcd3089acdb75d4b1c42a0d2b258128418f5a0
MD5 65118ac370e5a1bd9e209d93c9d82977
BLAKE2b-256 70b4c9b169f84fac21ad62369ea2eaf2def4cb3548292f6988561b1058099e6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99eeb43a318558fe074f88ffaad4ac027ef2a02cdce4f81602a5fbb1332908d0
MD5 50f02e28a746a06f4f876a1cb42b4119
BLAKE2b-256 cbabc35cbed51082acbfb6fde40f610ae3b4d6605ac8ea3685b3def9a86ae7e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb6c206ad5d3e9e33ed84495e9b1b87af37590256d3274ee62749ac43a5fe2b1
MD5 00d81aa9a700572bb6661a173617b6f0
BLAKE2b-256 80598ba777947e7dc7355dc293e51cd294700997bc590e7e1dea643ba4d45cf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71a6640278af8bc13c9272fdd2df90e62e2cdad8e864ffb04d1a8c7dda0131c1
MD5 2e3b3ae22185d402b204ef732f1a032d
BLAKE2b-256 11354a8b141076e7e5dadde1c631899322fcf8984d51c17505d1dc4f00661beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ab8f8272f882e24e45772f20134bd0e2ad31b08153a068cf812c377088bb3b1
MD5 e24a5b6aa0336296284f55d65a87199f
BLAKE2b-256 3c13000d2d530598623e546b51a8dbddba5e7f909a31e0cf4546b327549bbe53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 784077af7e4c35987132dfe8ee559041bdb07bde17c95cd507275b26cb5c2742
MD5 243065510cc4c019a5501309ef9eddfc
BLAKE2b-256 66369bf1f7615ff952c934c6ccfc04150aee66b33bebfbfee3e985930809f633

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59f5b845773a1d20c6808656a4ca63975f790e3fd5343a4a72ca1506ab852258
MD5 77e516f839de13e34bb6b4aab3d68a69
BLAKE2b-256 9aef18b74a91d3dcc63426e45baae2d6979d25ae6c676b63092ba692eedf97ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6109e0dd1c814534a0c583a59d7a2e2210b6a0ee2dba98dc6589ad2b53e20f84
MD5 e743811031da013a4fe60671f7df0c55
BLAKE2b-256 ef7b8a44bdaaee40d7aa562dde294694495cd272ee9f822240a5ea8fdbc1b3b7

See more details on using hashes here.

Provenance

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