Skip to main content

PyMongo - the Official MongoDB Python driver

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status

About

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

PyMongo supports MongoDB 4.0, 4.2, 4.4, 5.0, 6.0, 7.0, and 8.0. PyMongo follows semantic versioning for its releases.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.13tWindows x86-64

pymongo-4.14.1-cp313-cp313t-win32.whl (981.1 kB view details)

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

pymongo-4.14.1-cp313-cp313-win_amd64.whl (956.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.14.1-cp313-cp313-win32.whl (931.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.14.1-cp313-cp313-macosx_11_0_arm64.whl (968.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.14.1-cp313-cp313-macosx_10_13_x86_64.whl (968.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.14.1-cp312-cp312-win_amd64.whl (904.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.14.1-cp312-cp312-win32.whl (885.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.14.1-cp312-cp312-macosx_11_0_arm64.whl (913.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.14.1-cp312-cp312-macosx_10_13_x86_64.whl (914.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.14.1-cp311-cp311-win_amd64.whl (852.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.14.1-cp311-cp311-win32.whl (838.2 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymongo-4.14.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.14.1-cp311-cp311-macosx_11_0_arm64.whl (859.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.14.1-cp311-cp311-macosx_10_9_x86_64.whl (859.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.14.1-cp310-cp310-win_amd64.whl (801.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.14.1-cp310-cp310-win32.whl (792.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.14.1-cp310-cp310-macosx_11_0_arm64.whl (805.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.14.1-cp310-cp310-macosx_10_9_x86_64.whl (805.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.14.1-cp39-cp39-win_amd64.whl (750.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.14.1-cp39-cp39-win32.whl (746.1 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (940.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.14.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (947.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.14.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (955.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (939.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (913.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (930.1 kB view details)

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

pymongo-4.14.1-cp39-cp39-macosx_11_0_arm64.whl (750.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.14.1-cp39-cp39-macosx_10_9_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.14.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.14.1.tar.gz
Algorithm Hash digest
SHA256 d78f5b0b569f4320e2485599d89b088aa6d750aad17cc98fd81a323b544ed3d0
MD5 b1bcc9676ead95c7cea963b40f61debb
BLAKE2b-256 a1d48617dbd734a58c10016f854c96a6aee522d90c4cf8890104c83f47c20126

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 9375cf27c04d2be7d02986262e0593ece1e78fa1934744bdd74c0c0b0cd2c2f2
MD5 4e2105aab73ba262e2a82a63df84838d
BLAKE2b-256 04a03d97f57c1d37df8cd0839290ff08a9d5f2fbe862ecf8560afdf947c32b3d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 981.1 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.14.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 414a999a5b9212635f51c8b23481626406b731abaea16659a39df00f538d06d8
MD5 77fa0da9182a89d1c094a79777a397e8
BLAKE2b-256 d813d1bb83a6a68161a770c212a7114ac02b601aeabb9700c399607499e289a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92f8c2a3d0f17c432d68304d3abcab36a8a7ba78db93a143ac77eef6b70bc126
MD5 fa6abe8d66c79b712fa8c41240fc1498
BLAKE2b-256 1e054561aa90ac9daff0660d6041d5d5f8bb208085608518c44b4f36a52931b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f08880ad8bd6bdd4bdb5c93c4a6946c5c4e429b648c3b665c435af02005e7db
MD5 fb9cc33593794ed9eb1d707ee98a55d2
BLAKE2b-256 b71bf1c26008c61c0ac07344e17074d56c4c7daca10b24d9a5f921cbdb2438c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33a8b2c47db66f3bb33d62e3884fb531b77a58efd412b67b0539c685950c2382
MD5 dbfb419aa33d66b63dadf264940dbbef
BLAKE2b-256 57c2206d20847871db172e216695371963c0dd2670cf3bb003b063de3f459ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df5cc411dbe2b064945114598fdb3e36c3eeb38ed2559e459d5a7b2d91074a54
MD5 b80a0c47b3e85d9fd892df030bd17a99
BLAKE2b-256 55ebb36a6b952f017aba45ea4ff035c4908e1cdf5f3f92b1ecf36cc412f8ae89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 019f8f9b8a61a5780450c5908c38f63e4248f286d804163d3728bc544f0b07b2
MD5 259691c1c11bbea2193714fec524d5d7
BLAKE2b-256 dda2ad07bdfd439f2cf475b62ccba5278e7edb5c714c675ff80f9ea6cb465971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0a9bdb95e6fab64c8453dae84834dfd7a8b91cfbc7a3e288d9cdd161621a867
MD5 53619864948dfc1d878af1f1b89f391f
BLAKE2b-256 74775412dfca22e248f0785dff5dae83dc25422c10e784c34be5853a50a72a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 184b0b6c3663bec2c13d7e2f0a99233c24b1bc7d8163b8b9a019a3ab159b1ade
MD5 5a1eaeb3cfb1b685f67c630305d1a03e
BLAKE2b-256 45a30a7874debbc4f37ec5d5ebb37a2db4bdbb06411142adcea55e55daba09ee

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9fba1dcad4260a9c96aa5bd576bf96edeea5682cd6da6b5777c644ef103f16f6
MD5 00a319b815c217dd271edc51bd189d7d
BLAKE2b-256 8930c8180c0aab736f3217b146308cd2da0484a057700e35d834bd37e6bd3430

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 931.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.14.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6b945dda0359ba13171201fa2f1e32d4b5e73f57606b8c6dd560eeebf4a69d84
MD5 d347f1c9167b667f01fa69978d7f7684
BLAKE2b-256 10766b19a6ee2517b579937e4055c99f7d16ef80dc558491b0fca25dc1cb2630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04e780ff2854278d24f7a2011aed45b3df89520c89ca29a7c1ccf9a9f0d513d0
MD5 bb345be3442a5d549dad2d7ed8974c6e
BLAKE2b-256 7f3f40282cb2c9114e8b1cb7e72f66d78a8acffaa494c0460ecd3821bf9ef4f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcbea95a877b2c7c4e4a18527c4eecbe91bdcb0b202f93d5713d50386138ffa3
MD5 8882fdb3f676ad2470c8abcde6eb6321
BLAKE2b-256 b56b67762afe3ff4a7e7a56ed52ee2d5d4bb75f4309acaa493cc2408dd256174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebb6679929e5bab898e9c5b46ee6fd025f6eb14380e9d4a210e122d79b223548
MD5 10147fbd210de922bef599daad603389
BLAKE2b-256 f275c6bc7dddfece46290aabbed52475a9bfd2b63c3bf1d2b724476a0144d50c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49a2bf594ce1693f8a3cc4123ec3fa3a86215b395333b22be83c9eb765b24ecb
MD5 4b8ebc7c77628f4920543f657af67e9a
BLAKE2b-256 5839102b3a5688b254befa3c54fef9df0495eb3b07324ff8076b72452005d89c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 147711a3b95d45dd11377a078e77fa302142b67656a8f57076693aa7fba124c1
MD5 ad6faa6b9da0b4dc232b7b796dd05ec3
BLAKE2b-256 b7b2f2d40e23c375e8b57493f532f24eb9583625d51c52bb1a9a2a515d7d879b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e386721b57a50a5acd6e19c3c14cb975cbc0bf1a0364227d6cc15b486bb094cc
MD5 44197c77931cf91bab51ae0367dd9b80
BLAKE2b-256 28196d1bc3e8d52c8330627d6de2cff86794aed51aa0c2241b743c31dd28b6eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cb147d0d77863ae89fa73cf8c0cc1a68d7dd7c5689cf0381501505307136b2bd
MD5 00ddb9d121538d36b1e1f3a71b3a998b
BLAKE2b-256 c4cf4ce6eaf7d886ff7457a937f5241a15f31de32e9f4394c08c78fb19218864

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 904.5 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.14.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 714589ce1df891e91f808b1e6e678990040997972d2c70454efebfefd1c8e299
MD5 3b1ce2ac4d02857391c5238e7fca114d
BLAKE2b-256 105ae5ab4c50e7c8683ada40642ddfbad1a24c509fbff7786afd0a758d8c222f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 885.1 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.14.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 78e9ec6345a14e2144a514f501e3bfe69ec8c8fefd0759757e4f47bf0b243522
MD5 ef1c71fa2e2d8144caea5a4a66fae8d3
BLAKE2b-256 50a8a93578e9b5aa3d595a6c8ce7752ff0be43af11ea97dd2fe42fbeea67e909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71500e97dbbda5d3e5dc9354dca865246c7502eea9d041c1ce0ae2c3fa018fd2
MD5 876cdaa80b323e384af0108772f9eece
BLAKE2b-256 e6164f8a0e5bc513c126238827587f21437675033e8561b8eb46ce099f1f4337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eaef22550ba1034e9b0ed309395ec72944348c277e27cc973cd5b07322b1d088
MD5 5bcb30c7ebfe53c1ec31edb252475e9b
BLAKE2b-256 4af683f069342b4d4588b4c516eb3c66ebfd35c88e77c6e0c247762d40d99eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89c1f6804ae16101d5dd6cf0bd06b10e70e5e870aa98a198824c772ce3cb8ba3
MD5 623cbd7ae86dacf1ca8fdc2f731171fa
BLAKE2b-256 15cf9bfa9fc65e78765d13801e769291a8496cc99ef2961b5a23a8d1eb73ebdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f5a4223c6acecb0ab25202a5b4ed6f2b6a41c30204ef44d3d46525e8ea455a9
MD5 8043c93ec47a18436328e1eadeda4a5b
BLAKE2b-256 a4deaeb2fea0e5b8613ded3fd047a1a8cf7133d940123239271cabb1578f9620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6eeea7c92fd8ccd24ad156e2f9c2a117220f1ba0a41968b26d953dc6b8082b1d
MD5 f0f6d2dc9a7fd0c076305aba728dc920
BLAKE2b-256 02d06b814aa2456873c4baaf5f44021f9776aa8c2ef60405357dac82d82a10ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a76afb1375f6914fecfdc3bfe6fb7c8c36b682c4707b7fb8ded5c2e17a1c2d77
MD5 96b8e9a741a81590a017d74c5ca4a518
BLAKE2b-256 327a8df4bb47f20ab4f1ab9c1caf3d96bf1e17ba6dd3c2a03f6588f1339aeeea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2cafb545a77738f0506cd538be1b14e9f40ad0b62634d89e1845dee3c726ad5
MD5 55fce0a2eea92e8efd02c9102fee2ddb
BLAKE2b-256 ff95d4f67fe51d7ef65b82af002ac23dd6fd34b3ddaf7ce843646e7a0554f8d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 852.8 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.14.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9485278fed0a8933c8ce8f97ab518158b82e884d4a7bc34e1d784b751c7b69f3
MD5 69b305b3d49acb93f15200c893c4071f
BLAKE2b-256 51939442a7204d12e7efc56430c518b168dc43050ff6031d26f82e8e23f15813

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 838.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.14.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4812d168f9cd5f257805807a44637afcd0bb7fd22ac4738321bc6aa50ebd9d4f
MD5 fa87ec62b6db648725ccafb2c186e6b3
BLAKE2b-256 c9a7287ebc777ddfca52ed5772f50ba4501b6e033e5b68b6c4a1b3ebb6a0e97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10a37312c841be2c2edd090b49861dab2e6117ff15cabf801f5910931105740e
MD5 acded758d120b2ec544ee485c418ff52
BLAKE2b-256 29e2777fd71786a5b0de0c6ff0d9c7e70dea513fdf65022542a8646f05e3fbdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3176250b89ecc0db8120caf9945ded340eacebec7183f2093e58370041c2d5a8
MD5 06e3292a7e6c97039224692e77bb3bee
BLAKE2b-256 618afaef6c71571cb7043f0eec25aa7c91e62ffb4349a8300a0310a1fdb0c0d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44beff3470a6b1736f9e9cf7fb6477fdb2342b6f19a722cab3bbc989c5f3f693
MD5 bf45a8b91e43f3a7fcf35c1dc2a67e2e
BLAKE2b-256 9ad561e454a6cffe7b51d1cc511f86bbfab0eca7e6ed209cb3dd43b1567b250f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95bfb5fe10a8aa11029868c403939945092fb8d160ca3a10d386778ed9623533
MD5 7188de8ceb244e9a8b70cc94b8ca73a9
BLAKE2b-256 13404dc49fdf3a7a5e10569844c3be658a38f2a066ad6631bce96dec87ee94a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 573b1ed740dbb51be0819ede005012f4fa37df2c27c94d7d2e18288e16e1ef10
MD5 61bd9b6e0cd8392d4b8fa9929e9c7882
BLAKE2b-256 391c80b1247442e5696305ed4a6568a9633fa6a184b2b54f40971a5afabe3a89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98c36403c97ec3a439a9ea5cdea730e34f0bf3c39eacfcab3fb07b34f5ef42a7
MD5 76edf66a530b40756fa0f071a1e0cde4
BLAKE2b-256 c03ff2ee0e5760c25dd6ce19738835c2292e9480dfdb22bc4a86a8a01862420a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af4e667902314bcc05c90ea4ac0351bb759410ae0c5496ae47aef80659a12a44
MD5 9c5def5acd1a90f002796ffb090dcfb7
BLAKE2b-256 e78b267412d11fd633a28607033c0dab7c4a4da7743326d35a30ca4013d90297

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 801.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.14.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 27cb44c71e6f220b163e1d3c0dd18559e534d5d7cb7e16afa0cf1b7761403492
MD5 f1befacb27e2ae5324cf87519275543c
BLAKE2b-256 98366a36dac8630fabfb470391d099b447cb8f5c4140dbe4df8d6f2efe0dda39

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 792.2 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.14.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8a4fe1b1603865e44c3dbce2b91ac2f18b1672208ff49203e8a480ab68a2d8f5
MD5 5637b6f61be09aadca85f2397fd2fabb
BLAKE2b-256 38f40ac5d5627aa371d4e13ebfc0eead43cacac5aa36442ab2b5af9bac00618d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0fe8e7bbb59cb0652df0efd285e80e6a92207f5ced4a0f7de56275fd9c21b77
MD5 cc4cef9a39509e4b9fa6528918af2a17
BLAKE2b-256 780c811aa88f3b46e0e0b81b6f5052c0dbec1f9c05b2c4dc8346a5fc77d3735f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f81e8156a862ad8b44a065bd89978361a3054571e61b5e802ebdef91bb13ccad
MD5 c4a225b5017d3b26c8080bb62bb7530c
BLAKE2b-256 c7fb76f13ee16dd71f49d8ed24f41126922b2f4fc27d56f1301f92f7da959003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7b965614c16ac7d2cf297fbfb16a9ec81c0493bd5916f455a8e8020e432300b
MD5 eeff25b6beeeed22e8e610c93cac7b54
BLAKE2b-256 4b7af9ccf70c984f8cf76ddc1708378604ac613c1dd0e1a1df3b081ef0eeaef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c95ce2e0dcd9a556e1f51a4132db88c40e8e0a49c0b16d1dddba624f640895b
MD5 87a9f83d8e585646c1bff0a30119c9c3
BLAKE2b-256 362cad99311a9d25e0725fc9e30c974dae53dc6db55436fd09b6beb1980d0feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6d426e70a35d1dd5003a535ac8c0683998bea783949daa980d70272baa5cb05
MD5 0a2dbb6a033c88a6df81866bc7512743
BLAKE2b-256 709a62ecd4523384f784dee8b977dc02167a01dd0f89ab278895234d18a6b729

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec160c4e1184da11d375a4315917f5a04180ea0ff522f0a97cf78acbb65810d8
MD5 9382fa64e3ed38fdd69e435db0b721ca
BLAKE2b-256 458420166482494e4f53c88077e20fad873082997862503bfd5ac495eba29c25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97f0da391fb32f989f0afcd1838faff5595456d24c56d196174eddbb7c3a494c
MD5 d9a8281e87dccd978dc2a757f182bf62
BLAKE2b-256 9f61d422e860eb9b91f25cdee9aec42a3f960e479e0fd4746d2ff604ce910f44

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 750.9 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.14.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e679c8f62ec0e6ba64799ce55b22d76c80cd042f7d99fa2cfbb4d935ac61bea
MD5 3c1b197934de040e42085d568a06bc7a
BLAKE2b-256 2a4e90f4e4fcbeed00428f6315de4cb0020e1e8b8cb08ad7de16c50ac8dbf2e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.14.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 746.1 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.14.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 06e2e8996324823e19bccea4dfd7ed543513410bbc7be9860502b62822d62bd4
MD5 c6005e44e176c6ccba306125efc8bd62
BLAKE2b-256 1a262d9ec1c2dd21d212557d7d95e803e0221855bed906bce031338086ed8458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1604d9f669b044d30ca1775ebe37ddbd1972eaa7ffd041dde9e026b0334c69bd
MD5 f1897ccabeabfe3f240e3bb0ee7a0340
BLAKE2b-256 9ac3de720c4f0cac8908c3cb68a2d5c6f0b3ac7b05938caecc1631055e7f03ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e09e59bb15edf0d948de6fa2b6f1cbb25ee63e7beba6d45ef6e94609e759efaa
MD5 36430f419b78d6bcaf722abe36a94aa7
BLAKE2b-256 10ca91f9a9dfc51db2e915656b7d33f8fff612dcad1e17a7e1ce79f140b1684e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0bd1a446b39216453f53d55143a82e8617730723f100de940f1611ee35e78d6
MD5 9bec135b14397068ff7d3a79f49c2e65
BLAKE2b-256 ced708e701535e4982ea9c491d436d42985a3756613ac51139a878db15e1da9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6649018ae12a28b8d8399ddda5cb662ac364e338faf0a621e6b9e5ec643134df
MD5 2bf7cb8d7738a625dc27b2300348be67
BLAKE2b-256 d2296bf6a5949b88e2aae60008f14e9d1d4369115864459ade4835286eee738d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ed9c0e22f874419f07022a9133e8d62aa8b665ceb2d89218ee88450c2824185e
MD5 07a2f4c78895154527b09a63500bcf1a
BLAKE2b-256 65ed9e2bc38565b389d81992fa9fe01bd7a7ecb193566e5ea8961f1eb8ccb77c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c93d1f5db2bf63b4958aef2a914520c7103187d68359b512a8d6d62f5d7a752
MD5 37f4b748ab457f8da26eaf50a87924a4
BLAKE2b-256 2459b9c7a1588435308ce0d6b961ca9a151ff40db3c0b19d94906700a4859d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91f9a3d771ab86229244098125b1c22111aa3e3679534d626db8d05cd9c59ea4
MD5 70ba7b1ea032a0eee3a60eb818500b09
BLAKE2b-256 79f71c823b8714dce09159de1aa48f1d296c2be60e0c9b893bcd79786c686c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7d6114f4a60b04205b4fce120567955402816ac75329b9282fc8a603ac615ef
MD5 775829d22c2bdacb121ac583ed3e3a45
BLAKE2b-256 5862f542ba12fa4048cd116a548ee6daa39a7ef0a510890268b608962ce7c48e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.14.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8945b11c4e39c13b47ec79dd0ee05126a6cf4753cf5fdceabf8cc51c02e21e6
MD5 b5f4c522d1c64a2119eff4106ad7d34e
BLAKE2b-256 866b504022632878c58e93e91d97e1cffb55c692b6247c2bb0342debcd5ffdc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.14.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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page