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. PyMongo follows semantic versioning for its releases.

Documentation

Documentation is available at mongodb.com.

API documentation and the full changelog for each release is available at readthedocs.io.

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.10+ 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 backports.zstd when used with Python versions before 3.14:

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]

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.16.0.dev0.tar.gz (2.5 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.16.0.dev0-cp314-cp314t-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

pymongo-4.16.0.dev0-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

pymongo-4.16.0.dev0-cp314-cp314t-win32.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86

pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.16.0.dev0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.16.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymongo-4.16.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pymongo-4.16.0.dev0-cp314-cp314-win_arm64.whl (998.2 kB view details)

Uploaded CPython 3.14Windows ARM64

pymongo-4.16.0.dev0-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pymongo-4.16.0.dev0-cp314-cp314-win32.whl (990.5 kB view details)

Uploaded CPython 3.14Windows x86

pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.16.0.dev0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

pymongo-4.16.0.dev0-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymongo-4.16.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymongo-4.16.0.dev0-cp313-cp313-win_arm64.whl (942.0 kB view details)

Uploaded CPython 3.13Windows ARM64

pymongo-4.16.0.dev0-cp313-cp313-win_amd64.whl (960.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.16.0.dev0-cp313-cp313-win32.whl (935.7 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.16.0.dev0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.9 MB view details)

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

pymongo-4.16.0.dev0-cp313-cp313-macosx_11_0_arm64.whl (972.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.16.0.dev0-cp313-cp313-macosx_10_13_x86_64.whl (973.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.16.0.dev0-cp312-cp312-win_arm64.whl (894.0 kB view details)

Uploaded CPython 3.12Windows ARM64

pymongo-4.16.0.dev0-cp312-cp312-win_amd64.whl (908.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.16.0.dev0-cp312-cp312-win32.whl (888.9 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.16.0.dev0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.7 MB view details)

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

pymongo-4.16.0.dev0-cp312-cp312-macosx_11_0_arm64.whl (918.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.16.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl (918.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.16.0.dev0-cp311-cp311-win_arm64.whl (846.1 kB view details)

Uploaded CPython 3.11Windows ARM64

pymongo-4.16.0.dev0-cp311-cp311-win_amd64.whl (856.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.16.0.dev0-cp311-cp311-win32.whl (842.1 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.16.0.dev0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.4 MB view details)

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

pymongo-4.16.0.dev0-cp311-cp311-macosx_11_0_arm64.whl (864.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.16.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl (863.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.16.0.dev0-cp310-cp310-win_arm64.whl (798.6 kB view details)

Uploaded CPython 3.10Windows ARM64

pymongo-4.16.0.dev0-cp310-cp310-win_amd64.whl (805.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.16.0.dev0-cp310-cp310-win32.whl (796.0 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.16.0.dev0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.2 MB view details)

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

pymongo-4.16.0.dev0-cp310-cp310-macosx_11_0_arm64.whl (809.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.16.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl (809.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.16.0.dev0-cp39-cp39-win_arm64.whl (751.2 kB view details)

Uploaded CPython 3.9Windows ARM64

pymongo-4.16.0.dev0-cp39-cp39-win_amd64.whl (754.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.16.0.dev0-cp39-cp39-win32.whl (749.9 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (948.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (964.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (969.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (950.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymongo-4.16.0.dev0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (941.4 kB view details)

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

pymongo-4.16.0.dev0-cp39-cp39-macosx_11_0_arm64.whl (754.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.16.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.16.0.dev0.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.16.0.dev0.tar.gz
Algorithm Hash digest
SHA256 94b5b7fdcac46d13e0e3e2e6929bff76042a74e13f832303de8c5361267873a6
MD5 e8e653e979f774628cabf6e49947d59f
BLAKE2b-256 4a222f7e944547daf8c474304adb3e4f34fde9f29cca817b993530bdb135b12e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.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.16.0.dev0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e7df06098ef920e65e450ce281a1cc1d443a2f403ddad44d5b70438c0ec973d4
MD5 cfd13d904b3bafd581de492885f97482
BLAKE2b-256 15aa6d367f1497f67a86f6bbdb258fb7c38d0c9ede957a10d28f97e896f6e38d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-win_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.16.0.dev0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ef2e1582edbed69545ba98cab2b49ad5242a41d3666cf81e73332b245c1dfb6a
MD5 a3e693607699be52c7aaae78fd1dd615
BLAKE2b-256 ded97e1acbb73dcff588493a77122584fc169f6bf7fd388d94b0414bf074c45b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-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.16.0.dev0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pymongo-4.16.0.dev0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5a0cd00ab7efdfa00652c8368d5c48efd645a54cf0d5b4f99a8b89d7bdd3891a
MD5 c85dac1e5f3d2239c7fd03b34e5c613d
BLAKE2b-256 69dd19c3a7d32d91962f5ba28185107b3a6b29a305f077953daf965b09a82383

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-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.16.0.dev0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd1b70acd94343f0326dc7be7bc9a91b43ac39dc2ef89e1d6766c988cd38bdb3
MD5 3dd8db182e68730ef4f74549e8e0bfc0
BLAKE2b-256 3fa0fa8e88fe5253230e241388a34802cfce3b8d7488798a9d12b3eaa3eeac2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.16.0.dev0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 659feee249655dd4b19268c050812787707ff9c4693c58ffb3e2218a7ab4e713
MD5 ff68c858a9d4e762c5680a3c09034246
BLAKE2b-256 da16989d89eaa0d885306437d5970e15888389616ab1e3b50834336ce049ae90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.16.0.dev0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d9afafaa14432d298fdbef551c7a9f45487142f5267046d8af754e8c9460c841
MD5 42df66f5dabde5ee26424f5c636eca45
BLAKE2b-256 16f7b90de4a32d65e1ac4f8e729d3e7d2451773b7040922b62f52529b0a352eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.16.0.dev0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 062a00cb49c822a0e60dba5c383803fe72aa0d071f12ae6a96ee09d17e2f226d
MD5 f59b0ad0ccefcfd08ecf7f4df1e1aad1
BLAKE2b-256 d6a34ebc519b329d662dfe3943a0242c29bb25cf101c65944a1010bedd7f69c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.16.0.dev0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 67b7c81c16d5c9dda2f9efdb09044b406511fbc7711cbc29f234f5ce880877cc
MD5 5327e622e1fa763b5f0b15bd1611e715
BLAKE2b-256 2497142fed361e13501484744d890b9c6edd773ba573932a747065161ca9b632

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_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.16.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04b59d9cb309e1dd7f90c45000cce970bec04bf2ace4da47d23f38f958685b2e
MD5 b29bc3faa2fdf75b6799def728c7fdb6
BLAKE2b-256 aa0be30e01aade21fd1b675ef55b78a31b2c19427bda51cedef934a00f767c98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-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.16.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f4c8cf79d5339801998fa6aceda44dc022ad342508ae9dbe5337eed65aac6778
MD5 28e347ebe891337b0d18a569da102b6d
BLAKE2b-256 f27a0a5eff7d8396aa1a19da4f34294b31285ddb19a9d2a7ff19fff885281e46

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314t-macosx_10_15_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.16.0.dev0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 112005903b99a6254045bbaa38dc1a30de92795d2ad9d9ef7d9589d1513c6640
MD5 984fedafa8be247090e187fe26c899af
BLAKE2b-256 df9741a7a297f07818df60971c35d1dd5aa992d0bae5300a8de20605921d5e66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-win_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.16.0.dev0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6083e2900b1c9d8408a69ebf851a5ca7678339cb2811db77a651b59c8fc41d09
MD5 2643128afafda86408c3c80892243c60
BLAKE2b-256 be68f1e97827b8cbf86ae0ef9330106da4d86591acbade48af84eb3620183b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-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.16.0.dev0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymongo-4.16.0.dev0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 990.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8b3be52dc85d6e8de40d6e4c062420c2ac69219bee8da18ea42725e1eb0e9d13
MD5 548958787fc779014ec739dc06bd7a36
BLAKE2b-256 cf30573012e6f2af8c59d4e99c020ee252d226372c36e39605fdc3cf55bc7a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-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.16.0.dev0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03e6733595d5febb73c182c7d507e78d8af6395fbf65a1d43d39f2cd46a62ceb
MD5 12c6a040eae1fd1c14a871e40eaafc0f
BLAKE2b-256 e9881d2e7b937d278ec6f221a595d4800755567e51aee79cb673a0f07c4a8d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.16.0.dev0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c75d6f742447044aa7e57a0371c34fbe83afb651cc48674c487fb88aa02018cc
MD5 18054b735556e6205399c503976445c3
BLAKE2b-256 42184b92499173aa2d73873c0e642f5377b5f487bfc9a57a8b024025c25777fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.16.0.dev0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4085391c516bb5d359fdb42cf5f151d191b6777764305f59be394b13f16a9b78
MD5 efad1e62c8d7d08d2b59cb4800431201
BLAKE2b-256 8b11c9e27830f589412ace04d1769296cce53124bc68042c476bd90118bc10ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.16.0.dev0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acbb7bd79d5f3b60529e62d2ca05670ceb0c362c0dfed624e1c7c87d4801f18b
MD5 fcc35177b04cea2fd1898b6c05ca5a2e
BLAKE2b-256 baac55b43d2d36162f6322c37688bf62a3acfb0705997751831ce6b3d9a7ec80

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.16.0.dev0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b9590f99ee41b1f5d63c379bc6d8cd9810c66ee9ca40e2724d15c7d383bead08
MD5 31708bbe7f1bc9f569d20291c2358355
BLAKE2b-256 e6831ada16112be8c58bccc7bf8458085226d77373a9669e0a2d3a1181578317

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_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.16.0.dev0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01e07467d0731bdea2633e91dd0f0ddd7158fc6278bd1e64922af05855768e24
MD5 4ff636bc7b1edb60c648535eb2932b82
BLAKE2b-256 88fb84992a847595efcc71b4e66c5c130c37f0444faecc01b534ca3bc218975f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-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.16.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd1f29b1411e9dd1b268d88822acfab55c46e6d89b99117422badf699ad88703
MD5 dd5d6b47be994406ac0bb373e0534557
BLAKE2b-256 007524c0d2e83b86cb51396fa347e06fb7f235f3ac76601efa3ccdfd2b2e1e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp314-cp314-macosx_10_15_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.16.0.dev0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8fb31bc4999f6ee94843f31ad133218ddc7f2e766e8fe7a8e5b4bc3fbded0899
MD5 7ee6d7c32e378eb121bc9bbe1141ef19
BLAKE2b-256 7d041771550516d106d2b4b7544dc919d47cdc6b15e2c6b574fbc09b27c5ce74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69d931746941a4eda0fdf8951ce4596ee1d93681506f6d44555e8ca59b061111
MD5 5fdeed3f3f78501434b71155766f04f6
BLAKE2b-256 b30567b4735f742d97412d0e46407c9d7c28ba8775807fb32e80082b9b1fa849

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.16.0.dev0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 935.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 be6b7acb7e1b8a270dced3f4d584b1a0a4198967205f526d4c2f1c0bd753fc93
MD5 388191f21d4e2ff2c40a3aad301740ea
BLAKE2b-256 9948209bad3c6aa9e0c437deb13d3863ff6c02d84db8b7b3f8316596bc41204c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c7a9a84f8d87e1ae2829f13398aa9202e155f0bf23892c41743920098fc8b2a
MD5 b74cc6cf0eabac283ce16e6b29a67483
BLAKE2b-256 3e6a67e368d95d42b9e09d9eb225d7e1b04e4a13f1bf0e077cb95930ab1abfa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.16.0.dev0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d87cf8a64700796421eccd386a814df7d8f776ae94170dd8c23dc86b3fda9d8e
MD5 34ebdd6e4e06632f5a6513378ac0e227
BLAKE2b-256 d42b8b1256e09f350f3d8593df5fc2b790bb389472dc8ca40354d855c98af8c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.16.0.dev0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ab7bfdf48d4ed8e0f44a91ae2fe29d9d2eeec260934fe672aa1941df582232fd
MD5 b1ee183fc169bc28cbe81b5375ea37dd
BLAKE2b-256 176785cbe2d71ad75bb6aa53a7fa0ce1196ce20d725f0fb71e612da5ed95afa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.16.0.dev0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d5868a0438718e6576e155114be0daa9cdb888b29f733da29035a46baffcfbe
MD5 79e174bde0984103eea92c5962ef58b9
BLAKE2b-256 107479b76d241d4feee82c3af198e02cfb658be67df4996181b3d975eb9961c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.16.0.dev0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1fc9e23132adf13305454b03f4131ce435e1185715210a9f3e46a67fdb7eaf99
MD5 865a41278a83d9c482bab907144cd1a8
BLAKE2b-256 a0674344e60fa38bea7eeb06502428ce4220d5bb72e90a537cccd6083855c588

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_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.16.0.dev0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd55a721486771e8245b5cb2ed68924ba0f02b6a92203b9298ae46ce10e48381
MD5 5d1866740bcf18b00a3ea4d7f3954b3f
BLAKE2b-256 dc6b354d475076eafd87fd70eafc17412cb98ee940dec277ae4d97424d388674

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ea0db81374a4e15fb37e37e6dfd90f4c346272ab46f22b4759ef222358819cbd
MD5 3821d5ee2439eb1aa18133d729ba4e15
BLAKE2b-256 04921bdf236af09c6847f7372f21db4a924e1ca750665ace6bb915e8c9afd140

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.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.16.0.dev0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9a91f554ad10cdac0c583e9853da038af725abf23e0d48eca4c0f30210628f67
MD5 06af5014824d91be47d98831bad210b4
BLAKE2b-256 68063b45caf1aa509d797b5baa1059111f5ed83038c239e295d626c50b498e78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88c6f496eb9d25c0059aab7e4b680a1ef9c0998e83c992be3b6e91368ca3e9ef
MD5 6ac2c3fcf537d5ee9303e0e366793679
BLAKE2b-256 4f67b1e9f7f9e28fadd40a0f0dd76923b87f3eebc401b3d60a8eaf9afbf542f3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d85343b166e0d22d295b16b79c8de54aa0de77da1d942ed1a1ecfb854c770251
MD5 a8cf16596d5fb1fe632e2a04112130e7
BLAKE2b-256 88e4ea6baee99af83519a5e70e1e543b025256398566ea59c685554e0c65c3e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c095f5e4b8f51df1c079071fdb91468f5dc95048bf920afae75dc8e3eba63e5
MD5 1be9383937d75a63da94aedb3a7f1223
BLAKE2b-256 26c1526dd7175a9ab53ac04eac8f298776ecb5d08717bf59195d80d1b8ff7da7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.16.0.dev0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e74bd21ab14f23d843d0061cae6515a7f3a9abc8aebda2ab6601b820f926f9f8
MD5 d6132a67af6f315502d74b62a8f7f95e
BLAKE2b-256 534b58e07c106825504bf3207df95867c6ea88a28d355a39110807d261c1a314

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.16.0.dev0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2b2ced93541a061c29af2df90392df72e583b5a993b067b60ae5321068ba21ca
MD5 27726012c2661d0e79c51e7b01707045
BLAKE2b-256 34c7ee3c67af8a92e09c819f408b36ac14e18159134b218c0577fb02c2e3744d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.16.0.dev0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ffafd151073ad4b94dade9e119387a0187f3dc27357e76ec45e922b24400348
MD5 7d07f717b7b0cbd4c9245808ca7451e0
BLAKE2b-256 ffa67d949475f9e04f984af441dec17ba92882dbce17a2a3b50d5008cbabffca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.16.0.dev0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b5770aee9de560bc1d79cf42114383fcac25622c6dc2054d36cbdc84dd2b4df3
MD5 850aaf46a8e8fed0157f3cba454273b4
BLAKE2b-256 57d9159b5b69b112c867c27c03774bc18fcb0222069a4e914974b38ec00cb39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_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.16.0.dev0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23768fd28d6d61df8f1c92f61f2c298e45dacb998d4c78f54dd3fdc68a655756
MD5 da76a656d3296305d5a1a0a0a16241ac
BLAKE2b-256 58aba3a8e02f732db843b3256ab35c78230207e4fac6c07e775ef807fc7c256f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d5fcdb8d0a14b335328b64398fab4604d87d62d968aca51bfa5a58730770a4b8
MD5 be9904db601fccbdb08ff2391e55fcf6
BLAKE2b-256 acdeb252bd4154fea031ceb2da931cac64d2755c63005414c691aa717e1bc938

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.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.16.0.dev0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1d79298fb7e68962aac3bf10db4928bae161a15c2869fcb7ac8537b324ae4274
MD5 ad0a4b251f88821fa4892837fcc53e79
BLAKE2b-256 d3bc456b13c2009e1559be2b17e60f8622cd37e1053ca667a1fc0d9d48d88470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb056bfcc974e28310f220dd651fbbc25c53cd6c5066163905bd875eb2deb7f9
MD5 bbff9b2ec01e84e07c4e14a0a58771b8
BLAKE2b-256 689e3eb91223609dd288e9d8f062d0ddd9f0ce7d284c62dcf0f28911c80e52f6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8599cc893b2533f2732201375749159d2c2d60ba50d3828647b8f6a88a08c5b3
MD5 5b7255fc0332c981429ccc1d62888ece
BLAKE2b-256 e1f1da3e36c7165867db13a5c60ea6b3d3e30200cb0bb7b09930a46d7b83f354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82629f0ac00d66a379488607e61be6c7c95ed991706b24ba98f37b828b91b025
MD5 759dfbb73105eb26a2cfa19eee3b3638
BLAKE2b-256 47969c75dd9cdc7b7482ace3c7ea42e610074374790b8f53ce06125a33689753

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.16.0.dev0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5b7daef6d79a5522b255dfd430d5a7b59dbe92f4ef502f8207e3bb9e645d10c9
MD5 5308a073c61c71fa79613306f1f83c44
BLAKE2b-256 53569b76f6fd66449351d4baa3b4d582add24e78f2d8019642a95bf80cdd20c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.16.0.dev0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 df09261b8e296afde59bb9dac853eb254be728b02632dfb2237766488a0ec19b
MD5 72fb383e8915ea354b7967d638768f8f
BLAKE2b-256 ae0340483ccf524577023d8f8d1fe4b550c7f7a31640cb1c358cb32c19fc7b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.16.0.dev0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1e5512f211ed25346ccbc69e180e781a9b9d91d263606b32703bd05beaedff0
MD5 2c4d10eb15a5c4a8a2c1cdbed2c35ae0
BLAKE2b-256 5f0e9b8237f0f23e4825e94a2eced833239d7dac0411477d027d76822faa148b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.16.0.dev0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a4f73253a3c6c258d380d798136d17be01dcecd786950c99c2a233af2fa54a4d
MD5 56072321a7bacac23a5476653286e5da
BLAKE2b-256 c84798fc9297af1d6f86112c36d018db3bbaec80f3c41e36c188776daddc5b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_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.16.0.dev0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 870b39dad0a5391f1b92ccacb66e180fa57c2477dc964e3df8fe85c7876c1cf5
MD5 7ef21ebb064d13f84457d15783fcfcba
BLAKE2b-256 5181de9ed46959ab6e963147cb41974c55d8e01467cffd3b6732afb15891cbd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b6d725939d0249c1f98ea20c20615f3c966f8584fbfbc1c4b8d5437ca08d2da
MD5 26c81fa0b8a699a1dea482beebcf57a5
BLAKE2b-256 4e5dc446e47e87e504b3fe9c4a73bac4cf5bc20ad30da6a01f39a52ff87bf5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.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.16.0.dev0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8c1485d879f0635a0e66e7936425e479a5b43265be026e3c05bb7c61a16f61d5
MD5 bb49e8ed31278bf58dba2ec271a95996
BLAKE2b-256 915561ef24021889f10ea0c785a9350a76aa24ce4fb87d28cefc0fbfc3abf7b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 561489593a7fe6cbfa006e85be396133a3ba3ad599fad0ddf0ac87e8859e4c7e
MD5 e04160a3267836e3468cd0ab5a2c8801
BLAKE2b-256 6e503516e50e0e029310ada47c59529a317512e0ad6dc983ee8cb975d34c57b8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 197c504745ac9cf13839ef7b7953bc11761fa15130e8995d3181aeb211278bcc
MD5 e8b8f279fde8e6db19515aa7272587f8
BLAKE2b-256 0572acb21601759fc531f28a8bf7bf066c5618f6f860fd8bca8b7c990a7cb9f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0db9078a8a28de76ca9d625bd2f4f4c12010ee29af2aeaa76c7706026c55a4a6
MD5 574261273719b447c71b49e285a0c1dd
BLAKE2b-256 c7aaeb1ae38b53c77f588ab08b352edb29ee075a0157ea88b493ec40bd2984dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.16.0.dev0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 462e6d89b93308019d50516c1384e5631dbc61807bc0b0ba1d0b5a194bf7e27e
MD5 b2f6f6954822f9572c4c4d7114451bcb
BLAKE2b-256 164cc493274a208c4773fedb26b697357aff9f1a90e99cfb5680adfea11b9da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.16.0.dev0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4e7167ee2c2ab5adf1e0d8005ea7fd7130359455eb86b42a2a7e8a2d10ab4505
MD5 c8bbe78371d99f504147744976a05721
BLAKE2b-256 76b94c3515cae111808bbd1145c7484fd2dbe55363a446650fd1e85076645ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.16.0.dev0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b37ad9a220e605989ad49b211febcf0eb59c9188ab17eed3dc3244296e464883
MD5 d27aeedc0f6b97034e5cc5faf89a1d30
BLAKE2b-256 03e3ddf4543af63d05bee9b66205010c7fbac904896d34137daf70ecd68c7227

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.16.0.dev0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 56824143818b58872866348174b43e8da80f152285f12a66af3e3e3b8435e9b6
MD5 ccf77c61b1e3f827481cfd7f6add8482
BLAKE2b-256 e5cb3cee25a8511f87fc06d7008c47ec37e7942d84841614e8b9281d72b02772

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_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.16.0.dev0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54e98b7de864154a05e81a9f53c217b89d043f0896a47fd5bc697bcaab105f3f
MD5 abbfd2fde2f616004058a6ff09874c06
BLAKE2b-256 f3beb9c14ff8bd3324137f705c07471bcbefd11741b09adee30b9eedd426d223

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9d905a1903930d0dc60d2bfb7ef9c289c6732e4f718f288ce84da66a17f584f
MD5 55575d6db7ae03d628506dd087a3e578
BLAKE2b-256 e02d568fc2ca6d3eae906522b8c0c716b97537b06c5cfc316f3ee138e2e37432

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.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.16.0.dev0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 41aebea5b9fb013f054d2fc612ff81daa758886c79eb1b8b7d252776b4ae75af
MD5 abd4852110f288b9b3555400174b31c1
BLAKE2b-256 6fb6c04dfd5fab5baa4c5e0b07710f02277fb50f6306049a21b3386a225c0886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a8a1e390002769fa102a1247fe9df78aa98fe6d9138e55797578dc953796479
MD5 a0bb79b2a0aaaad3756838158638419c
BLAKE2b-256 696c06fa04092e38c89fba6c779a64880a52cc2a5e6fecfdfdf9dd564d933f7c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5c959f3df0001a65ea2e634e7c3660b7dbd95275bb8ffb490941e033539ae0db
MD5 e464a90f65eb7a9236a5e62f059e09dc
BLAKE2b-256 49ca138311ea3a0a55019f5e710df0f9cf61850e0a7656072e81105dea45a201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e47cd339b5ef88fd594743870ffcc473be9f6efa63eae7e9324c108e059d015
MD5 70d08b0bb4a12c2141c214513999c181
BLAKE2b-256 1069ddf8462cdf6dfc7723abc0714a0523d6c4fb3e9fdad566c5d1330d0827e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.16.0.dev0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 19a69bb424fd73e3715a03a76636a12fb177c48ead5d060970d1f9be910fd02a
MD5 bd0da1f336ed9b1d9f1d362ae9651b69
BLAKE2b-256 723df90d3eeb3c03ba34fb3349355b7c65b416d850dd5709c37403d7b3d0ee22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.16.0.dev0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7c08ec1338cd235fa8e47a6431e555477895d3846681e61c133420c2649cb786
MD5 8290109c214423f267bfe6a26eeb74f6
BLAKE2b-256 165676a468a750a8db08158a1b1ffe8357c7a1bc7036598ca7b838f04bdbe220

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.16.0.dev0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7c464886e2fccb21b86e6fc5841168b133c458d6f3fc7ba160d02e4f21bab55
MD5 3dce50580d9c1db46559530c4cda967d
BLAKE2b-256 2e2fe4792aefa1bd5e4a528a2fcff870e47a736d3eb7a4d1c3301daea820a2ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.16.0.dev0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7384a2ab08703e59e6c671037c2afc3e85ac19a2cb30868758805d7c0d2ed124
MD5 fd56906bef01912d6ddb9d93efa43345
BLAKE2b-256 fd32a096e641526e76d2dddb9f2a70e0c91a03bbf31e695c27b23292e7b2bfcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.16.0.dev0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_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.16.0.dev0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8086a44db7fbf2a5b2ae16cbd3ebcfc153b2dbc89f46e84721c922e9bc924ea4
MD5 14c241ba8f9bd37dd4af84a5ea55f9b3
BLAKE2b-256 adf77a2334b7b096dc77434d1ce6c2a9eac9fcfd44f3050c4366022ee1ee232b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.16.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b94e39f855a3e78a8dbec7dc57bb94e0caed0e590651672212dbd3d23927010
MD5 ebe187b4ab16e08b5b19c3c03737da0d
BLAKE2b-256 90195d459403b33f213caf2513bd81ed7406c9bde215b4d04342262e8b8d0141

See more details on using hashes here.

Provenance

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