Skip to main content

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status codecov

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.4, 5.0, 6.0, 7.0, 8.0, and 9.0. PyMongo follows semantic versioning for its releases.

Documentation

Documentation is available at mongodb.com.

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

Support / Feedback

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

Bugs / Feature Requests

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

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

How To Ask For Help

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

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

  • The exact python version used, with patch level:

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

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

Security Vulnerabilities

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

Installation

PyMongo can be installed with pip:

python -m pip install pymongo

You can also download the project source and do:

pip install .

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

Dependencies

PyMongo supports CPython 3.9+ and PyPy3.9+. PyPy support is deprecated and will be removed in a future release.

Required dependencies:

Support for mongodb+srv:// URIs requires dnspython

Optional dependencies:

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

python -m pip install "pymongo[gssapi]"

MONGODB-AWS authentication requires pymongo-auth-aws:

python -m pip install "pymongo[aws]"

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

python -m pip install "pymongo[ocsp]"

Wire protocol compression with snappy requires python-snappy:

python -m pip install "pymongo[snappy]"

Wire protocol compression with zstandard requires backports.zstd when used with Python versions before 3.14:

python -m pip install "pymongo[zstd]"

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

python -m pip install "pymongo[encryption]"

You can install all dependencies automatically with the following command:

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

Examples

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

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

Learning Resources

Testing

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

pip install -e ".[test]"
pytest

