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

Uploaded Source

Built Distributions

pymongo-4.13.2-cp313-cp313t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

pymongo-4.13.2-cp313-cp313t-win32.whl (979.5 kB view details)

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

pymongo-4.13.2-cp313-cp313-win_amd64.whl (955.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.13.2-cp313-cp313-win32.whl (930.2 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.13.2-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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pymongo-4.13.2-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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

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

pymongo-4.13.2-cp313-cp313-macosx_11_0_arm64.whl (965.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.13.2-cp313-cp313-macosx_10_13_x86_64.whl (966.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.13.2-cp312-cp312-win_amd64.whl (903.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.13.2-cp312-cp312-win32.whl (883.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pymongo-4.13.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pymongo-4.13.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (911.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.13.2-cp312-cp312-macosx_10_13_x86_64.whl (912.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.13.2-cp311-cp311-win_amd64.whl (851.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.13.2-cp311-cp311-win32.whl (836.3 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymongo-4.13.2-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.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.13.2-cp311-cp311-macosx_11_0_arm64.whl (857.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.13.2-cp311-cp311-macosx_10_9_x86_64.whl (857.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.13.2-cp310-cp310-win_amd64.whl (800.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.13.2-cp310-cp310-win32.whl (790.1 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-4.13.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (803.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.13.2-cp310-cp310-macosx_10_9_x86_64.whl (802.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.13.2-cp39-cp39-win_amd64.whl (749.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.13.2-cp39-cp39-win32.whl (743.9 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.13.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (945.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (953.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.13.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (937.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (911.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (927.9 kB view details)

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

pymongo-4.13.2-cp39-cp39-macosx_11_0_arm64.whl (748.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.13.2-cp39-cp39-macosx_10_9_x86_64.whl (748.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.13.2.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.2.tar.gz
Algorithm Hash digest
SHA256 0f64c6469c2362962e6ce97258ae1391abba1566a953a492562d2924b44815c2
MD5 397aa06141e0f5f0854863053730fb60
BLAKE2b-256 4b5ad664298bf54762f0c89b8aa2c276868070e06afb853b4a8837de5741e5f9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c38168263ed94a250fc5cf9c6d33adea8ab11c9178994da1c3481c2a49d235f8
MD5 8b1f0337f152cd22ce66e109608c11b6
BLAKE2b-256 b59c00301a6df26f0f8d5c5955192892241e803742e7c3da8c2c222efabc0df6

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-win32.whl.

File metadata

  • Download URL: pymongo-4.13.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 979.5 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.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7ab86b98a18c8689514a9f8d0ec7d9ad23a949369b31c9a06ce4a45dcbffcc5e
MD5 8eaf54ba1a08169bae3a61639eadc3dc
BLAKE2b-256 041e427e7f99801ee318b6331062d682d3816d7e1d6b6013077636bd75d49c87

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8057f9bc9c94a8fd54ee4f5e5106e445a8f406aff2df74746f21c8791ee2403
MD5 191676182089858cf8c7265ee38d8bd0
BLAKE2b-256 2b5ad8639fba60def128ce9848b99c56c54c8a4d0cd60342054cd576f0bfdf26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af7dfff90647ee77c53410f7fe8ca4fe343f8b768f40d2d0f71a5602f7b5a541
MD5 f4cd2f7d90ae795670a0a422f58dd274
BLAKE2b-256 89c0c0d5eae236de9ca293497dc58fc1e4872382223c28ec223f76afc701392c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 850168d115680ab66a0931a6aa9dd98ed6aa5e9c3b9a6c12128049b9a5721bc5
MD5 e597293daa629a9d04ce9f3b33e05b0a
BLAKE2b-256 84da285e05eb1d617b30dc7a7a98ebeb264353a8903e0e816a4eec6487c81f18

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c942d1c6334e894271489080404b1a2e3b8bd5de399f2a0c14a77d966be5bc9
MD5 9ec4b0f26c78388fd6287030671f6c10
BLAKE2b-256 1792cda7383df0d5e71dc007f172c1ecae6313d64ea05d82bbba06df7f6b3e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51040e1ba78d6671f8c65b29e2864483451e789ce93b1536de9cc4456ede87fa
MD5 a4a15eeeb8c31990c116a322959ab6f0
BLAKE2b-256 a169d56f0897cc4932a336820c5d2470ffed50be04c624b07d1ad6ea75aaa975

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02f131a6e61559613b1171b53fbe21fed64e71b0cb4858c47fc9bc7c8e0e501c
MD5 e1d1f73276bed79f60f89d3fac828ea4
BLAKE2b-256 83e666fec65a7919bf5f35be02e131b4dc4bf3152b5e8d78cd04b6d266a44514

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a457d2ac34c05e9e8a6bb724115b093300bf270f0655fb897df8d8604b2e3700
MD5 132b3c5cf796c6c0da390ddefc3471f1
BLAKE2b-256 5756b17c8b5329b1842b7847cf0fa224ef0a272bf2e5126360f4da8065c855a1

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.13.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 955.1 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cfc69d7bc4d4d5872fd1e6de25e6a16e2372c7d5556b75c3b8e2204dce73e3fb
MD5 08671d0f480d479fb29178d807e91abf
BLAKE2b-256 762f49c35464cbd5d116d950ff5d24b4b20491aaae115d35d40b945c33b29250

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 930.2 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d13556e91c4a8cb07393b8c8be81e66a11ebc8335a40fa4af02f4d8d3b40c8a1
MD5 b75297d09b4985e5dfe275f8714e5a6c
BLAKE2b-256 932febf56c7fa9298fa2f9716e7b66cf62b29e7fc6e11774f3b87f55d214d466

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01c184b612f67d5a4c8f864ae7c40b6cc33c0e9bb05e39d08666f8831d120504
MD5 e8008874db3255edfcbb37437a75ee35
BLAKE2b-256 f1e99c72eceae8439c4f1bdebc4e6b290bf035e3f050a80eeb74abb5e12ef8e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8860445a8da1b1545406fab189dc20319aff5ce28e65442b2b4a8f4228a88478
MD5 51f05ac7e4f9bb1a459d41d7c2d80f09
BLAKE2b-256 31ed7a5af49a153224ca7e31e9915703e612ad9c45808cc39540e9dd1a2a7537

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9c7d345d57f17b1361008aea78a37e8c139631a46aeb185dd2749850883c7ba
MD5 34c77917ac7032b05a97d1e5f4bc76b7
BLAKE2b-256 da3b0dac5d81d1af1b96b3200da7ccc52fc261a35efb7d2ac493252eb40a2b11

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfb0c21bdd58e58625c9cd8de13e859630c29c9537944ec0a14574fdf88c2ac4
MD5 64481cf309676e798b1f92b66ea1034f
BLAKE2b-256 07a867502899d89b317ea9952e4769bc193ca15efee561b24b38a86c59edde6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae2ea8c62d5f3c6529407c12471385d9a05f9fb890ce68d64976340c85cd661b
MD5 efebabd86422ac2a4af7151fcc466f0e
BLAKE2b-256 ac799b019c47923395d5fced03856996465fb9340854b0f5a2ddf16d47e2437c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd326bcb92d28d28a3e7ef0121602bad78691b6d4d1f44b018a4616122f1ba8b
MD5 ad5424395e092b9661304976edc69daa
BLAKE2b-256 6dfcd4d59799a52033acb187f7bd1f09bc75bebb9fd12cef4ba2964d235ad3f9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d6044ca0eb74d97f7d3415264de86a50a401b7b0b136d30705f022f9163c3124
MD5 6e6b1d12744297d4a1a4e34e9d05ac0b
BLAKE2b-256 e095b44b8e24b161afe7b244f6d43c09a7a1f93308cad04198de1c14c67b24ce

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 812a473d584bcb02ab819d379cd5e752995026a2bb0d7713e78462b6650d3f3a
MD5 fa71ce63986c69e9e27c006e91479ff9
BLAKE2b-256 d24f727f59156e3798850c3c2901f106804053cb0e057ed1bd9883f5fa5aa8fa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 883.2 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bf43ae07804d7762b509f68e5ec73450bb8824e960b03b861143ce588b41f467
MD5 ce844decce88e11cf1a97f424a1fc711
BLAKE2b-256 6acf2c77d1acda61d281edd3e3f00d5017d3fac0c29042c769efd3b8018cb469

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f57a664aa74610eb7a52fa93f2cf794a1491f4f76098343485dd7da5b3bcff06
MD5 43f0d00877d17db45223fcd4faf55716
BLAKE2b-256 277b9863fa60a4a51ea09f5e3cd6ceb231af804e723671230f2daf3bd1b59c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3efc4c515b371a9fa1d198b6e03340985bfe1a55ae2d2b599a714934e7bc61ab
MD5 2772c6619acd64d7a6f8b8314738fe83
BLAKE2b-256 dfd98fa2eb110291e154f4312779b1a5b815090b8b05a59ecb4f4a32427db1df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac9241b727a69c39117c12ac1e52d817ea472260dadc66262c3fdca0bab0709b
MD5 c9f3483841476dc8093f86a229b0446d
BLAKE2b-256 bbde41478a7d527d38f1b98b084f4a78bbb805439a6ebd8689fbbee0a3dfacba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cce9428d12ba396ea245fc4c51f20228cead01119fcc959e1c80791ea45f820
MD5 ddab3667224802d07b1fe88107c1a24f
BLAKE2b-256 6fe4f04dc9ed5d1d9dbc539dc2d8758dd359c5373b0e06fcf25418b2c366737c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dcb0b8cdd499636017a53f63ef64cf9b6bd3fd9355796c5a1d228e4be4a4c94
MD5 72594cc3fc3786032febb8112ccd2b57
BLAKE2b-256 9b89a42efa07820a59089836f409a63c96e7a74e33313e50dc39c554db99ac42

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f30eab4d4326df54fee54f31f93e532dc2918962f733ee8e115b33e6fe151d92
MD5 d64d0a9ae25203808ba7cfb62103a9c3
BLAKE2b-256 57c29b79795382daaf41e5f7379bffdef1880d68160adea352b796d6948cb5be

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec89516622dfc8b0fdff499612c0bd235aa45eeb176c9e311bcc0af44bf952b6
MD5 c5e6ec0021ee427bd12f313db7824bae
BLAKE2b-256 03e00e187750e23eed4227282fcf568fdb61f2b53bbcf8cbe3a71dde2a860d12

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 851.5 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab87484c97ae837b0a7bbdaa978fa932fbb6acada3f42c3b2bee99121a594715
MD5 59acc9996c6b11015a8e546c4d971ef5
BLAKE2b-256 d3da30bdcc83b23fc4f2996b39b41b2ff0ff2184230a78617c7b8636aac4d81d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 836.3 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6bceb524110c32319eb7119422e400dbcafc5b21bcc430d2049a894f69b604e5
MD5 7c0e5c9fb985574e81c70a33d425591e
BLAKE2b-256 b8295190eafb994721c30a38a8a62df225c47a9da364ab5c8cffe90aabf6a54e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c8e0420fb4901006ae7893e76108c2a36a343b4f8922466d51c45e9e2ceb717
MD5 68f0b1f50ff2758ab53ae0525c2d7789
BLAKE2b-256 2ab9397cb2a3ec03f880e882102eddcb46c3d516c6cf47a05f44db48067924d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b4d5794ca408317c985d7acfb346a60f96f85a7c221d512ff0ecb3cce9d6110
MD5 f899edac25cd8887e06c91e7358fe792
BLAKE2b-256 f69fef4395175fc97876978736c8493d8ffa4d13aa7a4e12269a2cb0d52a1246

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e20862b81e3863bcd72334e3577a3107604553b614a8d25ee1bb2caaea4eb90
MD5 0fb1937ef518e2bda4b320d208849257
BLAKE2b-256 aafec5960c0e6438bd489367261e5ef1a5db01e34349f0dbf7529fb938d3d2ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a10069454195d1d2dda98d681b1dbac9a425f4b0fe744aed5230c734021c1cb9
MD5 2a08440b590ac3aca60816f6c9b1e500
BLAKE2b-256 50d4eb74e98ea980a5e1ec4f06f383ec6c52ab02076802de24268f477ef616d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 239b5f83b83008471d54095e145d4c010f534af99e87cc8877fc6827736451a0
MD5 bc951fbe10832598f7d77696075c2624
BLAKE2b-256 f50de150a414e5cb07f2fefca817fa071a6da8d96308469a85a777244c8c4337

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad24f5864706f052b05069a6bc59ff875026e28709548131448fe1e40fc5d80f
MD5 b8c475ea8c3203445c297bbb4ba6fa9d
BLAKE2b-256 e741480ca82b3b3320fc70fe699a01df28db15a4ea154c8759ab4a437a74c808

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7af8c56d0a7fcaf966d5292e951f308fb1f8bac080257349e14742725fd7990d
MD5 2d1ea4be6e231daf5e090a3842773968
BLAKE2b-256 94df4c4ef17b48c70120f834ba7151860c300924915696c4a57170cb5b09787f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 800.2 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66f168f8c5b1e2e3d518507cf9f200f0c86ac79e2b2be9e7b6c8fd1e2f7d7824
MD5 5da349a61a06ec50a77c0fe98aceb990
BLAKE2b-256 9f702d8bbdac28e869cebb8081a43f8b16c6dd2384f6aef28fcc6ec0693a7042

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8ef6ae029a3390565a0510c872624514dde350007275ecd8126b09175aa02cca
MD5 69a9a143ab2a91c20ee74bd4251144f6
BLAKE2b-256 0522bd328cedc79768ab03942fd828f0cd1d50a3ae2c3caf3aebad65a644eb75

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad9a2d1357aed5d6750deb315f62cb6f5b3c4c03ffb650da559cb09cb29e6fe8
MD5 6ab7b7f132f00017b6881df576d0f5e0
BLAKE2b-256 5aa89ddf0ad0884046c34c5eb3de9a944c47d37e39989ae782ded2b207462a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16440d0da30ba804c6c01ea730405fdbbb476eae760588ea09e6e7d28afc06de
MD5 7861d89467cadef59ee0c28345823af5
BLAKE2b-256 2651757ee06299e2bb61c0ae7b886ca845a78310cf94fc95bbc044bbe7892392

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b00ab04630aa4af97294e9abdbe0506242396269619c26f5761fd7b2524ef501
MD5 09aa083d695c61f72081b54404e187e2
BLAKE2b-256 2b5c5f61269c87e565a6f4016e644e2bd20473b4b5a47c362ad3d57a1428ef33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdd8041902963c84dc4e27034fa045ac55fabcb2a4ba5b68b880678557573e70
MD5 e5c027de377376ebe7383e47836fa713
BLAKE2b-256 b6da07cdbaf507cccfdac837f612ea276523d2cdd380c5253c86ceae0369f0e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c793223aef21a8c415c840af1ca36c55a05d6fa3297378da35de3fb6661c0174
MD5 29f247e1d6d89e378c7f067f6af26263
BLAKE2b-256 7b5761b289b440e77524e4b0d6881f6c6f50cf9a55a72b5ba2adaa43d70531e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ab0325d436075f5f1901cde95afae811141d162bc42d9a5befb647fda585ae6
MD5 9f6fdfb596939bd8f60a26f34b329f60
BLAKE2b-256 ce7f2cbc897dd2867b9b5f8e9e6587dc4bf23e3777a4ddd712064ed21aea99e0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01065eb1838e3621a30045ab14d1a60ee62e01f65b7cf154e69c5c722ef14d2f
MD5 fe7a4b8498c7975813c7f4a2e7f4ed82
BLAKE2b-256 dfa8293dfd3accda06ae94c54e7c15ac5108614d31263708236b4743554ad6ee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 749.0 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0603145c9be5e195ae61ba7a93eb283abafdbd87f6f30e6c2dfc242940fe280c
MD5 0e55c421c356ff3bfc1a63c79d4acf19
BLAKE2b-256 7ea93abc30b68df1ea2e0ab5d5245039c0c062d0a411b0e327bd986370deff05

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 743.9 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b7e04c45f6a7d5a13fe064f42130d29b0730cb83dd387a623563ff3b9bd2f4d1
MD5 b503559a8a9cbb02db78ae480179e17b
BLAKE2b-256 4873e93ce27900ebfb19ecd987eef9d8d56b86ce065002504fd0c6958af93197

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49f9968ea7e6a86d4c9bd31d2095f0419efc498ea5e6067e75ade1f9e64aea3d
MD5 2e629827655c3fe1b77fff4404e4c612
BLAKE2b-256 7fe1c6ab4ee8d78447d6fb24a62f36234cd41476c94cf238a4c87a34ef7d68ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 389cb6415ec341c73f81fbf54970ccd0cd5d3fa7c238dcdb072db051d24e2cb4
MD5 bf88b4f59bb7badef442a0d8ff6ba5d4
BLAKE2b-256 4c71f195afd6e1cadbd5ff2abec451b2022f78e9486052388d8dc362a419466b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 884cb88a9d4c4c9810056b9c71817bd9714bbe58c461f32b65be60c56759823b
MD5 ad25f07f5ba296422a389427546f8f08
BLAKE2b-256 0c531e9c0d642268e641105e64bb7119e97ee213d4f17c376dc2dd29b24ac08b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34cc7d4cd7586c1c4f7af2b97447404046c2d8e7ed4c7214ed0e21dbeb17d57d
MD5 aa9156b83dd95b128896892ce3b5c835
BLAKE2b-256 76fb03e35ad0a23a6ed8a4707392ed6b25d145692191201940b9001ba627697b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 75462d6ce34fb2dd98f8ac3732a7a1a1fbb2e293c4f6e615766731d044ad730e
MD5 ecd0ffdba7a71c8a4bda0fe8647f301d
BLAKE2b-256 65a183990c9d6ea16937009b7af2ce705ee8c5d4f1e740c8ecd73ac8950e00bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4dc60b3f5e1448fd011c729ad5d8735f603b0a08a8773ec8e34a876ccc7de45f
MD5 c0d7c30654c5870f0087dfed4adeb2d8
BLAKE2b-256 273f97d23f419a3ee72da3c29d9d41519e03bfcc619d8d2770630006138031be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae07315bb106719c678477e61077cd28505bb7d3fd0a2341e75a9510118cb785
MD5 335f4f90e381d75b4f556efc104c7035
BLAKE2b-256 d46121628680899f2d72b617a49168b0b9a8c29c7a33e899296f5c71e39e3727

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

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

File details

Details for the file pymongo-4.13.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de529aebd1ddae2de778d926b3e8e2e42a9b37b5c668396aad8f28af75e606f9
MD5 955b2000859e0d9336084748afe5963a
BLAKE2b-256 13f30a590c94291c9e4e88ff7e9ce51b16fbef82a362681f08e6f173b67b55df

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54a89739a86da31adcef41f6c3ae62b38a8bad156bba71fe5898871746c5af83
MD5 2dfe3fd6a382790cec801ad26c2f9d3c
BLAKE2b-256 ab08e409aaf371d2aaf11ba2cb3a7a14dd5d3e8a78b8aa9d3472a198bf2d9179

See more details on using hashes here.

Provenance

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

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

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

Supported by

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