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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13t Windows x86-64

pymongo-4.12.1-cp313-cp313t-win32.whl (974.7 kB view details)

Uploaded CPython 3.13t Windows x86

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

Uploaded CPython 3.13t macOS 11.0+ ARM64

pymongo-4.12.1-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.1-cp313-cp313-win_amd64.whl (948.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymongo-4.12.1-cp313-cp313-win32.whl (925.9 kB view details)

Uploaded CPython 3.13 Windows x86

pymongo-4.12.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (964.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pymongo-4.12.1-cp313-cp313-macosx_10_13_x86_64.whl (965.1 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pymongo-4.12.1-cp312-cp312-win_amd64.whl (897.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.12.1-cp312-cp312-win32.whl (879.5 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.12.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (910.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.12.1-cp312-cp312-macosx_10_13_x86_64.whl (910.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pymongo-4.12.1-cp311-cp311-win_amd64.whl (847.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.12.1-cp311-cp311-win32.whl (833.2 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.12.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (856.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.12.1-cp311-cp311-macosx_10_9_x86_64.whl (855.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.12.1-cp310-cp310-win_amd64.whl (796.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.12.1-cp310-cp310-win32.whl (787.6 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.12.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (801.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.12.1-cp310-cp310-macosx_10_9_x86_64.whl (801.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.12.1-cp39-cp39-win_amd64.whl (746.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.12.1-cp39-cp39-win32.whl (742.0 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (937.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (952.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (935.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.12.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (936.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (910.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (926.7 kB view details)

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

pymongo-4.12.1-cp39-cp39-macosx_11_0_arm64.whl (747.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.12.1-cp39-cp39-macosx_10_9_x86_64.whl (747.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.12.1.tar.gz
Algorithm Hash digest
SHA256 8921bac7f98cccb593d76c4d8eaa1447e7d537ba9a2a202973e92372a05bd1eb
MD5 f5024b99298debe2cd5cb44881a4b07b
BLAKE2b-256 85273634b2e8d88ad210ee6edac69259c698aefed4a79f0f7356cd625d5c423c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 46d86cf91ee9609d0713242a1d99fa9e9c60b4315e1a067b9a9e769bedae629d
MD5 a48536973631b17ac877758fd89a3d8f
BLAKE2b-256 08e27d3a30ac905c99ea93729e03d2bb3d16fec26a789e98407d61cb368ab4bb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.12.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 974.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.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9a1f07fe83a8a34651257179bd38d0f87bd9d90577fcca23364145c5e8ba1bc0
MD5 cff1e1256a8adcb08de21c04d4eb5b6d
BLAKE2b-256 44c91b534c9d8d91d9d98310f2d955c5331fb522bd2a0105bd1fc31771d53758

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3f7941e01b3e5d4bfb3b4711425e809df8c471b92d1da8d6fab92c7e334a4cb
MD5 238326f03f577b457ad58fc0722cbc95
BLAKE2b-256 3c0ddf2998959b52cd5682b11e6eee1b0e0c104c07abd99c9cde5a871bb299fd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b063344e0282537f05dbb11147591cbf58fc09211e24fc374749e343f880910a
MD5 7751b6a850eec28e297bee763a80682a
BLAKE2b-256 fadf88143016eca77e79e38cf072476c70dd360962934430447dabc9c6bef6df

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a34e4a08bbcff56fdee86846afbc9ce751de95706ca189463e01bf5de3dd9927
MD5 46298a6c63a83588dbb0c23de4cc06fa
BLAKE2b-256 1ae29e1d6f1a492bb02116074baa832716805a0552d757c176e7c5f40867ca80

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efeb430f7ca8649a6544a50caefead343d1fd096d04b6b6a002c6ce81148a85c
MD5 5b494673d42b216566379c43f8ea1a7e
BLAKE2b-256 176ea6460bc1e3d3f5f46cc151417427b2687a6f87972fd68a33961a37c114df

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b41235014031739f32be37ff13992f51091dae9a5189d3bcc22a5bf81fd90dae
MD5 067e0b61d3d23af3888d3ceddf62c3ff
BLAKE2b-256 fb3e102636f5aaf97ccfa2a156c253a89f234856a0cd252fa602d4bf077ba3c0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e9d23a3c290cf7409515466a7f11069b70e38ea2b786bbd7437bdc766c9e176
MD5 b10bdeb3d9a8298abe8d877d2cc2cc08
BLAKE2b-256 cdd12e8e368cad1c126a68365a6f53feaade58f9a16bd5f7a69f218af119b0e9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f27b22a8215caff68bdf46b5b61ccd843a68334f2aa4658e8d5ecb5d3fbebb3b
MD5 9077da51df0231e350e03d627e9e340d
BLAKE2b-256 c9c375be116159f210811656ec615b2248f63f1bc9dd1ce641e18db2552160f0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.12.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 948.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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3b28ecd1305b89089be14f137ffbdf98a3b9f5c8dbbb2be4dec084f2813fbd5f
MD5 cb6af611d519b37ff5a883c412ff837f
BLAKE2b-256 59b9459da646d9750529f04e7e686f0cd8dd40174138826574885da334c01b16

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7c2269b37f034124a245eaeb34ce031cee64610437bd597d4a883304babda3cd
MD5 32e3e2fc0ac61556b57d6a1cbda4244d
BLAKE2b-256 fc1e6d0eb040c02ae655fafd63bd737e96d7e832eecfd0bd37074d0066f94a78

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43afd2f39182731ac9fb81bbc9439d539e4bd2eda72cdee829d2fa906a1c4d37
MD5 b16d6336ffb9cfd0a33a0a659f759793
BLAKE2b-256 ad650567052d52c0ac8aaa4baa700b39cdd1cf2481d2e59bd9817a3daf169ca0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5d4c0461f5cd84d9fe87d5a84b1bc16371c4dd64d56dcfe5e69b15c0545a5ac
MD5 d96f016a2746b98e8db6a0e52a4617bc
BLAKE2b-256 4bd004a6b48d6ca3fc2ff156185a3580799a748cf713239d6181e91234a663d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9d142ca531694e9324b3c9ba86c0e905c5f857599c4018a386c4dc02ca490fa
MD5 e050ed096b514d1e5ab3e74c9692c142
BLAKE2b-256 d5d5269388e7b0d02d35f55440baf1e0120320b6db1b555eaed7117d04b35402

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa7a817c9afb7b8775d98c469ddb3fe9c17daf53225394c1a74893cf45d3ade9
MD5 e015d2df57b13c5c96a83990811cf501
BLAKE2b-256 8f6d7a604e3ab5399f8fe1ca88abdbf7e54ceb6cf03e64f68b2ed192d9a5eaf5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 827ac668c003da7b175b8e5f521850e2c182b4638a3dec96d97f0866d5508a1e
MD5 6b1f6e536a5f5afdf38b1b4c70efc147
BLAKE2b-256 c55bdb25747b288218dbdd97e9aeff6a3bfa3f872efb4ed06fa8bec67b2a121e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edf4e05331ac875d3b27b4654b74d81e44607af4aa7d6bcd4a31801ca164e6fd
MD5 203e4684e311d4315b33099d287dda9c
BLAKE2b-256 5495627a047c32789544a938abfd9311c914e622cb036ad16866e7e1b9b80239

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90de2b060d69c22658ada162a5380a0f88cb8c0149023241b9e379732bd36152
MD5 81af800f477e39a87cbc2f7ee8d46714
BLAKE2b-256 0c4de6654f3ec6819980cbad77795ccf2275cd65d6df41375a22cdbbccef8416

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.12.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 897.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d004b13e4f03d73a3ad38505ba84b61a2c8ba0a304f02fe1b27bfc986c244192
MD5 68fe68b5ce3f8a2f820d40a786bb1299
BLAKE2b-256 8c68a17ff6472e6be12bae75f5d11db4e3dccc55e02dcd4e66cd87871790a20e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.12.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 879.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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d9d90fec041c6d695a639c26ca83577aa74383f5e3744fd7931537b208d5a1b5
MD5 e87c762c687257e5da40836aa4e58606
BLAKE2b-256 29b37902d73df1d088ec0c60c19ef4bd7894c6e6e4dfbfd7ab4ae4fbedc9427c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ad689e0e4f364809084f9e5888b2dcd6f0431b682a1c68f3fdf241e20e14475
MD5 ef280462168490b7d27c8297714c474d
BLAKE2b-256 070d32fd1ebafd0090510fb4820d175fe35d646e5b28c71ad9c36cb3ce554567

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1525051c13984365c4a9b88ee2d63009fae277921bc89a0d323b52c51f91cbac
MD5 8fbe8140838f671d89705334fa1b022b
BLAKE2b-256 2e7c22d65c2a4e3e941b345b8cc164b3b53f2c1d0db581d4991817b6375ef507

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9a487dc1fe92736987a156325d3d9c66cbde6eac658b2875f5f222b6d82edca
MD5 f01bf17ff78b4b821bbe0cae85eb39ac
BLAKE2b-256 a467f4e8506caf001ab9464df2562e3e022b7324e7c10a979ce1b55b006f2445

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 981e19b8f1040247dee5f7879e45f640f7e21a4d87eabb19283ce5a2927dd2e7
MD5 e7867a7a296353adb864c5031429d7c7
BLAKE2b-256 4e83303be22944312cc28e3a357556d21971c388189bf90aebc79e752afa2452

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f9b18abca210c2917041ab2a380c12f6ddd2810844f1d64afb39caf8a15425e
MD5 7af45cc0b2d0a2d24672003fcfdc9551
BLAKE2b-256 e39cd7a30ce6b983c3955c225e3038dafb4f299281775323f58b378f2a7e6e59

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34fd8681b6fa6e1025dd1000004f6b81cbf1961f145b8c58bd15e3957976068d
MD5 f99487661459c1f890f41ecb1ecf28c2
BLAKE2b-256 e8804fadd5400a4fbe57e7ea0349f132461d5dfc46c124937600f5044290d817

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a7b771aa2f0854ddf7861e8ce2365f29df9159393543d047e43d8475bc4b8813
MD5 fbbf65928f9a5d3efbeb1437344e6438
BLAKE2b-256 59ddb684de28bfaf7e296538601c514d4613f98b77cfa1de323c7b160f4e04d0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.12.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 847.1 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40e2812e5b546f7ceef4abf82c31d4790d9878f2a0d43a67a2645de3eb06bdca
MD5 e025cf55370a1a31056625be2f093617
BLAKE2b-256 165d3e1f7177387ec84e1a1538d29eef05791ceb19cbb80b09a2ae9b74ad518c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ee69dba3e023e0fa1b547b4f7a41182618f2e612df09ff954bba32de0111a596
MD5 0cf09619c387d9535197214a7ff7d099
BLAKE2b-256 fa3d2c9ef7bed070025438e08201323a08360a98381b01b9bae49781b9d27815

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc5fad32274a1de9dfe13d06da169cf2a405a98f049595aafda13af02921853e
MD5 2b977a81692436ca671007e84d6980b8
BLAKE2b-256 9e2a56e0c160c19e2c8b7c7ae541db8acc17ef8091cec8d419be7c31ec20d2ee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5e5968da22f5534fc678dad58d3e9f7305bf53abc94968c800335b1f511ab8b
MD5 1dadf749bc7ce1964ddcb497027575d3
BLAKE2b-256 131eb5b6a994862e732f83638b8bc94e68bca1b135a2bcf1b21c5661eb49e5c6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40dd2b771387e3ac297399b7b4d9a4bfffbaabba6f17c79996e8462cde3e7c30
MD5 f3482b9ced11eedc71aca39298848186
BLAKE2b-256 16f92d8a0d78da2891ea744fac4a9435640e3fa47d23eb68a1b346819d930d78

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 730a19d96ef902ee8d8f9e84738142d355096becb677ec82489dc9ad8e54d8e9
MD5 c0012c10aa3cfd977f76470539127923
BLAKE2b-256 193863a7cf5e76c99ee31fa9cadd5570525338e5a2fe5e8085a5e3af85cf4fa7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 808168f5f4398c0057d15f21b1453de323157447915179c7afedf4334d2a1815
MD5 b89950b8d087d29e795d05f3b35d81b1
BLAKE2b-256 d634bac2dfc038a7fb5e0520ab6803eebc7d05dc7dfe0629c442baceb4f43d95

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f3104bd97642f508f70a83af256b9d88e9a7319e8048c27f1c8ca6572ad7b7f
MD5 d34e1c402ede458a177eac28457b26dc
BLAKE2b-256 29783196c9d9b08dbf5c600b485f610821cd755f978bfb9c51f51651139d0231

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72b45f7e72b2db4cd7abd40c38c57ed4105d7be0d4dce85a6b77a730e8a613f7
MD5 0a85ead9a3cf6067b3a8b3ef422359b6
BLAKE2b-256 28af2cf9a4871615481841b791eb8f3cdf3e5b909ff66c258ae23cd91da90006

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.12.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 796.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13953f8bbdbfee00530ac9f5c09a2474b81cd76648925012b5cfd2727293bd17
MD5 e5eb07cd731e4911ee85ad277d12c0a9
BLAKE2b-256 b29e3fa8311fa42c29468f303fc05cbd38c974c4245db380f3e3e18629544d79

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e75c42dedc5f59a985976f8bc2e2f0b90c44ce40fa9a2e99b147ec7e64c735a2
MD5 d8be290131cf7914797349ac039dec95
BLAKE2b-256 256fef0a5c7dbfb23b88681f2d653e3374e0eb7e47214223f4fb9f2c7922417f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0c8dbb6a10753cbbbcb3e8ab723f87cb520de855e667a32dd2889e73323e82f
MD5 b393f08b1e23c7b8265607f7eaed5281
BLAKE2b-256 743e363d094b0b42ee28d4127b6cf3f7d3550ccfc601908cee4e3ba3fa1c5a95

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c9d447042433b3574df8d7d1b3bb9b1f1277d019534b29a39fd92670ab72d4e
MD5 df00c13977f700ab86fc966129218e9a
BLAKE2b-256 3fbae35c73683650ebd52e1aceafb6a0f25cadee658f9f4f95500b72ea599e39

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 670bb6c9163f2623d8e3c42ff029dc89d2e8bf41feeeea4c11a8a21f9a9b0df7
MD5 d553e8931dc78223c8223d590147a8c9
BLAKE2b-256 98d082ac6d8d5dd97d1191d16017c1da67fe3ab07f2d259c0ce4334b810eeab2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 777800dc731ea7713635a44dcfb93d88eb2be4b31883feb3238afce5d32ef6d5
MD5 7670315751962bdcb5823d1a2990985b
BLAKE2b-256 afac9ccd8977189b6bc6abe84466feddb918b0ab9e72cb5212eda1d45aa89e78

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bd0cc14726baa07081abe8ecda309a1049992b84b37d3c50c5fbd7f935b8925
MD5 32e7259a587132c522b9cb05f9be5528
BLAKE2b-256 1de47808a1db2fdcb8658e158cf42a3a9242ef26d55aea8f69f608139971d7ea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ba42b4f2046595f64c492ef73c92ac78c502db59024c9be0113d0a33ed60c15
MD5 3e065c66f3ba16b062ad334b474f21ef
BLAKE2b-256 c20074f7bafb2d0b142ebebf5959aed804ad17844cfa5cd5e82344113f6a6308

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1897c64a11e19aae4e85126441f319c3bf3fb7b60d122f51528cab2b95caaad3
MD5 6eeb98ad56821eb30b3b9b319fc34678
BLAKE2b-256 4a410766f509780cacce742f135ddfa952a6376450687cfdc2bd79ce7b9c39b0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.12.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 746.7 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7af466b5dc2c6dcdce78677b4d60886c48c70810c3ebe355f210a0f9ededb156
MD5 39a006365b2d1f698ba868006ca26553
BLAKE2b-256 653b1ba69706b9e88174b62f8d92fea824aabe72ef4417bab6920419b3aeb0f9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3dc3c26f52214119b86decdd8ef4595610cfbff67401f47be14eb433afb1d838
MD5 a5a7dabd30517e65865beb3a553e6719
BLAKE2b-256 d0ff2ee9312932144a702d9f1e6eefe30a51fa1ebd936a7e897bcbf08d932fb2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3e90b2114e876c0a2864f729f32b025114920c6f00898a6d5ef41dba98d8690
MD5 13e55a604690290b38fd7462547b61d1
BLAKE2b-256 ea425a31c030dac671eb56b09f3662c23c83891c0f302ae39bb6e222442e5a1c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71edcd51265e69d73d10f032164983701d3efa768c946a2736ec4d40793bf63e
MD5 3e2eaff036fd7de69b588105c800c548
BLAKE2b-256 6de0133685de147868f5341e8b5273c491c6d66539459598f4fdf1a2944c5ac4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4285d7ffedc7adc0531949e66d5f884801c522e7a30cdfcf80e2727b9dbee8c
MD5 afadcd33e5a42c54cdc9605c61cfde43
BLAKE2b-256 d954b8845561ae015c46169f205b215152245280b19f5073aaaa6c963d46fbee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e95211e335a2a762fd9dfb084579e6ebaec59cd2c6848d7a898af3342ef63f06
MD5 574adb04eb2b11723308571f32f60b91
BLAKE2b-256 e727f751b8f14f53762f74006a28e9a23c1645a8332280586aca8993fd9784e7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 27806c4310203a19af868f4aedd09615ffa613d4e13570954df10193b29f7fd3
MD5 3a3b5ce1454716882278d3eb88cca84e
BLAKE2b-256 b0ab4a8e8f00c83de79655b47bac62902c58e1d54c17bc5ce63e17f0ea409ef7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 457eed26aa307c8d92edaf9be2ba9551b54af72bc7cd555706644374f155331c
MD5 decbdf5741aca6eaa8200de75e84a745
BLAKE2b-256 978fd761faa7db1fb42fcb62c7edce121393d89c5a0fa7b6c64b7144b65407be

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5db1a20d0223af2bbbbfd5f8b7f1ff0f08628c245096bad12ddeee86db226925
MD5 be4f60698b2bfe57963698c861245e81
BLAKE2b-256 8cf0758791e3c30c59f1337e8017a31fedb428b189ac31095c0169c03ec47186

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07c6e9ade249fa811fa344467889f61221eb533b8465de7e1c467cca03b38a1e
MD5 52aba51cb826db61bc234f2dd9921136
BLAKE2b-256 6125e75c042519b129683e5960e8aca7ad760b9865790c72147e8e2667385c2a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.12.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0517c363f31f770cfa450df7d52a73340168bde71fac423b2b3eea0336468f3e
MD5 57e38e166fd2162c7d62b5c564669242
BLAKE2b-256 4d62fa4ec6fe748f4fb5eadf4b7a5d477aea7bceddfe0452b1975c11229a9812

See more details on using hashes here.

Provenance

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

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

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

Supported by

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