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.

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13t Windows x86-64

pymongo-4.13.0-cp313-cp313t-win32.whl (975.7 kB view details)

Uploaded CPython 3.13t Windows x86

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

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

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13t macOS 11.0+ ARM64

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

Uploaded CPython 3.13t macOS 10.13+ x86-64

pymongo-4.13.0-cp313-cp313-win_amd64.whl (949.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymongo-4.13.0-cp313-cp313-win32.whl (926.8 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.13.0-cp313-cp313-macosx_11_0_arm64.whl (965.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pymongo-4.13.0-cp313-cp313-macosx_10_13_x86_64.whl (966.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pymongo-4.13.0-cp312-cp312-win_amd64.whl (898.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.13.0-cp312-cp312-win32.whl (880.5 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.13.0-cp312-cp312-macosx_11_0_arm64.whl (911.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.13.0-cp312-cp312-macosx_10_13_x86_64.whl (911.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pymongo-4.13.0-cp311-cp311-win_amd64.whl (848.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.13.0-cp311-cp311-win32.whl (834.1 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.13.0-cp311-cp311-macosx_11_0_arm64.whl (857.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.13.0-cp311-cp311-macosx_10_9_x86_64.whl (856.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.13.0-cp310-cp310-win_amd64.whl (797.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.13.0-cp310-cp310-win32.whl (788.5 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.13.0-cp310-cp310-macosx_11_0_arm64.whl (802.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.13.0-cp310-cp310-macosx_10_9_x86_64.whl (802.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.13.0-cp39-cp39-win_amd64.whl (747.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.13.0-cp39-cp39-win32.whl (742.9 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (945.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (953.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (937.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (910.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (927.7 kB view details)

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

pymongo-4.13.0-cp39-cp39-macosx_11_0_arm64.whl (748.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.13.0-cp39-cp39-macosx_10_9_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0.tar.gz
Algorithm Hash digest
SHA256 92a06e3709e3c7e50820d352d3d4e60015406bcba69808937dac2a6d22226fde
MD5 5314eb37bbfdaee976293b8d3a568b55
BLAKE2b-256 740c1fb60383ab4b20566407b87f1a95b7f5cda83e8d5594da6fc84e2a543405

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 99a52cfbf31579cc63c926048cd0ada6f96c98c1c4c211356193e07418e6207c
MD5 b62761acc5df48d51470e5214b326718
BLAKE2b-256 b0391e204091bdf264a0d9eccc21f7da099903a7a30045f055a91178686c0259

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 1397eac713b84946210ab556666cfdd787eee824e910fbbe661d147e110ec516
MD5 8cb2c7576a33e5c4f3a00fc94a503c87
BLAKE2b-256 58d5373cd1cd21eff769e22e4e0924dcbfd770dfa1298566d51a7097857267fc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66800de4f4487e7c437991b44bc1e717aadaf06e67451a760efe5cd81ce86575
MD5 c1ddbd3a05418a82d206629f5d8c30b4
BLAKE2b-256 e90f11beecc8d48c7549db3f13f2101fd1c06ccb668697d33a6a5a05bb955574

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50c503b7e809e54740704ec4c87a0f2ccdb910c3b1d36c07dbd2029b6eaa6a50
MD5 2e54fb9cbd217668d1d04e0323dff911
BLAKE2b-256 16637991853fa6cf5e52222f8f480081840fb452d78c1dcd6803cabe2d3557a6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fca24e4df05501420b2ce2207c03f21fcbdfac1e3f41e312e61b8f416c5b4963
MD5 55903d344a5d4d5c3f9050145695c987
BLAKE2b-256 563208a9045dbcd76a25d36a0bd42c635b56d9aed47126bcca0e630a63e08444

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c02160ab3a67eca393a2a2bb83dccddf4db2196d0d7c6a980a55157e4bdadc06
MD5 15810a094d1cbc660cd6de73c25b542a
BLAKE2b-256 67dcf216cf6218f8ceb4025fd10e3de486553bd5373c3b71a45fef3483b745bb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82c36928c1c26580ce4f2497a6875968636e87c77108ff253d76b1355181a405
MD5 c9f122462f9d253f8032a42e438c8fde
BLAKE2b-256 17a70358efc8dba796545e9bd4642d1337a9b67b60928c583799fb0726594855

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e11ea726ff8ddc8c8393895cd7e93a57e2558c27273d3712797895c53d25692
MD5 451b9336c30c16caae3a01e7ac7c8d8f
BLAKE2b-256 4b898fc36b83768b44805dd3a1caf755f019b110d2111671950b39c8c7781cd9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5adc1349fd5c94d5dfbcbd1ad9858d1df61945a07f5905dcf17bb62eb4c81f93
MD5 90842ea11dd7c52d0cd5232bd91d70db
BLAKE2b-256 623fc89a6121b0143fde431f04c267a0d49159b499f518630a43aa6288709749

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a9fe172e93551ddfdb94b9ad34dccebc4b7b680dc1d131bc6bd661c4a5b2945c
MD5 2f70e2369c19736ad2465b7b00d5235c
BLAKE2b-256 dda6fb104175a7f15dd69691c8c32bd4b99c4338ec89fe094b6895c940cf2afb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d10d3967e87c21869f084af5716d02626a17f6f9ccc9379fcbece5821c2a9fb4
MD5 d3cad211cf296f1622c73919137c0381
BLAKE2b-256 04be0a70db5e4c4e1c162207e31eaa3debf98476e0265b154f6d2252f85969b0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b91f59137e46cd3ff17d5684a18e8006d65d0ee62eb1068b512262d1c2c5ae8
MD5 924bc2dcfdf01ea1be0fb29db51ed124
BLAKE2b-256 4ccc33786f4ce9a46c776f0d32601b353f8c42b552ea9ff8060c290c912b661e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8af08ba2886f08d334bc7e5d5c662c60ea2f16e813a2c35106f399463fa11087
MD5 2b29040fabf12e6b448c403e701a8d56
BLAKE2b-256 892b1aad904563c312a0dc2ff752acf0f11194f836304d6e15d05dff3a33df08

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d81d159bd23d8ac53a6e819cccee991cb9350ab2541dfaa25aeb2f712d23b0a5
MD5 b6621213560163bc2158075a6455e2d8
BLAKE2b-256 dc3b6713fed92cab64508a1fb8359397c0720202e5f36d7faf4ed71b05875180

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be048fb78e165243272a8cdbeb40d53eace82424b95417ab3ab6ec8e9b00c59b
MD5 b3b944ef32dbd99af3c3bb8b75b587c9
BLAKE2b-256 fc3e0732876b48b1285bada803f4b0d7da5b720cf8f778d2117bbed9e04473a3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61733c8f1ded90ab671a08033ee99b837073c73e505b3b3b633a55a0326e77f4
MD5 2f753ecd29d2079a23afe393f6d76506
BLAKE2b-256 2ddd9a2a87bd4aab12a2281ac20d179912eed824cc6f67df49edd87fa4879b3e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d631d879e934b46222f5092d8951cbb9fe83542649697c8d342ea7b5479f118
MD5 e75197698c84aa5690267b6f8bf23cf3
BLAKE2b-256 3669e4242abffc0ee1501bb426d8a540e712e4f917491735f18622838b17f5a1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 92f5e75ae265e798be1a8a40a29e2ab934e156f3827ca0e1c47e69d43f4dcb31
MD5 8980ca3209a14e9983c98d8c48299103
BLAKE2b-256 5adc9afa6091bce4adad7cad736dcdc35c139a9b551fc61032ef20c7ba17eae5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c03e02129ad202d8e146480b398c4a3ea18266ee0754b6a4805de6baf4a6a8c7
MD5 571c3e41987913635e637a5f6e4f1bd0
BLAKE2b-256 6a436595a52fe144bb0dae4d592e49c6c909f98033c4fa2eaa544b13e22ac6e8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5dea2f6b44697eda38a11ef754d2adfff5373c51b1ffda00b9fedc5facbd605f
MD5 f1861255b6c3a60098b9bdb72c803dde
BLAKE2b-256 f22fc4e54ac337e0ad3d91aae7de59849aaed28de6340112da2e2427f5e0c689

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f33b8c1405d05517dce06756f2800b37dd098216cae5903cd80ad4f0a9dad08
MD5 b4dd4bfc74fd26cc7dd27956e918de31
BLAKE2b-256 d15cfad80bc263281c8b819ce29ed1d88c2023c5576ecc608d15ca1628078e29

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6208b83e7d566935218c0837f3b74c7d2dda83804d5d843ce21a55f22255ab74
MD5 a2f61cac62a10e65102b0a91408d89fc
BLAKE2b-256 7ceae64f2501eaca552b0f303c2eb828c69963c8bf1a663111686a900502792d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b54e19e0f6c8a7ad0c5074a8cbefb29c12267c784ceb9a1577a62bbc43150161
MD5 abcd78707d76b2cb9cb0c006b31a962b
BLAKE2b-256 03d40047767ee5b6c66e4b5b67a5d85de14da9910ee8f7d8159e7c1d5d627358

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0b26cd4e090161927b7a81741a3627a41b74265dfb41c6957bfb474504b4b42
MD5 5b9831e08616e916931b3b8d6beed03f
BLAKE2b-256 41fbd682bf1c4cb656f47616796f707a1316862f71b3c1899cb6b6806803dff6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02f0e1af87280697a1a8304238b863d4eee98c8b97f554ee456c3041c0f3a021
MD5 87589f773f04df299423cdb5a07c62b6
BLAKE2b-256 c13d4ff09614c996f8574d36008763b9fc01532ec7e954b5edde9254455b279b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 899a5ea9cd32b1b0880015fdceaa36a41140a8c2ce8621626c52f7023724aed6
MD5 8677abf9b98222f5d781e60878e6f98e
BLAKE2b-256 868b6960dc8baf2b6e1b809513160913e90234160c5df2dc1f2baf1cf1d25ac9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 007450b8c8d17b4e5b779ab6e1938983309eac26b5b8f0863c48effa4b151b07
MD5 d1277a77fa31cd68488136659d9dc473
BLAKE2b-256 425edb6871892ec41860339e94e20fabce664b64c193636dc69b572503382f12

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6a8f060f8ad139d1d45f75ef7aa0084bd7f714fc666f98ef00009efc7db34acd
MD5 a80a6548e0b31cd9b84b67f059ff3d68
BLAKE2b-256 45bdd6286b923e852dc080330182a8b57023555870d875b7523454ad1bdd1579

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 936f7be9ed6919e3be7369b858d1c58ebaa4f3ef231cf4860779b8ba3b4fcd11
MD5 b5c387d9a82f64a1539de0a519f6faa1
BLAKE2b-256 f12373d0379e46f98eed5339b6d44527e366b553c39327c69ba543f7beafb237

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b63d9d8be87f4be11972c5a63d815974c298ada59a2e1d56ef5b6984d81c544a
MD5 394e59dd31dba824852047074c9e5817
BLAKE2b-256 30104c54a4adf90a04e6147260e16f9cfeab11cb661d71ddd12a98449a279977

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d842e11eb94f7074314ff1d97a05790539a1d74c3048ce50ea9f0da1f4f96b0a
MD5 be9bb6b2a3e493751b83feceb081a2d5
BLAKE2b-256 bde310bce21b8c0bf954c144638619099012a3e247c7d009df044f450fbaf340

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5303e2074b85234e337ebe622d353ce38a35696cd47a7d970f84b545288aee01
MD5 6e95f263905d127d6e3cdb4bc2a45339
BLAKE2b-256 51e222582d886d5a382fb605b3025047d75ec38f497cddefe86e29fca39c4363

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9288188101506a9d1aa3f70f65b7f5f499f8f7d5c23ec86a47551d756e32059
MD5 19b501ca14c17b8c09d68195fcabb30a
BLAKE2b-256 ff6217d3f8ff1d2ff67d3ed2985fdf616520362cfe4ae3802df0e9601d5686c9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7d740560710be0c514bc9d26f5dcbb3c85dbb6b450c4c3246d8136ca84055bd
MD5 4bdfc981809fefe3387fa5fd2967bf93
BLAKE2b-256 865299620c5e106663a3679541b2316e0631b39cb49a6be14291597b28a8b428

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc9e412911f210d9b0eca42d25c22d3725809dda03dedbaf6f9ffa192d461905
MD5 09886a950b31bce8f11aef7027499aa4
BLAKE2b-256 c3e6b34ab65ad524bc34dc3aa634d3dc411f65c495842ebb25b2d8593fc4bbed

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46c8bce9af98556110a950939f3eaa3f7648308d60df65feb783c780f8b9bfa9
MD5 af0505d9155143a7be27a366084956bd
BLAKE2b-256 2721422381c97454a56021c50f776847c1db6082f84a0944dda3823ef76b4860

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: pymongo-4.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 797.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.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51081910a91e3451db74b7265ee290c72220412aa8897d6dfe28f6e5d80b685b
MD5 827a4dea35f62aba31a5ac98d7de0499
BLAKE2b-256 6babcc9ff174b4e60c02482685cdf7b76cfbe47640a46e2c026b987d8baded4f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 209efd3b62cdbebd3cc7a76d5e37414ad08c9bfe8b28ae73695ade065d5b1277
MD5 88baa27bf753e6dcaa060fc40a073455
BLAKE2b-256 87aa2752c1cdf67812703812199d4bbad2632ed801aa4736ebada43947dbf3ae

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4a7855933011026898ea0d4532fbd83cef63a76205c823a4ef5557d970df1f1
MD5 bddc4efbaeee4f2b7f15ea5b34960949
BLAKE2b-256 7059ccab966891d536ff3efa36a111d424850efc96364412a117fda2acca9d17

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e90195cb5aee24a67a29adde54c1dae4d9744e17e4585bea3a83bfff96db46c
MD5 156ea4d07067e3c0620f2de126d90d5b
BLAKE2b-256 7e0745a34e640cb863ddc514ee06845ea2c33312750eba6bbd6e5ab763eabf46

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea47a64ed9918be0fa8a4a11146a80f546c09e0d65fd08e90a5c00366a59bdb0
MD5 615299ddec954e67feee2c325562661c
BLAKE2b-256 b932f15f0b509797307905deadc7227aa83d824f4a2b419461534e8c25ef0149

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bac84ee40032bec4c089e92970893157fcd0ef40b81157404ceb4c1dac8ba72
MD5 6f03a55b6630df01441cf1ff695a2550
BLAKE2b-256 d0bb4b2f2013127ff36b6f7f567f714f3d4452dce4559abe236ea98d0626e9e6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f39791a88cd5ec1760f65e878af419747c6f94ce74f9293735cbba6025ff4d0d
MD5 a7d9ec42acd9585728be7573dbda1b3f
BLAKE2b-256 3cc7fe84905f49cca6500dab25554f914dfb0ef95e77faa0cd87e4c5e1a81cbb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d377bb0811e0a9676bacb21a4f87ef307f2e9a40a625660c113a9c0ae897e8c
MD5 b085f8ba7c77554162158112317b3c28
BLAKE2b-256 f7d61a95ce6af3eb8398d8cadaf9b1429acb1c51ad62c7ec1be77606649f7543

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe497c885b08600a022646f00f4d3303697c5289990acec250e2be2e1699ca23
MD5 b77d728331845cc15f9c41b9cc3cec88
BLAKE2b-256 4f82b19f8f3d1b78e432e1e2a6a2da4dd7bbf5535bce704c69ab14ea598e1af5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e7d349066f4c229d638a30f1f53ec3a4aaf4a4fc568491bdf77e7415a96003fb
MD5 352bc13f2b9a8c959229fbc3108d9033
BLAKE2b-256 81d3372eecea4ac8629a215e9f2e387d6d73e4a7698a4fcfaeb478f843c217fb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bd23119f9d0358aa1f78174d2eda88ca5c882a722e25ca31197402278acddc6e
MD5 0718897174d765e6057ac36227a89d6f
BLAKE2b-256 5a2c7bbbb4c8aa758f2c86005146f5ebd0c5ffeaf420f6f7f21e526c03efd4d1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb780d9d284ffdf7922edd4a6d7ba08e54a6680f85f64f91fa9cc2617dd488b7
MD5 dca4bd295a6d54f48bcebbd4ca9d284e
BLAKE2b-256 7711e7a104523f40739809560675cfdd753a8524c53aeb9583c2a20481e7f068

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cef461fae88ac51cd6b3f81adf58171113c58c0e77c82c751b3bdcef516cfeb1
MD5 5eae07f2de15726535cfe3cb4137e256
BLAKE2b-256 f9c5a576862c4355cf350b8a66f0a079ed5858d52e123b93e71a9ec5f52f2ab5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4b4942e5566a134fe34c03d7182a0b346e4a478defe625dc430dd5a178ad96e
MD5 62ac107df3dfe969254d62d94eb2b5e7
BLAKE2b-256 7e2796e5dcfac38a9ebadb9c3b740f6660e6ed9372ccb5b62ab5efda35aeb299

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd0c9322fdf1b9e8a5c99ca337bd9a99d972ba57c976e77b5017366ba26725e1
MD5 8f7ac90416d592e13fac93bbe2d292a8
BLAKE2b-256 92dca643356995ac036f86f35e0e43cb1412e4f5b3128ae2398b208a9e8ef108

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d684d9b385d97ab821d2ae74628c81a8bd12a4e5004a3ded0ec8c20381d62d0e
MD5 b4c46111cfec3e36c20eb36428dab5c7
BLAKE2b-256 ac450bc5ebe2e573d5945f15806b95bda4f1e816b64a7b9feefb555c342c10db

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9a1d7d49d0d364520894116133d017b6e0e2d5131eb31c8553552fa77a65085
MD5 1531413dc940539e22b2835b5198cb21
BLAKE2b-256 42b49a33412c98774f9c79157acffe50786a9aa4781dca5b70b779eaa3d75cc5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2afe49109b4d498d8e55ac9692915f2a3fce0bd31646bb7ed41f9ab3546ca19
MD5 33508e93b57bab067edf5a0ca760dedc
BLAKE2b-256 c0e66d23ee9aebccd85878f1f2851cf89e9c4090dd544dd2bb2fbc93d1131105

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81b46d9bc62128c3d968336f8635bcfce33d8e9e1fc6be6ebdfb98effaccb9c7
MD5 e4a85938acb636fe948cbe3cfb96ac42
BLAKE2b-256 84a890aa028f3d2b8f498fac1768257d9493c7a986b936fe3d5b9dfd1616b9e0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for pymongo-4.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 267eff6a66da5cf5255b3bcd257984619e9c4d41a53578d4e1d827553a51cf40
MD5 e606684e4295f3c9ec6257da51b11dd3
BLAKE2b-256 84e26b2bced59dba2e9108263821f6141d7742e8e9ef84c1e1b15dff6ee223bc

See more details on using hashes here.

Provenance

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

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

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

Supported by

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