Skip to main content

Python driver for MongoDB <http://www.mongodb.org>

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status

About

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

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

Support / Feedback

For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you're more likely to get an answer on StackOverflow (using a "mongodb" tag).

Bugs / Feature Requests

Think you've found a bug? Want to see a new feature in PyMongo? Please open a case in our issue management tool, JIRA:

Bug reports in JIRA for all driver projects (i.e. PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.

How To Ask For Help

Please include all of the following information when opening an issue:

  • Detailed steps to reproduce the problem, including full traceback, if possible.

  • The exact python version used, with patch level:

python -c "import sys; print(sys.version)"
  • The exact version of PyMongo used, with patch level:
python -c "import pymongo; print(pymongo.version); print(pymongo.has_c())"
  • The operating system and version (e.g. Windows 7, OSX 10.8, ...)

  • Web framework or asynchronous network library used, if any, with version (e.g. Django 1.7, mod_wsgi 4.3.0, gevent 1.0.1, Tornado 4.0.2, ...)

Security Vulnerabilities

If you've identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.

Installation

PyMongo can be installed with pip:

python -m pip install pymongo

You can also download the project source and do:

pip install .

Do not install the "bson" package from pypi. PyMongo comes with its own bson package; running "pip install bson" installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 3.9+ and PyPy3.10+.

Required dependencies:

Support for mongodb+srv:// URIs requires dnspython

Optional dependencies:

GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:

python -m pip install "pymongo[gssapi]"

MONGODB-AWS authentication requires pymongo-auth-aws:

python -m pip install "pymongo[aws]"

OCSP (Online Certificate Status Protocol) requires PyOpenSSL, requests, service_identity and may require certifi:

python -m pip install "pymongo[ocsp]"

Wire protocol compression with snappy requires python-snappy:

python -m pip install "pymongo[snappy]"

Wire protocol compression with zstandard requires zstandard:

python -m pip install "pymongo[zstd]"

Client-Side Field Level Encryption requires pymongocrypt and pymongo-auth-aws:

python -m pip install "pymongo[encryption]"

You can install all dependencies automatically with the following command:

python -m pip install "pymongo[gssapi,aws,ocsp,snappy,zstd,encryption]"

Examples

Here's a basic example (for more see the examples section of the docs):

>>> import pymongo
>>> client = pymongo.MongoClient("localhost", 27017)
>>> db = client.test
>>> db.name
'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), 'test'), 'my_collection')
>>> db.my_collection.insert_one({"x": 10}).inserted_id
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.insert_one({"x": 8}).inserted_id
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.insert_one({"x": 11}).inserted_id
ObjectId('4aba160ee23f6b543e000002')
>>> db.my_collection.find_one()
{'x': 10, '_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
'x_1'
>>> for item in db.my_collection.find().sort("x", pymongo.ASCENDING):
...     print(item["x"])
...
8
10
11
>>> [item["x"] for item in db.my_collection.find().limit(2).skip(1)]
[8, 11]

Documentation

Documentation is available at pymongo.readthedocs.io.

See the contributing guide for how to build the documentation.

Learning Resources

Testing

The easiest way to run the tests is to run the following from the repository root.

pip install -e ".[test]"
pytest

For more advanced testing scenarios, see the contributing guide.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongo-4.12.0.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13t Windows x86-64

pymongo-4.12.0-cp313-cp313t-win32.whl (973.7 kB view details)

Uploaded CPython 3.13t Windows x86

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

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

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13t macOS 11.0+ ARM64

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

Uploaded CPython 3.13t macOS 10.13+ x86-64

pymongo-4.12.0-cp313-cp313-win_amd64.whl (947.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymongo-4.12.0-cp313-cp313-win32.whl (924.8 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.12.0-cp313-cp313-macosx_11_0_arm64.whl (963.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pymongo-4.12.0-cp313-cp313-macosx_10_13_x86_64.whl (964.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pymongo-4.12.0-cp312-cp312-win_amd64.whl (896.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.12.0-cp312-cp312-win32.whl (878.5 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.12.0-cp312-cp312-macosx_11_0_arm64.whl (909.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.12.0-cp312-cp312-macosx_10_13_x86_64.whl (909.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pymongo-4.12.0-cp311-cp311-win_amd64.whl (846.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.12.0-cp311-cp311-win32.whl (832.1 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.12.0-cp311-cp311-macosx_11_0_arm64.whl (855.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.12.0-cp311-cp311-macosx_10_9_x86_64.whl (854.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.12.0-cp310-cp310-win_amd64.whl (795.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.12.0-cp310-cp310-win32.whl (786.5 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.12.0-cp310-cp310-macosx_11_0_arm64.whl (800.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.12.0-cp310-cp310-macosx_10_9_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.12.0-cp39-cp39-win_amd64.whl (745.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.12.0-cp39-cp39-win32.whl (740.9 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (936.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (943.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (951.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (934.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (935.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (908.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (925.6 kB view details)

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

pymongo-4.12.0-cp39-cp39-macosx_11_0_arm64.whl (746.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.12.0-cp39-cp39-macosx_10_9_x86_64.whl (746.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.12.0.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.12.0.tar.gz
Algorithm Hash digest
SHA256 d9f74a5cf3fccdb72211e33e07a6c05ac09cd0d7c99d21db5c2473fcfdd03152
MD5 c468c1d3c9639e8da74cb3c178de7e6b
BLAKE2b-256 f42c6f26578242b10ba075be5dca5886e0a594e806a0a317d79634f6d3c1d193

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 053e43722c0d76e5798abeb04f3a3ca69f8bdd10c3b56c6705fd72bf815dcbb8
MD5 c9dd5bbc6108b94bc7a6f828e999791b
BLAKE2b-256 673b6d39ac15e907cffc4c4a7219f6a808ee53060a1dd524f89bde19db304e64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.12.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 973.7 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.12.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 2e39fecf539d77a3a4fbd332d5e3f375a1ec9a7b2401d6f27aaf8af5a1fd23e2
MD5 0542facaa6e6e51c8a9fd65c6470eeb1
BLAKE2b-256 010648fe2df62e28a510d171a511d6db20e5e56c77b4d48edb42f1d07c65795a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 805b18b615ccf23b6fb2ca815f5580085b53acb8700c017bd873e781e90caf89
MD5 8646e90591e22d75e3452d363dddcec4
BLAKE2b-256 fee44584106df5cddf331ef75b52b345a1b0b68bda0a3823b35143d446795efe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b65cc36d8ef2dfb567a00a81ad16b7ef1989d3092367aff24fab027be7168cc8
MD5 520f8634ff13198c6e735fb3c363b906
BLAKE2b-256 914d68853df5bcbfc949cfde77b5d8658127e168e62209a567eb96ab0114a961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00c918c5f17360ea02da4ef268f2573967ef453c5ccec0caac2545be95ef478e
MD5 5ff0f2f9df366a9d47cfc28ee145cd5c
BLAKE2b-256 f46821bbdca5f79d482ba2ca85aab98322d49ce0a00035333428459cdff01ea7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff17fcb5184f9511cf49b8a62f8f038555c3a07406f4944a8afd614a3d23bbfa
MD5 42d51909cfc2684eed9a551741c61513
BLAKE2b-256 01516571686ebe88dc6f8b2b0edb1156b27e06b99b68e7957798e831343d38fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f0654f4eab9c72ddb912b0c393dcb6d66936d9e2141f057bb272477bbc8cf8e
MD5 1285b2fe773822c769f1a7ce7f30726b
BLAKE2b-256 f06e900e89ba6d79a3c602cac9f7489f0a391d75836c472811bc717c0712fc05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d6cb42c18ce1eee3577a6604a53d5e4e2e8c24b05e00c0749e5bc9220977431
MD5 8ed09f6164d1b6c64510a95293f77cde
BLAKE2b-256 dfa12735ce11cc2c299893cf401c2589f5e6c7f043cd1e595b96a4c9d8d02e46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 992549d1022ea2d8e7f93ece8191ab1f84dfe157dcfa043b259d9743ee3188ad
MD5 f167f87a046bf6e695fc42953089cebf
BLAKE2b-256 4dbcc3cd3cdfd638306e1afb60d300328c416f825ba7bd098f49086d91b47572

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 926bc4792396b6c4da40fd7874921564e69b75c2028833318271bed808f4493a
MD5 a452fede0de91bbbffaedee10ae07793
BLAKE2b-256 7a017d21f80c0a354c4521058ed22837627f34a619022e1cac0dd8bbe1febb92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.12.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 924.8 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.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a0bc2a32763b6fb76ce701b270d88a3939994d76e64088822e7dc2a8d6a69926
MD5 17ec11d879b3a00417b137be6bb20098
BLAKE2b-256 21fb6e0f673f242107b0795a05ce1ba6f759c1dd50258004e93d563295df1163

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0be2192be8e6aebe5b0500a6e69d914cecea7567e895edee2d3069c0a2b171b7
MD5 16c4c2dda5c318b31500a73da554d757
BLAKE2b-256 2d51587137e37e581776019f37cd7d118e5909a8f4d5520efc9aec57c9d0319b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32863d54beae2b7d60bd33659c56e6b7a81e7d9082e1cd7cce62e8451a164ab8
MD5 42981e4266a5dde443fd52b4a25b8b96
BLAKE2b-256 5e563220dddd9098114218caec7289b598100a0831a199bd3ad91834766a87eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc86d4a127a43d27bef9be4f1e501847ecf8e0d530c58c34967dcbf3bf1a9fff
MD5 8ecded86fb2e7b825740bfec0e59561e
BLAKE2b-256 37459cd03ee2e22d2a41288ca3bdc731e7d49defedb34fc2f51a98865fca9f3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e5328254fbe0aacdb9191ee76e5df1fa36778770f1fe8b99d8d9f51ce12a8c7
MD5 2d7593a13de643ecacfea265dde06341
BLAKE2b-256 29206f755f91440d11bf71f239b10ab24618b6b79ebfcceb458cfdc18c9f29b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab5a3c39bb6a84bf38149a4f9db51e55686827236af96cab17c65f8346b3c1e3
MD5 f02584fe55d38db440b775a9e6db66d1
BLAKE2b-256 5651e0089920c57a26e1ed36da21b6234b9200792203ef2877eeb83637896913

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df72eeef20c9246eeda9adfa90b4a0e3208be5b840850e22da599f95fc8048f6
MD5 7ccee4af84a622cf1f09225208d094da
BLAKE2b-256 412bc00c21b4319fb9e51d0e4c32ff3d9f3cd29e9890375607755ab258d54a46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c44f44b48bdf793b30a83232b5abad2cda1d7c7dc3bbe9e4a952a8b3b4faad1
MD5 f88abfabad2359b291f850452346a9bc
BLAKE2b-256 8dfb93b664688f7cbdddeb936d8475ce0dd650a2aaae0e3eb235c7f65c5421c8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab1a1b82b28d9ddeff93351f2e9e803ca78258e447c13c500294780eb2665a03
MD5 fa45028595a81e714b23b6710be1adf7
BLAKE2b-256 f0129e278f5d392905980097600ef425816413a8a205c68a5b1583d38ee918b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.12.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 878.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.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e1015c5689b3013c69802d80ef661c8c094d83d0342a68d45ced52c53f412f29
MD5 9b7fc92fbdf4b2e6d8ea41672a677eeb
BLAKE2b-256 d994b0f8a415dd6226b6ee6ef54c63d6fdb2f15e404a41db33fbb743dc8e79c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba90eb88e604778b767d82ff5165de4ac5135b93c32a6931c77ee17bba6a8daf
MD5 c2cddf48b05e47752a2d98d95e58b450
BLAKE2b-256 7fac48db9f7b1a003837280818f5a640d182328e28c9dc8e02870abca0c27016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c906365c12375f3b4eb03b8dda71711cfe0670272d98a47c15eb8d311b03351d
MD5 7d783ccd04b4a3035fdb0b58944b5ab7
BLAKE2b-256 5a223ac91f2484620cd003db65e6bf1552bdb29fc9cec739af248b1dddf6b04c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77455951881e438b6ffdf449b31c3af4b3ed6c6af208de3b9a719d5d444785b3
MD5 d56089b90ce81aa5ec0823d6f0778354
BLAKE2b-256 4ee108f5dec281fd1fca334de4ed058ebf8eaeec9a0c738bdc9f1cbca3b10fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f8222022357cbba9c024535816200abfd74fb0b7356afc13ce1533515b625af
MD5 ba90c6229999a787ac58287c654e3749
BLAKE2b-256 97ba73c166297287ce45665e4cd1157490a4270f83edafad5a87d94944cead1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e5cd2c837a2ee21e6f0a2da44eba44be1718b7db0893c0148caa309b0388790
MD5 91904c778adc345d2db016d13a13526f
BLAKE2b-256 48da6d45ce95288c723d70dd12a7b3832038c0e4a182ed1463227fa7f4d745e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14aade4429997c3060e0df945344fc3bf7fb517253a2445017d9c86b100f4dbc
MD5 f0f260ce310c03aa5e1e911434c8228b
BLAKE2b-256 2aff5e36500d4ddbc091558b3998fce16b611123be133812824cbed389ab63bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7bd4358da17705c37f29594b799c9ca65b4b1eb17cb0c6696c591809cdd973f2
MD5 52a4dd84d2ce3a3685321b57e5035b4d
BLAKE2b-256 4f3c36abdf6830b382213f7e33ca86968717d8b89752f4999e5d3bc5f4c0c174

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8aed3e58a6714aaed324e56723e9f510032ad0f7756430f4484269f4e33e32f5
MD5 e778576e2db7d2c3123637a9af6224ea
BLAKE2b-256 27b0781e7c2020ec968bd6267df257603360a4d4510bf316abf08120fd455a0d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2eb9179252fa6a6ad98e912e821e9602e02a54a720eabc482e0394c5efcbbd09
MD5 dd1583b12f4dad33edea6b7259ea9eee
BLAKE2b-256 51d7a78af0b28f229166c0e7ed01ffc02976c8b0123eee569a9fe336e83e00ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ee07a2eb48c583354ba13b9c0b9f904f22f0a7ab349e37852da3a85f3f5bf2a
MD5 78b18f7bd3d62c8fabb2ade304823a1c
BLAKE2b-256 6fd83abe54ab44675d044b02b896c95384a19e3127dd501a4ed5f77257187a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb76c604e834e2dbb2e3675b298e0ff01e56cd3c36ccc7d01fafbc326be0d48a
MD5 120e108f64b96b96805f01552d54dd8a
BLAKE2b-256 fa3bfc697ad5cf31f849ce2deaeb3fc9b636d6b06e4c8c162fa20aff54156389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c2d527443011cc1ff92752f0152e683184d30b1b95f758809efefdd6246dd3f
MD5 2bb9f9d071b56d9dfdd8e61448520a30
BLAKE2b-256 b4fe5ae9b0cfd691d8f7882856f9b884d4a40cb96c49cf85e006b508ad55cc6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5b5e30587e532906bd6dd1cadab374cfa72c211419e56ebe125ee1fb01bd110
MD5 874d1d7b64899daf749b35c908fad439
BLAKE2b-256 e987944766338b7cb646eeb21091f344ea7dff90e05c696520ac3e7d7985b9e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2af7665a9f566a696902e5d396a4bc0c096cc7a03d661aa67f64943488977ed5
MD5 902a9d3f34bef392dace181be9a6bcb5
BLAKE2b-256 53b695db5253a94959426a160d74789c0dc43c109433037c25102d69312bbc83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b751458ccd52fc84970ae8d4d354a781bcaac244ad957c635ff70b067f160d41
MD5 e6e99b92658b130357f30d6a45481610
BLAKE2b-256 4b5369d5b5b3c997c8e928f20fb00f1eb172bd92cb6a94b2d8b0fdfb0f1e3831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f9fa8dbe724306f7126497aa8adf1975203117143de2caf4edacb18aa83270f
MD5 f7d856ad127882984529522a8e24c91d
BLAKE2b-256 bcb251dce200d0e9d9e69d6f8a9b357521b399143bccb240f0afa2ca76707df3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ebd8096dadd5e6c067ac0afc98079bd58750020cf03fce97c67565352b38bff
MD5 38eca0be8b4458d12d3d94df7126f18b
BLAKE2b-256 f8de02a0ef552a246aee0b4e707bde2c42a7abc3ee4ff4c69812b2fa89cc22a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.12.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 786.5 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.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5daad50a6ac1cbfe404dd68e9a39d6bb06c6891cb3fe73a5bdc9de2033278d15
MD5 49175ed7aa8ae5d265c21d80d2d456d9
BLAKE2b-256 61e9c06b25c43b2c2144e9f8301214e90b55e8a4d8ae259c38d4fd74c53fd0e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caeff0cd9e78dd6d7ebb961bdbdf68b2ed63432157e7115d669a21fb534f656f
MD5 ef41e1e4ed9b571bbf923e11181be341
BLAKE2b-256 daee5adf7c7ccdaf7c545fb8d9a227d5538dc0b4732f28c2f7b24456c225cc35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 77f618a29c02bcf824915144957e257f7d7329e8ffc1b804fd80a4e2e7b3b2c8
MD5 6e9e4a4d2493ead4f4922901afbda9a4
BLAKE2b-256 dae0455bf18174e37c0064606e2ff49c2b57c2b807f35f18b9c4b1784e32bd46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bee9178d6b358a4cee1a13179779810fec5a5406cf0db41fdf0c065d90029e2
MD5 13fc3295b492c3b6d980aead35e783e3
BLAKE2b-256 6d86aad6ec16cd06de1894a7d6e3d9d10bae1334cbeb32ccbc703af7511bc537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adf638404fb96ddf0b2ec07df7279ea709d1e05150e527cc98b23fd0db8c3fec
MD5 882a6a84a9037a3c5eeade0fb92835cf
BLAKE2b-256 63af124b098ee23456b02caa476fb492d9a83adf8965cf3453a43ce2684f99fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2fb1f0c08929dc48f147010a679a0ef2b7561fcb616a793fa47ab8b10677334
MD5 dcd57a561fad837468ffded4567f83d9
BLAKE2b-256 be15f721ceb4e8a88228aa90c6621e117e8be939d1aca3593adbe4452dda6230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecf325f31bf8be70ec5cab50b45a8e09acf3952d693215acac965cecaeb6b58d
MD5 5983740c998d14afa999188f89c1a8b6
BLAKE2b-256 4e8a645fc6d423218a8e56fab243b907d8332d1c528a739b87da42ecdf4d0e15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e23d9b5e8d2dfc3ac0540966e93008e471345ec9a2797b77be551e64b70fc8ee
MD5 5e88348057fec3cf285219aeb25b81d3
BLAKE2b-256 318318342f7dffc680f90dada7f5fd7f75a2fe188d04b05dd5815e98c4fc9920

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e22d581aed962822dfeee601251101957f53688101af0c0dfc7180f55285c681
MD5 3e571c4d6d86d6f963d837803f2015f7
BLAKE2b-256 347609b0646fb4e61430a45ccd22727c17403b61cbca9ede8cd02df375cc8e3b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 11846ba98179cb5bc9325748877501f558db30437cd2db2ba7643d728c16cbfa
MD5 ab078d0818298f678c110b8ef9823f62
BLAKE2b-256 cf2d0d52e0cb2944d72600134bff201bcf67a90952905365a3f20ecf7da4fcce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d83fff3c453f55c57f6a9cccabe2578ca97d7a6378006242f56fc7f1c34f1361
MD5 a9b8ebe3a182c44d4f628c6ba3662926
BLAKE2b-256 7a3aea3d18043810843bc73fe3b14408f4a7dcb3b149488915518576eaaa4f14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d89af24652dc43c109cb2839ec6ea0e60b9d19301b05d3f8fa1ebdba9e95a1ee
MD5 56a316ca83d8aa46c646b6259541c555
BLAKE2b-256 5459e7a54422a460416daf570e4a7a11b9593349eb63969c181d856a21919e78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e78419a8f23705a44d01901c14f830c5d38fe2b1d8853bc836b8d04117207a8
MD5 38bbc46613a2d535531ef6ed9d87f497
BLAKE2b-256 e4deb11b9a098d8fcc14ee3effa0939aad011e89aa925ef5befbd4335e1f8a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e576d4bf8e27cdcdbe17a2e78a3e96e16ea443c3ac46e722b3a814b0c9ce7ab5
MD5 2df546444b6b7da0613f4ffc1f0d2483
BLAKE2b-256 67737e3ded147ae27aaca8c194c19a962f31eafb62d766fdbf81224f6675ec7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9052cf74602b368e8cc042e5bee181ff9179dd473d05319c6bdaf602c76bb173
MD5 edea223a049ca4da20cd27b595002bb3
BLAKE2b-256 3db9461b75b1e9e6dbfe03a6380c021cbc9d296566b0601cca8ac578e8dda3ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb983976e606d970d08af6c74de2e462a0e795e47360df67fe1fd85146a813a2
MD5 5a60fca0ee107c9e3c133a690ee772c0
BLAKE2b-256 a05375362c4ce84eb1c9cc2264a19d5e8ef873dd06f104727e770ab6a1f5fbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29709285691102a2c678e65c3bcf6fd4c96e21d6753e6ec8f7ebe96e4c27ba98
MD5 3de4f9a67f8783fe144135709c1503d6
BLAKE2b-256 69bb77b2ebc81906c66d2913a995f47ad8614d0c73a8c7fd303dd48da99a445e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfd34fe5ce934c359def945a23925f42735e384423db6fd847bc9205661644d4
MD5 d4ebe32761d22d2f51dc9ce199188b93
BLAKE2b-256 b5215771f18b91d3c0961ff907de0ca3e61a479d50d538bc20357c215abcb6cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 342dd65e89f6978ac56cb8e1692e72a6de00e6f9f212ff68464e9b54dbc4c431
MD5 d98ab94ca10d3cce1ede56057d82b7a2
BLAKE2b-256 d30fdd13fae007a03e5525941744666fa7a27e7ed5b741832c66fb3ce0a1585f

See more details on using hashes here.

Provenance

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

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

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

Supported by

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