Skip to main content

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

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status

About

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

PyMongo supports MongoDB 3.6, 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.8+ and PyPy3.9+.

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]"

Additional dependencies are:

  • (to generate documentation or run tests) hatch

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.

Documentation can be generated by running pip install hatch; hatch run doc:build. Generated documentation can be found in the doc/build/html/ directory.

Learning Resources

Testing

The easiest way to run the tests is to run hatch run test:test* in the root of the distribution. For example,

pip install hatch
hatch run test:test

Project details


Release history Release notifications | RSS feed

This version

4.9

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

Uploaded Source

Built Distributions

pymongo-4.9-cp313-cp313-win_amd64.whl (973.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.9-cp313-cp313-win32.whl (945.3 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pymongo-4.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pymongo-4.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pymongo-4.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pymongo-4.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

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

pymongo-4.9-cp313-cp313-macosx_11_0_arm64.whl (993.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.9-cp313-cp313-macosx_10_13_x86_64.whl (993.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.9-cp312-cp312-win_amd64.whl (923.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.9-cp312-cp312-win32.whl (899.7 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pymongo-4.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pymongo-4.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pymongo-4.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pymongo-4.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

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

pymongo-4.9-cp312-cp312-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.9-cp312-cp312-macosx_10_13_x86_64.whl (940.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.9-cp311-cp311-win_amd64.whl (873.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.9-cp311-cp311-win32.whl (853.9 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymongo-4.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pymongo-4.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pymongo-4.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymongo-4.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

pymongo-4.9-cp311-cp311-macosx_11_0_arm64.whl (886.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.9-cp311-cp311-macosx_10_9_x86_64.whl (885.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.9-cp310-cp310-win_amd64.whl (823.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.9-cp310-cp310-win32.whl (808.9 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pymongo-4.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pymongo-4.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pymongo-4.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-4.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

pymongo-4.9-cp310-cp310-macosx_11_0_arm64.whl (832.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.9-cp310-cp310-macosx_10_9_x86_64.whl (832.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.9-cp39-cp39-win_amd64.whl (773.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.9-cp39-cp39-win32.whl (763.9 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

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

pymongo-4.9-cp39-cp39-macosx_11_0_arm64.whl (778.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.9-cp39-cp39-macosx_10_9_x86_64.whl (778.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pymongo-4.9-cp38-cp38-win_amd64.whl (724.0 kB view details)

Uploaded CPython 3.8Windows x86-64

pymongo-4.9-cp38-cp38-win32.whl (719.0 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-4.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (926.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pymongo-4.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (935.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pymongo-4.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (941.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pymongo-4.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (925.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pymongo-4.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (925.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

pymongo-4.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (917.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pymongo-4.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (916.3 kB view details)

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

pymongo-4.9-cp38-cp38-macosx_11_0_arm64.whl (724.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pymongo-4.9-cp38-cp38-macosx_10_9_x86_64.whl (724.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.9.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.tar.gz
Algorithm Hash digest
SHA256 39db9832d80cb2249f4ded7f6bf3e1664127ef1f43fbbc0a6e34b8eb9fe21f2e
MD5 ef0f551be364e12359110b97ad1848d1
BLAKE2b-256 e36799b3a8824a093a88f7b47cbf1b6bbdc306ed1c9b71cb5514778e1f42ddfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 973.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6a2bfe47a73a51faa7c18e7f658bb4e36b6692a14b05e7f78352ebfb8a9d87b
MD5 a649fa99d6a3a5950f923e0accda76c6
BLAKE2b-256 8fa41a815969c98cfaf7dc981483de1d4e1115e7ccc835a72e8368b8bb121eac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 945.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0f21a6577dfea445b0b388f41a06b268e5deb245a741c4e85d56d87ff1adcb34
MD5 fd08196ffa1ec66b02b142aca18e9b1a
BLAKE2b-256 e356245b30da2655ff2fe137eafc830f7b461414710a609d4a939a4cf4028cec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9b371e090537b71761efcc7d05bdf8aeb597f81c2a0b9782249d15e8d74059e
MD5 1f8685893006953fddaffa921ed396e2
BLAKE2b-256 576cde2df59f77bbe23435c9caa6602e3569e46af5a3f9b7e0395c3aa79b751a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be645f2f58ccf8a4e7e0c8af34bf75905c7b94a6609079ac96be7aeec5fd6eb8
MD5 bc787897f868c1e02b45b292fe44b08e
BLAKE2b-256 3b358ce40945115e4e611404b7d13fb29a7796ffca09285c64d38cdf31afefec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9203d8e924262b0171a8b343e168118d23e101e9bc10c0179ec4477f3ffe2a2a
MD5 8d6714330176b0bad74801c8771ecd21
BLAKE2b-256 3b3fec360e706793e840faa97d2fef3119ccfc63861bd530a8b030b38ec11e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c4d42722cae5e9b7d35a7951f203f83e805565f6b3c5bbebe54fdb680ebad3e
MD5 73e0927c6902c84db0e5c6ebd52d7dbd
BLAKE2b-256 7f7837351264c9384136c86eacf7e71996922ef557d3fdd720359adc87851189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85b35133f50c1f3d3f0f1ec3cd3e6ee2ee22cab410acd0d98bb396453be965f1
MD5 46dce3890b963fe5bef98e7fd17be727
BLAKE2b-256 031050c9662bcf90667d48d942809b7db0d421344b7de7c66ed6c00ec64471a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 408b4a152545baa01a640a9c081a840c52cb70e0ee0f68f35cd7908c31d8b572
MD5 1f1bfe26ba68460bfbbd201ea5d74e97
BLAKE2b-256 ddf9de767753cebf3d2cd83e3d7a1969214727014eb23d666aa17f61c06a398a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9732b230e3bfa18e1f7aabd873c629d19a82c6f2e80899b9a55ac53a159638ba
MD5 941b238ff848de15db0f349fbb972764
BLAKE2b-256 4fa62ff949f156807196500557efa84a35b88c568a923bfd5fa7c4ca4d5330dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 923.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55d7ab77e77a41d001dc499dae01704cb929bddcff8f2783b9b4d2fb3148b8c6
MD5 0d7de39d0bf3f6880214f3e1d9bcae91
BLAKE2b-256 db1fa02cc1cafda5cbd8603bfcba837ff4ff5d99e2a14b0fc54bebfb6c7f396a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 899.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b1eb84fb9e7906c1dff2d8bde55ec0abd1977f3ade2e5a3a679a224a1b621396
MD5 70e2501e6f8d28ce052c6752e1f0678f
BLAKE2b-256 a88c61df94c765c13affa92ba970527a9846c107bad5e40ee150815316211c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12205588ba2c9cb4c4dfcf6a4700ced7b6980160a9746e3f054d08130e12727a
MD5 c3f886c2dd5d17f620041b63b04a8673
BLAKE2b-256 1a42c51dcfc778e7eafa862bd5e9e652a1a4bf9776d899e9d4e1ad4d2b86aef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29676dca0dc8b45ce759d4c733836297727e144ed6f52ab8fe9350bcad59a2ef
MD5 65710dbec42f69bc2c42f1899ed14272
BLAKE2b-256 fd1cd4e2978a43f24b640761188b1fcb34ee9a3e2c2d0d3d913195cb8e3c185f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ad27d7a8e1a7a9da2dafd86a301067797320a634b2d2f8fc54fe3d6fa1b000a
MD5 b2de9a60d658801d6cfb5e96af9c330d
BLAKE2b-256 3272da8773a440e62e555fec07285687ed811617480209b7cc08aa1de5396e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e923b1f54a836ce17316381e898bd4353105edc39fa0a300d1894a1f102d0251
MD5 ec5a7f3037d9727d3aef9c2f0c61e211
BLAKE2b-256 3f6d57933870795dbf52d469d19a47f5b06b05766d668024106116b9f4aea89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36077166060c537fe1033a6ee6c6476425de3d32321f89c6842499dc1966275c
MD5 277011e36b576fe776a0eaff8dee80da
BLAKE2b-256 274ba68fcc8193cfdca2634b42b6b77ea6b5dcf9c07ed4c24ee88c2d807e5667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71bd38288dedd99eefb637a0d467a3f84b6066a95c35bf3b164de54d2a9a868f
MD5 a2f20bd0d9868ff344ea9101adc1f3b0
BLAKE2b-256 7f653b5ab3693e511f8e644ddc48bfebbaedf7528ef95b5e6d6c12165f1d6f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1bf6083c219fba0bec665c8326d5482ac5df03a016ab6cd5fffdc35e0eb69406
MD5 8b6bbf696291f0fa61a98b31d2d474b3
BLAKE2b-256 00bfa088065b88bb7db3ff14c5eeaa1acbe00d4ff536448e1cf4fab8fb002bc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 873.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 957903802ca4d0f48953a1a873268b04725fd5f3d866ddcdad70802b9b3f114c
MD5 dae96d9333c0afb4b596d7c65709f88b
BLAKE2b-256 91fc32f8e52d0d4bc7366b6d1ce15939b63942edeb5b0dc0069be70afe64a4fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 853.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 01747e00c02fe761b9b2edbd48e77288bdd35bcff072bb4aa810b801aff1cf56
MD5 2aa0a81aeb7e46638da1f56a1d1fc773
BLAKE2b-256 8caaf5688b2d26c161ace924e592d075fef55cbc08160470ebf7580c7a8ee800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d053ef99593405629234824b1bc6810eae71d4ee0a98e9b257d2c937ce54b87
MD5 d137d5a3647be059b2cc88e3ad01165e
BLAKE2b-256 e89c9d433c666f768e0908388285003f869d84ea3f730a86cc0533cb023bc881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 991dfa2ca94facb5684a8b7cc3bacb67d88ec41ce1ce9f61d7a680afc925c740
MD5 8f30c48234531c8639d21d2a8f530477
BLAKE2b-256 61c22161414d4bd593daa00af5e4ef746f0f70bbf40dcefdd0ed3af482005906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2eaedad8bbad6b4032f64badf954ec90c57e3b09552b898b13ebc330aee498b8
MD5 e2ce2dfaac03f79bff64fb02af632613
BLAKE2b-256 990cad12b6f25aef63bbc96e1ace5e8bcff5fa69b8afadc6368306665c3f174c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 307a10fb1b8a3eb396c8a1c6d468ee6156528d9572e657088b561aa746aba49c
MD5 d14678b0f87bc1ea88cc853288d5cf66
BLAKE2b-256 09681b79ef65c99d56fe3f2a47fb8ecaa9f4d637fef4d8adb80499f6e3077dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f8a0c65f0f4ed369519a816872f9c3df2b846cf75fc3e2b260747d3187be3b3
MD5 fbc722fcb4206366f4269fc7aad69dbf
BLAKE2b-256 e7b8d0be8d1a73691473e27b760684e3a2dc459a57350036ee2edfbbefc10bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18cb2e7a50d7f9a409e610f5c618df858fdb7b568a8a513d9820db3afdf1e31b
MD5 9eaffdaa0bf5e186144c5550b517a0fd
BLAKE2b-256 bf27e924a04212e8c2115ca93c773861a408b599a8edb4cdb9d3f3e208e02777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cce017a279c0a75cd4be6e99313aab236f6008b5eb4325e2eeb9fe8ac6d4c2a
MD5 a44c669630ab605a9b63db151901d8ad
BLAKE2b-256 46c44437559fbf337b2701b3288bef92c7b2fccb73dfc3d1912c5a79313d25ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 823.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5226c0ced635232afba2a81f2573a0bb2960fd26d39fb2a735adba50430b76d
MD5 164167eacb9f7653783b5b38eb5a2a22
BLAKE2b-256 ebbfd584421a38f36eb73ba7cdbda332310e75e19a73ca244b1323d14bad56f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 808.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b1a3623c3fdc86dbe1b0b1b276c239fed8bb52c0eb8de46cc854c5845f0b8a2
MD5 9bccb9d425e86771cab4d4e26c41b796
BLAKE2b-256 22767212eca984c517822e8945f84111ffae59603d6583fd767850eef0551223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9a5e3aa2963da88bcb9e91a6d6140b650d64f9f105e1fecc3c0f11cf9cccd1b
MD5 031b44e683245cb82595b1e83f101301
BLAKE2b-256 b32eb8b69b358cec7492eee60cca6c5799ffc5d60bc989cfbaf71d71072754cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 347fccf59452d08439d14ff81b2a4150b220e139695d973cfe7603e5d36544b4
MD5 e0f5d8b631eec704552605b95f0a9623
BLAKE2b-256 91fac0f73fb29853eb4d3ca452f9cfe45832c850125dde393addad0a7773b8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f532c6880efc35149596322ae0bad5956d2f99351964ed9008033b3a5b11152
MD5 0609dd02c9466c45cd786c77ef196faa
BLAKE2b-256 8e887e0b4cf581cc605b67f29e5ec35ab4b0be72dbefe2335f46d32ec021cf9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db39c7536ebc536be979167bce5b5cd1a671812604aa24497bb97c97f922c0cb
MD5 f0ce69492f3b88c7566f98214034abfe
BLAKE2b-256 2d0b4ad278565c76d9aec6ac48167a515cfc6d12ec18ef16f2c84293962fa593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 357d2bd57c08d8a4fabf8c98f5cd154d6199e5eb21cc580b3497eb9239883130
MD5 7a774a393f52231b909e64cd3655ca42
BLAKE2b-256 af2c66d5d37daa35813ddda4cc6de7a5ec5880a9785aeae38f7be8218d63fbda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 295e50348c8e30114871e9df0318899162a3dea52c40bd5b9a89004230a2736f
MD5 1f42296dfdb3b45f8c1e8119389d1843
BLAKE2b-256 66eea51221b981a8c894c22ea658282a098438ac8f558cc073446de2ab06f22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 399fcf17bf638437d69a1f4ca40c1b630698d6324763a2cd7ba88bdbb3d17bf2
MD5 54e54c6dfcd9604ac349c43846a21f65
BLAKE2b-256 448095ac2c8d2c4f506fc60f98aa8f61a81ea338a5ead59f159b58fdecb4b4d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 773.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aa7c825a2cc6bc9403965b676dd4f60875abc619611878bacf8e0f3210c53cc7
MD5 e8c609bb2820bb8344d2aa985bf607fd
BLAKE2b-256 7980f6194fd50e2f26b331381fc88a8e94d0b73ed70d52b466a8a11c19ab2d66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 763.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 637f88ddf878bb3954b18e2546e5921eaf5207ff9a4e6ac3c550241e85773279
MD5 57ef68ba37de63da8e502341775574fc
BLAKE2b-256 45d884384df5e7fa3d39ccbe4f1c2b6799371884443ca752bb2fa5778fdf81d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d81c43f10bd2fa899a128de1f9e68b57338ebba7f4478bd8ccd9c944965036ce
MD5 e70516045524de36751b678ff223f1c4
BLAKE2b-256 5746c23c0bb690d47f6ff874bdcdbfad4283a856a7f211b1a49f3c0120a8224b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bf5de78727fa21ca385e656d8c49bb8fdc153ddffb3c4346d47bedafb288d87
MD5 4cfbf7b2d582292243289987451a05a2
BLAKE2b-256 e222498638fa289d05c7d40b97e3dbd6fcc02e31e11bb3faff7396b270c1a7f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3396022ce9b5aa5ca5e95e061989a1b6262eecc70353a4287cf19390c83c367
MD5 04913af2a9c712e5fd2ee53de665e116
BLAKE2b-256 4aeba7e491472a03dabe41280b9c19fa30b6d5859ca8febd7f4033f499b43cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03aabe72dce8c348446d35b127cba2a9f9ff7c6c54a8d7446b34a4711611918e
MD5 f6170dceac84c43ac3b60642aab351ff
BLAKE2b-256 d008acb68fde015bef9100a0afd31912d2a5b6d1de71974efd2ee8a60f288ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 138df1db74a11d07be13d15ff35260f8ea8b797dadfd15f9c056b2c6a7525c2f
MD5 0c4c57e7bd45b6d9ebfd61cab2337660
BLAKE2b-256 2c59b05b7e55e40f6bcc0c5bdffdd61431f41c2eb1069dde0f363a7eb7f227c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8949123e8ca49715e3928f4915affeaf0a9b9e7e0a031df35030332961c7afb
MD5 e755f33229d83d92c46966d352ccba7d
BLAKE2b-256 ae4960b1938fb9fc9d0e6c0487bca2644d870059f976a56035da031b9ad5b674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b0f7410dd53c862dbc14ebec570c01182a406af16b6504632c95e298b9bbf1c
MD5 e29852d3aff6f4e5276668a2713183c3
BLAKE2b-256 54194b3227c1b33c27d3d0c9c4359365d81aca0b28fbb2c9e291ea580a70af07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 778.6 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceffbcce18fd23fe5f82301b31e84e38736dc116ac0ee4d9af4780a857f026a7
MD5 6d778ac3e03b47b5f65e89aea9c15762
BLAKE2b-256 6b931f368b59199e214729f18a3b88240da3090de219931ac2356edeac573df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7b9cf7eb3001dee6e8fd0451c6708f678458766c03d8c1f763a4e70298f4842
MD5 bd37c2af6a1710e13db9454b0e29fb42
BLAKE2b-256 8c383a3f093b49e30ed28b016a918050808c299b24ac8ef5ab9b37a2dcb465aa

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 724.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6b6b781c47cb206b3c051a8bde22627e1c45fccbcbc234286ea9921c1c6432d9
MD5 4428cc6ddfb9a7ae8377e4abe0580050
BLAKE2b-256 427033bed44ed0e43979c434c0dabe49e23a520af8007cccf59d5331c896e7e8

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-win32.whl.

File metadata

  • Download URL: pymongo-4.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 719.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 722d5ad63f139205b42d43f0c8abbb0b168bb2b5338f2b831f7e534666307668
MD5 40989bd5a2738b383b7640a7bf7dc548
BLAKE2b-256 89edf20e99ba7d31740d43898b62d680589600017b7b92e0f29bac4e47a42733

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c6fdea83531716ae244f173be9320a35fe0ce98c39bfba4093d2169b6b38da9
MD5 8716ff864899b4b5e1aba878135eb325
BLAKE2b-256 2901e1553603bc6bbc79d81c0fc98e36b4eab35e8d353b3df42870cfbe8ff7bd

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 263445885971c818c19cef0e19455aa1dbd4095d3d401738d9c90610624a9f96
MD5 d6d509ff187c03a44933b2b3be9de9f0
BLAKE2b-256 49cb7ef5c9e182ba6f2b61ce3f4cc97e2093a70729ff1332f7db9a58cf5c3305

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baffcf67f79878c7bd11c0739838cf6f15f6b149f32cff8aba2d6a98bfd2d1e9
MD5 6ad87bc220b514a9c566969c49038b48
BLAKE2b-256 c99afdadaa98e08c4cd7db5360cec2e006861d2468c924964d4ec58254ef33dc

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa85c74582bf4df88fb7e96c42d76be8039a8be93c4379606acd12343bda9052
MD5 64846b6c011e6b3feaaa6bfbe7d5fc61
BLAKE2b-256 b866314db744fbc869b92980d9825e154576376ef13a3d5b137adc0d3a24483f

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0557cd1a692beac5085ea20ebacb5b27d2823348ea66992768f1a4214927fa8d
MD5 939ffbeee01e02e7080d2bb5b2db3de7
BLAKE2b-256 aeea159dfebfcc9339226cfc47fde9db182af9bdbdb39515429dd13613e5c3d5

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33976c3d6d0b9328fda3b06db8b4dae152e0959d662b8c1fc0fd18635435c733
MD5 d805d2436b4d195cc3199f5420809795
BLAKE2b-256 f820d4f42f82bf856106c6c518c98f6f98931890dad85a7eb243244af23a63d2

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a702fcb738bf2679460f668e100cf63d984528f4a05240f49fedcf33a741741
MD5 b3513abb5f6d88a152c09e307df5c077
BLAKE2b-256 cbc96a4a408510baaa644b1222793a5cd0316df7c29656e1c4ace04e0ac0bb3b

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pymongo-4.9-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 724.8 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 740bfac33a08a1c32cdd69533e9b47b7db6a25582b64bd1cf340d8444ff253f4
MD5 5a398831c4afc2f9dbb2dcdb6778ef00
BLAKE2b-256 81d1034b41e64557ceb26806f468069e5824194f9ceceb8f5373887bbc0e0be9

See more details on using hashes here.

File details

Details for the file pymongo-4.9-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7eb10369f4e12075e7720322a1afc72fc442d58d4a8b31a3354ad5fab480fa6e
MD5 9790a882937923d47573c18ccf83fe87
BLAKE2b-256 2cc44d658035393e3df83c7a6596d3d5c8a5e85cfc5e70513f4e782372b4ba85

See more details on using hashes here.

Supported by

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