For more advanced testing scenarios, see the contributing guide.

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.18.1.tar.gz (2.7 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.18.1-cp314-cp314t-win_arm64.whl (817.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

pymongo-4.18.1-cp314-cp314t-win_amd64.whl (826.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pymongo-4.18.1-cp314-cp314t-win32.whl (818.8 kB view details)

Uploaded CPython 3.14tWindows x86

pymongo-4.18.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314t-macosx_11_0_arm64.whl (822.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymongo-4.18.1-cp314-cp314t-macosx_10_15_x86_64.whl (821.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pymongo-4.18.1-cp314-cp314-win_arm64.whl (816.5 kB view details)

Uploaded CPython 3.14Windows ARM64

pymongo-4.18.1-cp314-cp314-win_amd64.whl (822.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pymongo-4.18.1-cp314-cp314-win32.whl (816.1 kB view details)

Uploaded CPython 3.14Windows x86

pymongo-4.18.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymongo-4.18.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

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

pymongo-4.18.1-cp314-cp314-macosx_11_0_arm64.whl (819.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymongo-4.18.1-cp314-cp314-macosx_10_15_x86_64.whl (818.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymongo-4.18.1-cp313-cp313-win_arm64.whl (815.4 kB view details)

Uploaded CPython 3.13Windows ARM64

pymongo-4.18.1-cp313-cp313-win_amd64.whl (820.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.18.1-cp313-cp313-win32.whl (814.9 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.18.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

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

pymongo-4.18.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

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

pymongo-4.18.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymongo-4.18.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

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

pymongo-4.18.1-cp313-cp313-macosx_11_0_arm64.whl (819.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.18.1-cp313-cp313-macosx_10_13_x86_64.whl (818.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.18.1-cp312-cp312-win_arm64.whl (815.4 kB view details)

Uploaded CPython 3.12Windows ARM64

pymongo-4.18.1-cp312-cp312-win_amd64.whl (820.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.18.1-cp312-cp312-win32.whl (814.8 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.18.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

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

pymongo-4.18.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

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

pymongo-4.18.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymongo-4.18.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

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

pymongo-4.18.1-cp312-cp312-macosx_11_0_arm64.whl (819.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.18.1-cp312-cp312-macosx_10_13_x86_64.whl (818.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.18.1-cp311-cp311-win_arm64.whl (815.1 kB view details)

Uploaded CPython 3.11Windows ARM64

pymongo-4.18.1-cp311-cp311-win_amd64.whl (819.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.18.1-cp311-cp311-win32.whl (813.9 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.18.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.0 MB view details)

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

pymongo-4.18.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

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

pymongo-4.18.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

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

pymongo-4.18.1-cp311-cp311-macosx_11_0_arm64.whl (818.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.18.1-cp311-cp311-macosx_10_9_x86_64.whl (818.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.18.1-cp310-cp310-win_arm64.whl (815.5 kB view details)

Uploaded CPython 3.10Windows ARM64

pymongo-4.18.1-cp310-cp310-win_amd64.whl (820.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.18.1-cp310-cp310-win32.whl (814.2 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.18.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

pymongo-4.18.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

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

pymongo-4.18.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

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

pymongo-4.18.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

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

pymongo-4.18.1-cp310-cp310-macosx_11_0_arm64.whl (819.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.18.1-cp310-cp310-macosx_10_9_x86_64.whl (819.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.18.1-cp39-cp39-win_arm64.whl (815.6 kB view details)

Uploaded CPython 3.9Windows ARM64

pymongo-4.18.1-cp39-cp39-win_amd64.whl (820.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.18.1-cp39-cp39-win32.whl (814.1 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.18.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

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

pymongo-4.18.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

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

pymongo-4.18.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pymongo-4.18.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

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

pymongo-4.18.1-cp39-cp39-macosx_11_0_arm64.whl (819.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.18.1-cp39-cp39-macosx_10_9_x86_64.whl (819.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.18.1.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1.tar.gz
Algorithm Hash digest
SHA256 d04134ff4ea0e7d14b6e2ef23dbfe06112a99318c9578b213d2dee9060b23dce
MD5 dea8dc481f94d12a65d4edc3963e9091
BLAKE2b-256 77568c52e7f57719051748378fe534fbf916440b1eb8fdb8053c9b43003c9865

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 817.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 960c61ed86a316d3636b1f184006d3cc2b972b8546186ae8e2c8324e397632ff
MD5 5a98f6032ad551f7cc22bf19cd7ad064
BLAKE2b-256 ccf212afe9d59fb82b60832356f9fe8f454a99371c0e0a42f0ec7856f5c893fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-win_arm64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 826.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 016d21e7fbf55ac89f419daa48da95314896205d902ed9aa4058f26a436e789c
MD5 251c3daf1eca77f0f42f7c4a5c810b74
BLAKE2b-256 496d08e9256de9fab497465e7e6589fab4d40ca266dcceb88d3acdd0947095e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-win_amd64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pymongo-4.18.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 818.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9da74b79e382bb37311b9bd5beb89f1369a1c3e27e7c97bae79661cfdf3893aa
MD5 af2c62f4b10153d1f692491107cbe8f4
BLAKE2b-256 00a586777256266850eb2217d6c8c8f382a213a1773c144383d51f61bbb2e651

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-win32.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5907ccdcc2f7925100b4bed8069acd0d93156e5cf013a8e15aa5932819ce3d5e
MD5 cd470c0a50e7d7289a0fc49f7a0ba258
BLAKE2b-256 c442aa057e91930209d731ec3fed03edf32cf6aa59838f7766227ee219142574

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a9ae9c28e6c290c2524c3288a0a6e27dca958daeeaba2f36a6a4ee97c44e5f49
MD5 d518d68b7d22b02e84fa436d3214de62
BLAKE2b-256 adceb9213ece00a38f742ca4cd6afb812d73d4cfe857b1018e90f803d72c4b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 adebc03de2d1520bb163953361779288316e4e9c4b66fe4ce9e91d4183e313b8
MD5 818c9ca8bbef2256706b6ae1d9a0f416
BLAKE2b-256 530b7fcdda4b6e07497ce63d59a932ce193e3da098c309cb18a2d55ed7c99f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2ef166249993afd94b704bd25af27104fccb259580960a41355f8d7869496ed
MD5 0077dc1e2f36a2cfe17237b4f86f42b2
BLAKE2b-256 37a802fc8305155d46651c0e3980998d3da881db287866be8a5c98d9a0fb67a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4b8f7b212ab86552db2f35b2779cc290561a341b73fba1ab1030ed9d48e1b1e5
MD5 92be1647c2783d563b5ad7c0a9ae57bc
BLAKE2b-256 533fc698242cc5013a0d99099db622813c480e23dac7c8bad3852610fb5a5145

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58c3392585c5823ad90e318b6e7c0fb0709763631fb06d81de45166a1844ea18
MD5 1cb9f4e47f194cd72b412fddc65044bc
BLAKE2b-256 9fcf41c06f9cce2035bf061248d1576439bc60701852f75118fd2b5a3408abd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-macosx_11_0_arm64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9bf92d46b15fb8fcfcd517442b0b90055924d835fef77e574ff4678b40be49ce
MD5 768702eb70c0967e33e91fd14bd77940
BLAKE2b-256 f0b1fa1c5cd5ea032ffbce4f4c7876403405405c9cc9de7abba33c78254bd278

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314t-macosx_10_15_x86_64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 816.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 088e78ab7340d7ab4c14cd7a96852f9ea3b51c25fc9fb02244715d21f57ec2e5
MD5 ce658ffb5b164007ab8d055b9a6494b3
BLAKE2b-256 abff82420a828245bb3bf36dcb6a59eebd914fba78dac87985c48145d03a405b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-win_arm64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.18.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 822.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 134a8f787360c3cea18cbbc126bf51cd233f1789db8099f7081ace5b1cff7e22
MD5 0a2e909fe852521b819927d35ca5ad42
BLAKE2b-256 020ee1a8406b5361b06043762b7f50a13a3d9c04b2ea8202f39c8cde737a8f13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-win_amd64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymongo-4.18.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 816.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d9be9221bf2db1562d490bb67522ce2f7378513bc8bcc157e824a0bb3d87eba0
MD5 941b239f2c53483db3f446eb225f5e1c
BLAKE2b-256 c224b3c38caeb743a7055a1cc29afe2edee06206fe2406e90b3e0d4900242df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-win32.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b46ef2de0b077a2c708790e9ced5c8afb5b9deef1cacba28e8d9a90027e86d2
MD5 b4a41df60df5624706911f00f15bc0f9
BLAKE2b-256 d6058817d987e5eadd127a4f44d19ce7a31e507c300d6f1511de99bc73f880f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 173a69caa539731284a815ee2fd616442431d12e8c84d970f3cc555d9ac5ef81
MD5 3441c1b776dadae0e64b4a06003b71e8
BLAKE2b-256 1fdc83956070a4313cc9efa676f45d742240540078a44727fc52e3521a15e8a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ab33db087dc52f8f28bdb8680682ebc8fc5fb0be84e89a0853a8dc059fcc06a8
MD5 72f2c10432b9d0212e0df87a88bb91b3
BLAKE2b-256 533109c78af31758923c0b39aa4ec934cb261446619453c7e263ed8d38d4abf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c3f52a1a793262ef1af15b36535220d194b3ad5ce7564f98c15f3881ffbc269
MD5 fcc472b55b243d6489464e2a00738e87
BLAKE2b-256 59d07bb489c716c64c5e3c77df69d5e38ea67374ec2e75e5af413fed263dcc1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4541273796aa3022b39de892e265aac4a437adcc6e4894396c23258d990f8c97
MD5 0db8e03121a7fb80767bdb93b6273713
BLAKE2b-256 3f8940e08f302e66a3d4da98c7679136f674f736e24c0ac4b306567a0b5cbf0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae18db68105a0ba7adc190a13cbd73e6c87593bc55a336719f70ad042aa66aaf
MD5 01bb57426860706536395e99cf20a9c7
BLAKE2b-256 d030a1b0870b71efbd49ee0affa61bf8be067acfdc3f91244443a3395edf9c94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-macosx_11_0_arm64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 67d56552a940d3553024fdf39535975c4de2ff5b82cf20287ba1ffef028f004b
MD5 0f7b08240a6e4b80125861e71ebbfe6c
BLAKE2b-256 e4ef869a383a4ac3e615599a35340c9bcf02ecbc9a5059d2227b8f96ba6af38e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp314-cp314-macosx_10_15_x86_64.whl:

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

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

File details

Details for the file pymongo-4.18.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pymongo-4.18.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 815.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 aff3582edd807980e0f910cc20b3f588b8c5533556b0aeb3f33d88c7681f9b21
MD5 a80163d8093445e09e4b403cdcc6b67e
BLAKE2b-256 1170c2efefb8d414489726d68eaab88b2230435aa17a493259af8614bd0c6d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp313-cp313-win_arm64.whl:

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

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

File details

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

File metadata

  • Download URL: pymongo-4.18.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 820.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a78dec1c10eaae298aefc6cd7ad916ca2ceeb51f8ff7946dddbca97adf9ed0c
MD5 2a8596ee1b7da3ef2b51bda18d82386e
BLAKE2b-256 d45c9b55c1fd4e5ec9d880d6c12dda01ff45ebf384af698d2a61d5411371ed4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 814.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4ebb5a6a42a1512a86f774ca517b4b56aacd0ccbde535d787cfd9789c5905e2a
MD5 d6892d1b71cd41d7587c87202f26dc4d
BLAKE2b-256 6decc87acb3be5a222b87fae3c38cf389187c923ceaad0c16ade60a858c3b043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55309ea9f6d8f697618f12f1ea2b643f26df434de043cd5de6f96426093011b3
MD5 e123b8230ae5fd604b7f145ac574c0a7
BLAKE2b-256 080f0daf459b604f61253b914b28f0e6dd16cdc8a7aa962cf901e482f5cbba67

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1eaed0c72bba39fa42e6167636d56587e30cdab13ec3178a68ac85bee093d44b
MD5 59a2cb51beb5c86d5478f8cdd6351166
BLAKE2b-256 0a8f0d5b604bc1f200e6ba92cddd71313d3f7d209aadbca19a1a55e0d1b614c1

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f0a6b59282941d2f6f62acf35fb75bae371d3194ab041f0358446668f9df10be
MD5 e680a8c9c5634947d3d30c9402d2e495
BLAKE2b-256 b05e75f2742abb591c55340a3b1421836d918ad7c5e6a23185ed32031b302c46

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbef9ef64cdae97e85b27cf00e203a26a016f7c803dc9bd0ccd48b3adade1232
MD5 763950c07588506c04687eab5a02d55f
BLAKE2b-256 24d81a7b20a9c436f539bdabfd49cb40a1d65ad7f0d9eae3cc330d071ac12823

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 305877cd97e4344fde699c8721e4cc9890a689990bd1a1783eb5d0946e093d13
MD5 e6493b09d444052e9c41ea2dacde03fa
BLAKE2b-256 53dde42afd21c9238bed54ae571f7fc6912aae6b286d6293592f2c9a9835add0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e63d2f8770f0cfb74c7c3fbe35c6b2828f27a16395a7c4019c81451e61489e
MD5 6c3549d78957a635f959d21acf934883
BLAKE2b-256 11ee852cb3c707e6cc53d84e656b4c4f534afa96f0058d88470f49a33770c790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a787cd29b6bc5735ced10aba4ec052d4ef2d2a82b4875efa8539ecd635e720b
MD5 e61d587e2b56189993136d48a3b34a59
BLAKE2b-256 a50ebfeec4bb1820828e66d133eee6e7e5138b7e0db5ff40bc533449048dd3a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 815.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 46740b56e206d4703ac7aad05c9a72177c16854c6364bec4cd3b55d0e79a1adf
MD5 f461c3d76f59673c1b96a3c37c00b9cf
BLAKE2b-256 3152e1dd1b5214c559cf5a9fb7546c29277f13c03ed774b92d8e990d85bab0e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp312-cp312-win_arm64.whl:

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

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

File details

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

File metadata

  • Download URL: pymongo-4.18.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 820.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f267d11333ecb19af9b30458fc14e71f2adb131bde0b3a4fe6f63be7ea9a5e6a
MD5 7a9a2a81db9651c067f919d5d6549688
BLAKE2b-256 21a664fce36372dc1ff17b012e5289d44162b1b76337316f7e70d4f62a5cec42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 814.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 26128b99e50840597431a9c6b01641a225fd5636474d230ec5e174d00a0feb55
MD5 8321071f8298df0e4ac2874d6ad95c61
BLAKE2b-256 a865f24e34f9cb87e8a575cade061b5bf7d43bf421b4b11c789ebc98e375d31f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 438171ed19d62a1756db397ee5ba61429d6e9811188394f5aa775a0738327554
MD5 0c828634f0827d4c7b51e04bc438b6e4
BLAKE2b-256 ed62640ada66e62ae1646447ff246d73f73f82abf3b9e19b94ee63e6bb99177c

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2653a7df66ac73c18cd0aead309e5585805a432d332efe242540d5e78b01036c
MD5 a4c5e384c2dcb5e1760f21681598462f
BLAKE2b-256 1a43648ccc5a2e9ed6819f16481fe29c692f48d516500440d401591d3a621700

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 905de2265c70365354f920227c9642cd33891a4b077a8f13b190665a51567c9d
MD5 273500eb6c44f9b260074ec50676d444
BLAKE2b-256 b41b605abc0b764c2aba0e58d2597c3c8524877a7982e4bf1a9b7e263ba5188f

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f3625ade4a66327a7ffd7a5742be1b2f15fae5399d2c394d79709420c1482b8
MD5 7334aeaa6bcb0ccdb1c8fb33587b4bfa
BLAKE2b-256 049d157917d22fbffa0fd932265637119d9495bcb1be9d92b8a5c93c083d9765

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3275caec57b76b9e4948c677491d9d5771bf1748afac3d2d7e3242067e264571
MD5 6aff2b137bac621e1ee6df74d58aacbb
BLAKE2b-256 bece2b24eeed6aa418ce39283d90b3ffe3fef39429fdee61aa6af431e9af511d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58a70d491d872b64b0797581bb5f713965cdb822a5f52627869c3e99c1363021
MD5 66e6e31e5504d4f2dc7047fe7ffadf03
BLAKE2b-256 19a0caea60667fa8f018e51aa16061e221e7ed478a2837d381b2745ae8001533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2869a54f0be27fc4dbc5967e5dc30b29328916925f0c704aa75e74c4349fc79b
MD5 785d81302e6c1e14f42ec34da13ff814
BLAKE2b-256 86426e7c0a6c0c548fc3c84fd22afc6a585c590f154e133226e658831a38b334

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 815.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7c830b5fdf2d0db8e217a12e076c7e9d2ba25e17ac6b6c7169324bbd63800ab7
MD5 892eeaee4ac303d49c9bcf6f1d2c779a
BLAKE2b-256 8ea3ec44635e6c94714d564bad2c7d18c19484e6e565b045f536fb96ee27a3ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp311-cp311-win_arm64.whl:

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

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

File details

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

File metadata

  • Download URL: pymongo-4.18.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 819.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 afe2b10be8aee035644e5559af5fc54c290365cd4e5e38e657aa119b8e9acccc
MD5 c59d1f2324c73b1450ee432f4784ded6
BLAKE2b-256 7f07a0d147c7868a0a1a4c4c1fe1439bd241b32d787cfea86532c0044526bd50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 813.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 200d873d4972bbc136831a489fbad7631c63503212711b5206037ef8792f1ac8
MD5 b49229b3e6a47290ac4ed5f555c229a4
BLAKE2b-256 7b46ad74ee40e8e7a1514e0d04225f63cd81579e81cf960d35e8efb7f8f51fe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb327d3555ac4fbd0da657ea3741812b3a1e61e4603bd121298381f5ff5ac396
MD5 afd21a54b659825af300bc94fbc9cffa
BLAKE2b-256 3fe1c1170950f3b87f18f4f54361617cf41be2fe7d56f74e00e05da14dc50cc1

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 060e3494e7db52bc08bf27b5d7e1920a15b953d649f10c7c71dd68b4a2dac564
MD5 f2472238e0bc5ba79b1f4b0c3d672dce
BLAKE2b-256 bab756b8bce332b1f5b2c0c9024eab0b8d004387736b165263ebfdf0494c01cc

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1c3af67eeff3994ecbe63c711f76e6eb6a7212bc92c3e89f220ba9addd24e1c1
MD5 fac07f4bed05060d3b52ac23246ee660
BLAKE2b-256 2608f13561043d3b68e86c66885a7d84b7cd7465f250f8468b34e676765ed395

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c8e113867a9ad1eb1c28d2c21fbc896dac1d8a246be802151ea37d801233c73
MD5 c3bef5211015b5643722c0635e60de45
BLAKE2b-256 e0394017a90d726f00f10362507a8c3ddf93773ca633b921a93c28365892bac3

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d3f7e608db9a9dcdfb1f97cfec19642bc912f85d3b7a9550c4431c7c87ebe672
MD5 042ac500a99d065de5f0424feffec508
BLAKE2b-256 a1de54527044aea297c0ab2313e939508f4d472b63bcd71aa280b01d080fa46c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbfed8f6b312c6c110495d6ead2b0da1252cc7bd01029700f08e336036f023ee
MD5 b565a8fa31c5e10f4929aeda4f93f1aa
BLAKE2b-256 1ca1e861a3c3b8d2129a283d3a852768e7177a574e068e48f3da382dba48f5a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 618cab1b693ef0561fb7682ecf1f6044da1fefac0d96efc2e2f19b939f276e9f
MD5 793b7da86569a2ae7f3cde1ca10dd419
BLAKE2b-256 daaea8be4e71810cf7133f85e748a3dae9a663ed561701562ec10b9abfc9672f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 815.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 97e45de5402a3fa63e010e16f5fe00d38f31ff66291a2352aa0d254bbcf2119a
MD5 17ea2ab44ecf092edcbace416360aeae
BLAKE2b-256 13a3df24c48a768a32561531e9799f20d8fda8724823ea7410bbb89036f702c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp310-cp310-win_arm64.whl:

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

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

File details

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

File metadata

  • Download URL: pymongo-4.18.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 820.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e50d92eab42a417d503556c9f8e03240dddaa21ea343c4b654d714e9928711d
MD5 37ce93be330a1dd630858892dc8d486f
BLAKE2b-256 b786ed71663bafb5c6b26449766fb70a30360afaae8ce6ec252d6db97d2d1570

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 814.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 84b5683b644a6123fc37a1d3bb1dda5acc5a855823b044232b1957ff1c31a049
MD5 1faef61fba7c4b96a7b85108e49fa97f
BLAKE2b-256 14fa2766f0a651b83a25873b7ca987fd385330562ba81bcc7a63c2c89e1faa6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06d7c9f6388552b1c2b6ba6ea9f60bce1d4cc9c6f5c5e5d103fee7cdd20bdcdb
MD5 79960d54a28f34017c52f18f0f16a40f
BLAKE2b-256 11c4fd6f74f600e7609a5306fc37d0eca1b6d43ec303ee1afa6a6a9370c20243

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2978698a30e8384abbc37ee0095a9d1c6e9d91462aacb0ac1ec4d6b672a2c478
MD5 e6521f348a3b8b70999b87e09a87ca17
BLAKE2b-256 f2c778e1a3c1c575fde4e3763cabc10b9463e74deeef1708c29b3ecc0c6e937e

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6efa17c81f431c3061856b29bcb329f8a15200d56c15796720ba89767409cc7a
MD5 73bd4d21865490fdbd26e3af63ee284c
BLAKE2b-256 dd041f358107975b8dc18994c4a57f015a0ff5320c2ff0806803d74787bdd7dc

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b97f849c86bd2ac7ce444275647472f8169022352f8c4df2dd002ed6ca1ff58
MD5 aef695fb7c3ca5d9540c405d0daac60e
BLAKE2b-256 1cca94ea9666283a06f9d4513affff31a15c90465b3cd60843367a3544733b1e

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2a8fa93a1163a0ee54ff7e2c5c9dcbbcdc5097587ff95d085cf21ddc13c660a2
MD5 b41b25971e27b924314e368886f52a68
BLAKE2b-256 e32b33479d72a565387ba936974bec5f946bd60bc338aa7b11e0bf57df0160ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5893f41e2832cba8674f3b6cf22d39c0d432d80b7d55ad8ddc3dd1a83a1bf12
MD5 484d19f73c79be05f544be772208b270
BLAKE2b-256 ccfe446e84df654150f0bb61005c1637f58571d2d2a82512a6c269fc7a617f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 054b0ba7c5f1c6ddeee058ae808d7aafab1b2d2278d81e70d8a81fbff8d85e0b
MD5 50e9482dbb922a2666a8e006fb057227
BLAKE2b-256 83638789de2a3659a59fdcd1f956b2ef4da1d1195264f4b536842746b96eadda

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 815.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a9a4f4638b038bfc2cc787aaefd390ee6617985dab6745b7969261e30ce167bd
MD5 6d1f1b3554cd0d6cffd9124849ca65dd
BLAKE2b-256 75564cfe1e102ec1f296ec6ab67e01e2d9a38be4da810ac30bcd59e6a4a2e3b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongo-4.18.1-cp39-cp39-win_arm64.whl:

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

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

File details

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

File metadata

  • Download URL: pymongo-4.18.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 820.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ea4b0017c24695404848570c4001ea34756f0c4739042e49f02cf0b8fb7e3a47
MD5 67cb77966ac1be6e311e61879455c762
BLAKE2b-256 a13055b9f3b38c86199d0835b1fdee53924f15543cbfc19e53acd29e037e26fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymongo-4.18.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 814.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 941ec8fc2d32e88c3603c36ccfd2f7fc44f89d31519ca1388615257b634f68f3
MD5 eee4160239200cd38f9aca3017f7393b
BLAKE2b-256 87e88b79a339a028f3a4e54d8504bf55d7ddbdb3211ec77e76edef6a6216938b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70da34fc21099c084741c6318c435e1358db8f4492668b5ad21d8c5d146b0741
MD5 8ecee791ef175df10a16a659c313e311
BLAKE2b-256 f549b1198da44fe42f5e085ef2c97cc86132e43e41ac127fcfb042fb3089cd46

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 98b99909ae51e8f61dcad4ef125b204fa3d0a493567253b0dd8f666d706fbffb
MD5 24a2de2f67e618e81b970529aba2e012
BLAKE2b-256 ff94069fb6189dae8f48347b2d7e4134e822c105cd9324e6c17142c1b3b8029d

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ba651c604fee5bbb7021b79dd73da12e834c661a449a2d6140f4574e6e3a897e
MD5 591f6d2fdf62620a89d8b7838ae92fa2
BLAKE2b-256 d870d3351c1561905dabada4f5cb73fe9fb8aa96f9a6cdd713aa96b4eadea4da

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5da669d4ff5068c4b056ad7a43cb02620c285bef054c3577b65a4b51289ea512
MD5 c399a23e7fb4c35f42c5e90ff41d3069
BLAKE2b-256 903331b128ff08bc24408b579d477da1709fcc59842727f52dff7ecdc5bc8421

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file pymongo-4.18.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e99d8a30d3043a3daa2e75d80ab99283472ecbd98fc5b4e4c1cd79dd285a9748
MD5 c58f4e0e991342b624c04198e087f641
BLAKE2b-256 64b016bfedcb5e8553b3834984454d5c07e8ad2b23783770f85dbfa3ac2a61bb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfc19d3f4e095f354dac1389ef099376a6ee9394b3259f6281c9e68f85ccc029
MD5 7f34625c65ab8e7a1cb0a937fc4ddf23
BLAKE2b-256 ea5ad6d77039a3c84339b0db36398815e8e6f741e4c4b1c2e0aa077b642abd84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongo-4.18.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a4f25e078e36dfc3bd4c933c5665dfb2374f794e2aa68601e98181372f59714
MD5 98711d1d12e5f94572c1eac31bad6c8b
BLAKE2b-256 13d283cd12d3c0181076cd0db426a06467a532cf2780d8db87926d3a60db5029

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

4.18.1 This release

71 files

4.18.0

71 files

4.17.0

71 files

4.16.0

71 files

4.15.5

71 files

4.15.4

71 files

4.15.3

71 files

4.15.2

71 files

4.15.1

63 files

4.15.0

63 files

4.14.1

57 files

4.14.0

57 files

4.13.2

57 files

4.13.1

57 files

4.13.0

57 files

4.12.1

57 files

4.12.0

57 files

4.11.3

57 files

4.11.2

57 files

4.11.1

57 files

4.11

45 files

4.10.1

59 files

4.10.0

59 files

4.9.2

59 files

4.9.1

59 files

4.9

59 files

4.8.0

50 files

4.7.3

60 files

4.7.2

60 files

4.7.1

60 files

4.7.0

60 files

4.6.3

82 files

4.6.2

82 files

4.6.1

82 files

4.6.0

82 files

4.5.0

82 files

4.4.1

74 files

4.4.0

74 files

4.3.3

74 files

4.3.2

74 files

4.2.0

67 files

4.1.1

83 files

4.1.0

83 files

4.0.2

83 files

4.0.1

83 files

4.0

83 files

3.13.0

110 files

3.12.3

108 files

3.12.2

107 files

3.12.1

107 files

3.12.0

98 files

3.11.4

64 files

3.11.3

64 files

3.11.2

64 files

3.11.1

64 files

3.11.0

54 files

3.10.1

56 files

3.10.0

56 files

3.9.0

31 files

3.8.0

31 files

3.7.2

39 files

3.7.1

47 files

3.7.0

44 files

3.6.1

43 files

3.6.0

46 files

3.5.1

53 files

3.5.0

53 files

3.4.0

49 files

3.3.1

53 files

3.3.0

44 files

3.2.2

61 files

3.2.1

61 files

3.2

61 files

3.1.1

61 files

3.1

61 files

3.0.3

49 files

3.0.2

48 files

3.0.1

49 files

3.0

49 files

2.9.5

41 files

2.9.4

56 files

2.9.3

67 files

2.9.2

67 files

2.9.1

67 files

2.9

63 files

2.8.1

55 files

2.8

55 files

2.7.2

56 files

2.7.1

56 files

2.7

56 files

2.6.3

29 files

2.6.2

29 files

2.6.1

29 files

2.6

29 files

2.5.2

34 files

2.5.1

34 files

2.5

34 files

2.4.2

34 files

2.4.1

34 files

2.4

34 files

2.3

28 files

2.2.1

25 files

2.2

25 files

2.1.1

19 files

2.1

21 files

2.0.1

19 files

2.0

20 files

1.11

13 files

1.10.1

13 files

1.10

13 files

1.9

9 files

1.8.1

8 files

1.8

8 files

1.7

8 files

1.6

6 files

1.5.2

6 files

1.5.1

6 files

1.5

6 files

1.4

6 files

1.3

6 files

1.2.1

6 files

1.2

6 files

1.1.2

6 files

1.1.1

4 files

1.1

6 files

1.0

6 files

0.16

6 files

0.15.2

6 files

0.15.1

6 files

0.15

7 files

0.14.2

6 files

0.14.1

5 files

0.14

5 files

0.13

5 files

0.12

5 files

0.11.3

5 files

0.11.2

3 files

0.11.1

2 files

0.11

2 files

0.10.3

2 files

0.10.2

2 files

0.10.1

2 files

0.10

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9

2 files

0.8.1

2 files

0.8

2 files

0.7.2

2 files

0.7.1

2 files

0.7

2 files

0.6

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page