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.0.dev0.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.0.dev0-cp313-cp313t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

pymongo-4.13.0.dev0-cp313-cp313t-win32.whl (975.8 kB view details)

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

pymongo-4.13.0.dev0-cp313-cp313-win_amd64.whl (949.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.13.0.dev0-cp313-cp313-win32.whl (926.9 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.13.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-cp313-cp313-macosx_11_0_arm64.whl (965.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.13.0.dev0-cp312-cp312-win_amd64.whl (898.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.13.0.dev0-cp312-cp312-win32.whl (880.5 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.13.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-cp312-cp312-macosx_11_0_arm64.whl (911.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.13.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl (911.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.13.0.dev0-cp311-cp311-win_amd64.whl (848.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.13.0.dev0-cp311-cp311-win32.whl (834.2 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.13.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-cp311-cp311-macosx_11_0_arm64.whl (857.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.13.0.dev0-cp310-cp310-win_amd64.whl (797.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.13.0.dev0-cp310-cp310-win32.whl (788.6 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.13.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-cp310-cp310-macosx_11_0_arm64.whl (802.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.13.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl (802.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.13.0.dev0-cp39-cp39-win_amd64.whl (747.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.13.0.dev0-cp39-cp39-win32.whl (743.0 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.13.0.dev0-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.0.dev0-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.0.dev0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (953.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.13.0.dev0-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.0.dev0-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.0.dev0-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.0.dev0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (927.7 kB view details)

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

pymongo-4.13.0.dev0-cp39-cp39-macosx_11_0_arm64.whl (748.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.13.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pymongo-4.13.0.dev0.tar.gz.

File metadata

  • Download URL: pymongo-4.13.0.dev0.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.0.dev0.tar.gz
Algorithm Hash digest
SHA256 339bf88fc9f9f17d38ae72657126e563ec0dd4b505ad646f5f40b171d5447f6c
MD5 706cbf6e75d1012d89e81f6e486ae5de
BLAKE2b-256 06f9855c14aa6cc0f9a8ae69a9793d2b93d97323dd5ec449831c3fe2a105e9b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3891fae0bee817a3c0eca857076cbf14d3ea382f42d8a1194243a728619c9514
MD5 e055f9487bf1c5e3c302bc995c3b31fb
BLAKE2b-256 6d5e57fef81cb45542fcea61f16e9ebfe43d3e0db60fc58c825f06090497b1ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.0.dev0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 975.8 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.0.dev0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 6c5593e68cadce5971c0a6f234bd1f8422fdf60245c72b90288e4c51297883f6
MD5 3282db025a85d4da3329a1f9e0cb2882
BLAKE2b-256 c594afe2c2611d7d84b7ed25be2f9559ded4e0ac64e61db70df25d539f4ad712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6aeeeac76feb8b423415981a1251f55eac71280a5f57e385f08e0b9df1a516c
MD5 4acc05f362845f9cd0075685f503fbdc
BLAKE2b-256 4fb0644b3cc995ebd910880e632db2dc4fc8f10fb778d73588b903e3f8a695ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a23fc21b4a85966b10cfc0088354b8eef4704e98e0a03eccfff6737cafde87a6
MD5 558cabeb10716aacfd64ce6846deca4b
BLAKE2b-256 2ee4288b202006e7f4fbd4bff9d12b1f07677f57fb4e9184c9001b7ec1be77a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fed7a852615b515191563fb47df8a164977f003c1e232996e215e2782c5f409a
MD5 438b91b3ddd2586e6b35f2ee04867da0
BLAKE2b-256 c3bcc8a17dda4d929354589ef9e2159588952c9e7d87f828ada59ed107d53bd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06c4e7b6c8d65d496fdf75ca6efde9c11f54ced422e1f6d4936a2dee3bab3e8e
MD5 97b3fa781fad49b59b677fee79ed1f77
BLAKE2b-256 4579bc15d5de26974dc233da76d5a26f8fe8776ed74b7da2935608e58646765f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d1b7c570334867ca700c3c52043c9cc133551a543e3fb37166879e061e251c0
MD5 9ce1989d4612f932663ab3cee4453e8c
BLAKE2b-256 fa2e2f169bd28c98d3263032cd1e3950e136508eb0ad5d63803160c26ce51a80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a4d1e72a43d00cb9887d1193b8f3789eb14bb1c5b400f809ca4b6861333af8c
MD5 62373e167c102c79188e934b8cb5d13b
BLAKE2b-256 5b3e86c65f87f1d4674e7a35f580b966649da80444fb62ee780bb3fbbb920b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3778ba32f5c279f00cd09ec052adf6d62dd6132070eb2f3b9379c38e133f77f5
MD5 f5e7628dea23d90bf54916c04027beae
BLAKE2b-256 cf9f884e1b97e994b64c518d2e760f1b01953cb9f1781bbeda28d6f7a009f07f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1fed129884eae174f853cb607fa360a9dbb3a79b1daa0b8a9a9c6e38a82d04a
MD5 6cc6aa80ab5b5708190b77c1a6959b24
BLAKE2b-256 e3a940f093ea2f161e67697894b9cb80f58223e252b86da6409931c68941e8e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.0.dev0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 926.9 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.0.dev0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 862b976481bef82f3274831a73ba08f2e336fbe90a56034f5bcd05c9560e58ed
MD5 55fc01f70a384f48a1546a2b33d44f73
BLAKE2b-256 50a9ae31112ed90753a238f9276c05f81eb77cf1a33ac28fc77fc6476e54d886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d0628a3716f3d4cf3e33ece184a1379615adfd116e1c002427143e18b12504
MD5 af88bb4891b6449e21b3dc788b08e3c3
BLAKE2b-256 43a97cc7c00656f0fa0d723c128396d77e8054e3a6d66d35c652c2b764a4a3ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f85620e957650f311e9780ce58289224988d58d1830346e43105001ccc2f042
MD5 cd3421d3f8eb530f515e4e2a29e699e4
BLAKE2b-256 dbc32790a4d8f54cce0ebc966321c36aa23e8150913139091cc827e2fc77df52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11495168fb8b39749a4d5cb7458c25a73650bd4b043624987844d88d54e9501e
MD5 ecebce77518d81c77a1ac1a10c967d49
BLAKE2b-256 523f0c21eb17eac9719e1bb45536cb26f02e53349169fa1eea202fb67d8c5b5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6e2d71adeffcb813c08f487f60fc762ba87453a53b9c3413de5e0b73ff441ed
MD5 ef43332d7c34d6f7134486e7d238df5b
BLAKE2b-256 2818a3bb44fbec81d4bf8105c9e7f4a8abad0e203f66547300e6a6a78bd1b348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fe9fb661326a936175fde4bc942abeda286265eee1f8d49beea60d130c54aef
MD5 78e4dc469daff549454989debc2507a9
BLAKE2b-256 148598adee2ee146d1edc9301e56cdae400f7df85dcf5ae5d4e5473ac9e7e4dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8a7eb70ca5c960b163ed1938edbde5e6f5d5db8ff223e80baaf2817c64630b6
MD5 754e6cfce716b42cf81922edacc300ac
BLAKE2b-256 0ae9329a1960025d5b0cf2615985f0153a8cda106041e56a86f2179ac8ff0bc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f601b30cdf39f9ed82577189b24dcc4f66c23e4462aef9c5f115a3b580569b4
MD5 5493e9e420e54af7ffe2e7a1266c1f1d
BLAKE2b-256 152c6ec955a32fc96e7202df1c27b0002a673a9c51831bc9557fdf72b32b4632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3362f1ff17a8f9fc87e780cada936d59daeaf9284614dec7097024e89f89f3d9
MD5 f3b89c4f6c3748304225be9f372271c1
BLAKE2b-256 b79168ec2165ba5fc878371c4cad10445d89dae535c9c1b4152ec55af453d134

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.0.dev0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 880.5 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.0.dev0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 048a965b3069306235439f25df7e1265eed4eebd6b995b4c8b336174c4f1590c
MD5 de94efd438b87f94e9612226974fffdd
BLAKE2b-256 62047ef99ffacbc421828f1317d5475c1d25e9855fbc51f2957f586653cdb06a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65043465e66b773aca19df8f9414d8fdf7f0a33a55acc1fd40468fd13f0bbc90
MD5 80f4155fb7fc5136b4c22d0a6cebd945
BLAKE2b-256 a9e9295513713ed5bfbf4256ccacaea799660529d247289f0350b326ddafea11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8795b7f3fd02ce0dab511cd5539fa384d1ad1d1589770371f2328539f90d4480
MD5 5667b5e8f765e1a48c3fe5784c0090c2
BLAKE2b-256 f9a2d2af137e74ba2330679bd7f566eef0eb8b16c337cfba74b89e193be78c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3cfcaed38df2fe4718eec2f5f35e0efe6d7b6d11b8c6649661f35967cb1b32a1
MD5 118805766fd219d75a1b4bf535461d6d
BLAKE2b-256 195b014b0cb16cc7336d12ec03c2cbe5d49ba8289c6f4ac8d6d467ddd6ad4356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3252de855eae7581fe077dc035ef274422df5db416b25cae5600db6ddfc96c9
MD5 daa931bdc66c1a298ba24d101683dfab
BLAKE2b-256 8379a15663da00eb2d7be2684843af9857bd34386c7decb89c8f63a162e8c3e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1d4c6a4cf2f687d99fcb9fe6f19133fc0ce680df6f75a372ff486ae7c1bd944
MD5 0cc28293383bcfc4acd5d9f9fcf01046
BLAKE2b-256 847b7cc56a3558ca76306704b1f16ca3581374d535349a3cfdb206f93d0f96da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60c9396c0ef7f2a9232de902388496d9fe431bd4735038283e8548ba2b2caa75
MD5 60e7ba4c18d77e48d3eddbc068e36ee5
BLAKE2b-256 4797f02fa7aec14dd27571219b446b6005737983299f14d44b4e55716c525bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63271d286658f97b8c660fb63b508a04d46ced047c64197860cb567fe85e3df9
MD5 e7feb33c1f39491d50b5d357bec55eb1
BLAKE2b-256 eff84bed659f1b2b73dfe60f7018c530e4148353adbc340ce0d7952babcce7d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7cd3730759476fba21e5ae8ef62c2d23e1b66ca98d6a09278d4f39a10062ae2d
MD5 f86e8a6edd12ab732cc222da5303bb1a
BLAKE2b-256 65816413dc52d86d74ceed908f9f9d60c2efec10d7303ec189e4e7feb70f7bd3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.0.dev0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 834.2 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.0.dev0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bb62295b996576b53cf313353ed1eeee876e0d10972f97990206eb7eb9ca0bb6
MD5 855c61d4d694961a5229da4a0275e2e9
BLAKE2b-256 896941b1fabc2c665af38d6ee719fcaad8548e3026888a76d2836957b352f929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbb779a0aca09c8e7baf82680a88e3d69059071c728ed067d3f09cfed8f7faf2
MD5 5d69963dd2f5e94ea226c68a73f78934
BLAKE2b-256 60f07af315036d21f12bf2d172f127b01d12bf3c6d42332f8ff579e72ae01be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fcf58759d6ef2ee3019b1d68cbeeba0d8a62f9a978158795414ef4f94be47cb
MD5 604455ab4b654dc82501075736c8dea0
BLAKE2b-256 c48409bfc8079ca2eb61bc90e66fdca0bff9af0fe932e0bf09849c82442f699a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a829325f9275e8707709ade9c906498410119bb7e5780a659c63651b58eb0ad
MD5 2d8202ad6f499b9032fea3f9717459de
BLAKE2b-256 13a5df30f9421458a5e048cfadacc5d62afb47a81bc2da98970d0c579d04dda6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e607a0525fba9512321dfa289e60bdb1170f5e8742788ad6c989e26de76247c7
MD5 6f2dfa2db12dfc200bf9bcb2f3f2c868
BLAKE2b-256 d68f1a1808671786ce53abc1d3b9a242b3042641d0909e49a1d73f90aed6de34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 861a2c357ee495c981a90c7d79e5ccb3b8852a20df3a18336264ac9b985d8dba
MD5 2b8c7b48227159848bc2491776c6dddc
BLAKE2b-256 4eb487d7aded10678037657172ffa046b71062a0952bbb45bfa674a404c9e50c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b050e7597927c36645356d02b3bcc3fae6d0429238c1c109fd2bd1e83983490c
MD5 955a6a651a2f87c1ebf033406b3c2f97
BLAKE2b-256 091dcccfd35475c3767622d017a9a51692ce8e417ec266b8ac7835876e7ca44c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77371909848e60d4759e62bb3f7d1293cdf4e820979c41035c6d57cd3e8e6699
MD5 199dad143a00d04fcfa4e8d220bd62da
BLAKE2b-256 dd4edde353814299f2608021c27711eadd0fd18896731906acb087266306f56b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b60110c0113c6db6e6d0ccc1e04b8bbc9040517a3fadca07d4e80f6cab03277d
MD5 94588e39f709ff7c7780253d0f44d85c
BLAKE2b-256 8bc2072a02dedf9b99762b6f86f51596ded36428c73a5eed9fc413fc13ecf791

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.0.dev0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 788.6 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.0.dev0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 024a73bb808b135d75db007f91bc04f46f4e5c3e7f09670478e1e67120eb5aeb
MD5 83dd214a9c578a5e5c0f0b9698214dbf
BLAKE2b-256 5b62771ca642554e69e467195c0fa3b2d0465e808c7ea06187a4da10095980d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53b24991c2a1b46855755a3bc8892de6cdc1d2cf217130873500987facbbf235
MD5 7aeddfad3351e2b96c91c8e3807f4c89
BLAKE2b-256 58170c97a4140edc3c6c8ff5dfc309476d345c6bd448c3ec55dee96bf680227f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4511c69b38e14ae97a4e3f8e16d9b045b2e1edb8e381f5f19d9335d751f25c2
MD5 061c9ed3bddbed25fc1d1e6d0a86879c
BLAKE2b-256 b0624494bcc9cce2cb21d03d97eeea13531ddee09a0566a57f347c4a42f40a51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 288a1746638165e06caf8781010e01173f77362b8fa3e5817455090272b084c0
MD5 c41edf271bb7700809d69ed6a59ac768
BLAKE2b-256 4991f5439a87af9a8a20163c242912e31dd57ff6ac967feebaefcbacbf6fc43c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f88065a586a07e2370a894d6517a925dd67a4f69e77f32a5f350673e09abbc07
MD5 1b7de8c8bffd4801b86b1126ecb4d170
BLAKE2b-256 d64155088e38ffde3707c4ac041b950bc4b9ce83bd8ef57654a0bf6eb5db7a1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dde052a47811dcff32eb794170ef685a6338c5a53db775f066d14a27845f26a8
MD5 62980fb6d3e1951b9b9adc51fb0b74a6
BLAKE2b-256 b0b77f1a7a2445365ff5b7676a34c19c5126b6e23dc97fb7b5070defbf9c3b6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a60b3337ea6e122a118f2719c35d8b7e1ad66a1e68abe227acc560425750a42c
MD5 5a05314da5afd7eda40c52c90e9689a1
BLAKE2b-256 b68160a06e589257f74f63bfb6f993a51414be180c2b6cc8363829d29d28dd87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4f9c4e080b6cc1a33634586ccffdd9001011f1f324294356d9ad14ae71b7742
MD5 6c4be52dd45969cd6362f6f7a423534e
BLAKE2b-256 a4e0804c31e0cc96eb6844fcb2aff89c84cf045ad864e46ea35cbb7b3fa103e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c88da02182912d0f705efa6cc772f4ea9335318519ce20423daf692a7a1f0322
MD5 400ccf79d38ea29905082c5fa2f82726
BLAKE2b-256 f9b9da4ebeded059439e4d9674768e0ae7a472cff1bea3261c4149d195c5274d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.13.0.dev0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 743.0 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.0.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 63cd632ed427cac88e52f5b2cdd7d649136207174794583ffbef56b2b97748c5
MD5 827275d20a6653e13e7b835917bd21ab
BLAKE2b-256 f35b63437a9754ad34d8203dce87496ff564a51b537415526b332f046d7ab63c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 596a715e48b48c7f1129886f3f2c54a4407d844a45c548b9ce3093a5ea8abb61
MD5 bad6a8f82fe0ec3ab2453cf073be6312
BLAKE2b-256 deba390c21ae4ec2fd74feb7632a514135ee1df214b93028a8d4419eaf82b5ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5966be90dbb8a4a7884430165d684d5c1289b1c8f9f5eb9ed5b09c9abc0c940
MD5 3f0a08e6f72f4fcc138fb6b851d73a6d
BLAKE2b-256 534f8c649aa29eb4f236eb2300aff6cc38fa61bda0ff18f651967813b91fd91d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ba62896a5d65b1ed2ed0b04acdaabd44cf4179e7928e1fdaab1fce0f8d78e00
MD5 6fb589822b1b9df7f229e3d6c376f646
BLAKE2b-256 aef2606cfdc5608bab110d60b2ff387940cd404f508399c3e264b142564b119a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b02c103a77d85e6b406b737dc474a638d7474df189eb814c5b8731c159dc8de
MD5 d5712a473a9ce2aab8f8b11629837b37
BLAKE2b-256 178c74b6ba5d0eee3e74434ac17280ed89de2494bb3182a9744d741540822441

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6a204b56528804cecd15c31341d0310ce0a60733640063d14c3bdeb33ba6c713
MD5 8bca9842fa9723cde49091a4d61ad63b
BLAKE2b-256 63c688cbbab91ed107af34f435e2ca1657dc5562ac3b3d906ab9139b0998c81a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9cd417a569bbb13299019ad3beadf682cc971b4c27a773e4a3577d5214543b32
MD5 0934b64ebf45473d88c1364341d45e1d
BLAKE2b-256 0f98ae25d83dccb3395aa2db00dceb6c86f4e447629a731e71424ca61232da43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 086094ab83c5b3e598984f235485289ac7610afdc1dff6cae7a7337e04ecb5b8
MD5 d0b09a693408822ad1bc8777412e001e
BLAKE2b-256 4f34c1582ccb5a4b274472376268bba0813cd856a93991374838de8715cfea4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd15d221b6243c72adc9740162c4271cebc6b3d5a6800f49422c0ab544d7232e
MD5 eb3a41126c46fd2fcb9ea98a1430fbbe
BLAKE2b-256 6f613640e61fb3e961eff714003a6cb5d8710c1d521a42f9f95368b42fc947fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.13.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e08b23ea7bdf74b99e270260e1105ddd2609a9c07f1623c9a49147325908eaef
MD5 228c46abdbdac856e01c5e9c058ae15d
BLAKE2b-256 bcf310ca6b248975d75a11c1f2445ec14c0575d7f589160c75bc48d20b9d43a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.13.0.dev0-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