Skip to main content

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

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

Uploaded Source

Built Distributions

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

pymongo-4.10.0-cp313-cp313-win_amd64.whl (976.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.10.0-cp313-cp313-win32.whl (948.7 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.10.0-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.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pymongo-4.10.0-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.10.0-cp313-cp313-macosx_11_0_arm64.whl (996.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.10.0-cp313-cp313-macosx_10_13_x86_64.whl (997.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.10.0-cp312-cp312-win_amd64.whl (926.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.10.0-cp312-cp312-win32.whl (903.0 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.10.0-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.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pymongo-4.10.0-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.10.0-cp312-cp312-macosx_11_0_arm64.whl (943.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.10.0-cp312-cp312-macosx_10_13_x86_64.whl (943.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.10.0-cp311-cp311-win_amd64.whl (876.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.10.0-cp311-cp311-win32.whl (857.3 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.10.0-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.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymongo-4.10.0-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.10.0-cp311-cp311-macosx_11_0_arm64.whl (889.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.10.0-cp311-cp311-macosx_10_9_x86_64.whl (889.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.10.0-cp310-cp310-win_amd64.whl (826.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.10.0-cp310-cp310-win32.whl (812.3 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.10.0-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.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-4.10.0-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.10.0-cp310-cp310-macosx_11_0_arm64.whl (835.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.10.0-cp310-cp310-macosx_10_9_x86_64.whl (835.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.10.0-cp39-cp39-win_amd64.whl (777.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.10.0-cp39-cp39-win32.whl (767.3 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.10.0-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.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.10.0-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.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.10.0-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.10.0-cp39-cp39-macosx_11_0_arm64.whl (781.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.10.0-cp39-cp39-macosx_10_9_x86_64.whl (781.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pymongo-4.10.0-cp38-cp38-win_amd64.whl (727.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pymongo-4.10.0-cp38-cp38-win32.whl (722.4 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-4.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pymongo-4.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (938.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pymongo-4.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (945.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pymongo-4.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (929.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pymongo-4.10.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (928.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

pymongo-4.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (920.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pymongo-4.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (919.7 kB view details)

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

pymongo-4.10.0-cp38-cp38-macosx_11_0_arm64.whl (728.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pymongo-4.10.0-cp38-cp38-macosx_10_9_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.10.0.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.10.0.tar.gz
Algorithm Hash digest
SHA256 2b56e499e0066c4a21a26b451b10377f147c360aa318f49f8c640b7f588e8e8c
MD5 e81dc787de940197eec0bc3e94475939
BLAKE2b-256 318a324251afdeab2ea5ff94dc84b8d310b389edfaa49074f677d74833e06d03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 976.9 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.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5c3da4af3f20c1c4558650b46e2d0c8a261bd825476372c07e72aca6144ee5b0
MD5 1825b0fd8918e8a41c1e5b15990d7a19
BLAKE2b-256 c806a7ead539780490d9352b3d3c9f3679f8cfe43e5fb5d896494610c4d7c1f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 948.7 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.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 33d89ba16e083fa596763b87ef8e54fbc54b7582245b12cfc59af29a4f578505
MD5 fc182a3a62fa278e0074b5d5d888212c
BLAKE2b-256 30a3b4910514398ab9f42c72d9fc23dc53fd2b30767281f39834b817ca38dddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f1a4afb651edacb9f8a2da61c56d4b030f30073751b51b9fef66efd1e835ebe
MD5 ad49556aa3491cf9d56afb7395b7cf55
BLAKE2b-256 8df638ee7f4c35a79885b7261dd8013a76d8c89dd8a93e78e185ee4c46f806c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96b8d8a070c0bad72e0c075bea1c6715fc26f402ccfb0040a6fdf6a2ae0c582d
MD5 2949795590d5fd9230b747cd208c7c05
BLAKE2b-256 dfea11ae982cd3528eb150325e8138a778251bdc768603409f2d9d74b1b2d485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 889592aded274b970c2980a3460b51a2f9407724c02ebb37df006f7ff9354f9d
MD5 bc08769c54be09e6efb0b9057307d148
BLAKE2b-256 ab6d564f4175382553e1e0760f1660cab0d9fd61b1af108ceb1e383d41557358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43ca69abb3012b512e9cf17a9da8a7fa5ba6a9a32a3cd00df8daffedeb2b32f6
MD5 f64beeb2caab393525822cfeca637ecc
BLAKE2b-256 83c180c7f6853b9eb84e5368105fe34b125fe814bc34772b613f16b9261cdc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 088afbb90331a4c5d628351245d576bcb7eb2b3ab49eb7f648284de51566b3bb
MD5 8fb63bd7d5c3aea520c7fed619b77845
BLAKE2b-256 4c88e897eef80872bbadf6c2a923adde9f4b773e7b270abf995924c5c53df55c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 864d9e0ff0d525d8bdae1b23e11f5c9a7e625866fb38c0f19e0d3d6800235722
MD5 1606acc8a2bd5d54ec9337579d1507a7
BLAKE2b-256 dcdd1c82f8613ffd08b90ff60a65abaab5f31e6f9406cccb8df9e5f3c428063e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2b7385eb45f6a6d3bb78182570d7d9bfecb9d041044dc0a75188937136a01fbf
MD5 d783c604eceb4330a6c6a6de99c96ee2
BLAKE2b-256 9248a4443d8cf9815b0462e4e2b9e63660d11ecb25abe7a64c697f8dd00eedaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 926.7 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.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ac85ad92d2f237bd368626bd3794aa1b643da1016defe484b676f1d92e31801
MD5 6b36067fd35398ae919c8186d7039dd7
BLAKE2b-256 cab8c972944cf3c6fc2c5d4812dadb61ffdd6fd9ce28e7d528dd20729493f7b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 903.0 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.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c880d7333d46801abb5050da80238a838a773bcd95a7045ea9ae8869928f32f0
MD5 ce615a618ac8b88f20675ebfbcf470ee
BLAKE2b-256 1a7874c7487dab2b83fec32457ba61bc206f38b80429b5cf34252ef8c312ee33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f12f2a17ef849529a471bf23f7b8553d37197e8b5a671d03d83de97873e9e923
MD5 d817b8aa738ff840d6e3e4b4f1d4d9ec
BLAKE2b-256 60a1bc4216826cc6c0811f8d7445f3fa10cb04f19c3dc9ca9cef7dfb0552a003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8328927e89d650175bca6974faf8830c08ea507a933b6ca8442cbb4f131c9b5
MD5 5dfa92cef6199db62579ce095dead650
BLAKE2b-256 5a1704444ce26f7000771509b133b1ad65a94cfa51c9158b734eb575aae454bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 252bf16d45f2049190994a9c17bdf3998ead44f1f4ceb97f6a149c25396ee054
MD5 693ee36932f8bf31d267217ffb01b77d
BLAKE2b-256 45dd754d1a4305f8dbb31e50102999e0a9af15d0e05457bca89e2be972d5ab16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f50e85aaa04dcd55846a86512c56c720a386b06067b4ad4ba4ac6eb73a07cc4
MD5 e7bad33faa6b7f469b9e9d6a60004bee
BLAKE2b-256 f4dc3154d9ed699a0268054811bce3a3c9d2dbaf04f75549bb0666a407b63f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee01c79e7193edd14f9d1f182b5d1a96de709085f946a112a6f652844fe65789
MD5 a44415b79c63b5bfaf71567f61368e2b
BLAKE2b-256 4e787996d1cc88d512f839ec0fbb3de62a0a59eed28307a004b04ae30833e812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be12a4fa20813c04e66e25392fa5c48129fa29f724191148547bfb288fd46b08
MD5 e5a6197c46b81c220af46f225e76d489
BLAKE2b-256 2a2a1c1b42ce5ca52b41bb3ba26e43a69589a32dff4e0b3fdb66f45a88c0285c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 43cc579b1aad7381839baa36ec673d21afa7785d10babfb0470d8fadc4334636
MD5 735d5c1b40451c3a00ea0b303881511b
BLAKE2b-256 866454e103b2c9fcb49e9d059cee6d1a2fb020aa964e53db90aa765155a7d4ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 876.5 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.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6128ef22ea99a2c15e7909ef812cfcb1179b8ce858d8050259e5a614aac2d8cd
MD5 0fcccb10565d9660b4e2ad83ac3a0acb
BLAKE2b-256 a95d9cd2344bc2d682f34994beb592587d1898597a588da021e5d019a6a214dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 857.3 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.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0447e8d6341675d896c10c9f27770011575c659525f058d94451f54beebe85cf
MD5 2e8a53de0e46d094de90c6e5fd88f0b5
BLAKE2b-256 4def7443a872b62ddb926377283e0d3ad38231b867f55910d9aa5cd5f0bf1eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3b3a2f6acac03ddfe774e3565bf34d752ca85198a5720538492e58b9747f2e2
MD5 f21fc695b99f1ab724e866af53ae7636
BLAKE2b-256 8bff87582f7f686957f8a470c324ab5b1d0d43eb1ddcfe26b0a5184a5fbe6000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51c525337be3fc1d96d585ab981114962ae50b0ad43e8fcb8735d6493d42be0f
MD5 ab095c720702c5b13b187a07cfbe2fa2
BLAKE2b-256 cb4b12e47ef12d9bbeb99cad92e8399ff9cf58b8af665bc6d931658ba7cc616a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b234f73a1198f49663bb4848b942bb8c78a31f4fe46cb559081c13662f556e1
MD5 be2bd037536e3f9baf7d0a450e7c7cf4
BLAKE2b-256 67c4aab86747dfe14983ed008d0754c31f8dab824234f7dca44acce9036a6063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c62dcdc19af778fb8e7980fcef9e251b3e8a6395d466e0316470df72a7e30339
MD5 26a9a607fa2e416e2e18195fc6376c74
BLAKE2b-256 5c52352b9766ed2a29bc953ae2a6ca75d5d2820a07ed93518dba4cd76a8cc658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e86b0cc697b45098467c3c4dba6ec671090106d6ed09822e45cc5f614e7d2d7
MD5 7dcd9bb4908d6709c553982bf8657497
BLAKE2b-256 4ede9fae2b0a2b3b144ba9b22490a4750083c11cde2ac917bb0c058a942e0cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6edb2c9fe5e78af017d1d7c251ed6460fd0764c2a74405c3d783eec92abfdf3d
MD5 df5153340632a134ebda69db990cd183
BLAKE2b-256 179be34d960b404b906d548f02709b21331be35ac91dd54e6d108923fb783783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4ebf41c7b219c3a155b675c4d0db66199af1c7c64370f5f9eb06004fd24d9b1
MD5 a561796d3be7495aa297bd8e345bf819
BLAKE2b-256 bedd9a5439f77345a75f759520dc1089249dfd550e3d3a603d4ca64be10c93fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 826.8 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.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 46bc15df824df877efa174f09b71ef87fb3838fe213d4fd95e35be7b2b6b21c7
MD5 7b258f810c7d8d8ef96f0a301726f975
BLAKE2b-256 0873a56d0abd70e360edc29cdd18a2b077847c07ba3444dc7320ff7f6b8802fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 812.3 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.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5de901d39f0f014e2d54fca03e12e2d5ebbb5067c58577fc71a6caea3b244dbf
MD5 5419084c29ca1ffdcf1ce7b221893b71
BLAKE2b-256 38ce7de966bdd52768dc11de9be90f029695c0d4af6052c72e3a656e4569b82c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da6eff9c804c1fa178a965228d2c4787cf9a6e333df2cb9fa6beeb80b519845a
MD5 4557665471893becdcef62d8f26b2f71
BLAKE2b-256 faa004591eba63dc2a9fb0bb3ef317b8bc3c1a032c995ac1af1adcc17f7d487a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b602e714575eba4cb521ad56eb5af55f0e44d723f23ae1d9357629a34b783281
MD5 f2d9a9426976cdc6c7a5c38601077407
BLAKE2b-256 3eb20875df5b54e586981b87810f890de151e80eab05e73dfce13832b2df886a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0087eb80d7d253479b974e5b531a75433942bbdd3ab28c7c4677176815288c52
MD5 1915824a2b5704627875cca90deca587
BLAKE2b-256 aeb154b30c2d27e693150d46d97baa8b9b339536b2d0a105fb5d91c1ce7a5a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 debfdbbed338fbdcf16774a8f7f9ab7dca80314946d31cc6ce9a23a87b0b4903
MD5 aaae4d0fe6531908023c243569d7d5db
BLAKE2b-256 161f67aed204c3d6238d31449c49d6045347abe1a2bca07e35336cf215bccc14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4894e933088f2cd43a6891371a3f1c6a16f7acd8b4a736f4034536a7d46d17e5
MD5 ce59589d389681c2b45f92dd748b9377
BLAKE2b-256 e129314d6736642258ab44030f80a995e84182ee739015376a47bb8cefa4896d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81b1454f361f27066552a931206a1562f72b34198eb2154c5c430d7b00b1c5f8
MD5 8b67f1c865d45fdda0be99c77ad8ed6a
BLAKE2b-256 dc95e3a82c655310fadc4ae0fbd79f01835f873baa64a8d01047170c238aee10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0197e0ae594d7b04bf1a012d9c6bbde6f0f5ccf1d88349fabeacd0b40b4334f5
MD5 9873497b7cfda20623af95f3b036981a
BLAKE2b-256 f43fc05de7f199428325c3fced5c0c19224adf226d9b1b79b197248aba4a0298

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 777.1 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.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ba06fea288b08b9e44d177703f0c96a9fb17ff96e8d444be757bdec030b39f37
MD5 098c78b9ec09df9043cd5b8fce082f14
BLAKE2b-256 299f0d11fe1426329224fdd504b9294ce3c137623691ba8eb58c91650d3c6f9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 767.3 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.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 eec4dd90bd109ce5cc7a9ea0616b7c4211cd1e7a93733d2a8a0809060f1e9950
MD5 6feb5fc37f56a852bac913f976392be5
BLAKE2b-256 23dadf7849448aefea58073ecbd9ca2f1948d1687d74c33ae280d004d306324a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50d52322bb3220f93d05f7e5e94d744b2bc9070fea6231eb3a0c9569064db558
MD5 0938494bb5e27fe13d01550a30efddb8
BLAKE2b-256 89f0a387901f11011a74982ce9071fe882b2e3a75357ab76dfae219ac644d13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ff01206b0c20ab462889bed31b44c327fbf018343ade8f40aca1093a651ee61
MD5 650911e8e24c40e67189897556a02a15
BLAKE2b-256 12b48fd398afc4262948b6bc9e2d659454111c2eecd1e9b19ff4251ae81a09d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 711bdf49126c5bd78db9db24c3788003f0d22b21ffcdbbee2e099ac2f72d7309
MD5 cec76c110e81536a541e802baf68d11a
BLAKE2b-256 6a896d4f1663186d86077d6e20b3e2bc6432616ebeb5652308691eed165f306b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a78aae1fc42bcf690e749fd8d14f1dfc1be664c058e49a05504ed9f4c53ef43
MD5 c10a42be0f0053130d649073aa06d9fa
BLAKE2b-256 88810c7ee0cd1615fc5484f68662b30446d77eb81f5fc2f64b2de136f0a6657c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 10438c08eb05208cebb198b740921bfe0eee303e5e7283bc451f7cad76dba4b7
MD5 be794e1b03402cdb1088e3171fe1f7e8
BLAKE2b-256 b431649d03c2bb41646ad40a5427e0f7acff441eae7bd39a024763e0fe472717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71e9b0e623e8395595d359100dfee38d033c7a842db51ff2a13207650336c24a
MD5 2545fe702bb93571350585c618e2056c
BLAKE2b-256 c1223e525cd771d0aed9c8bd5f813ce58b98e90d43f3d25493a7c282dc597722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30c253ca10460d641461fb302c03fabb30e80567719b739ddf07501ff7cb5508
MD5 5ce0fd8f93295f30041137412d9d8d98
BLAKE2b-256 32e561b8ef11b5909ad1ce90113bd96b2676fae6b41d14cc9873d571712e5b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e668a5d3ec7990276a7bfe5945f754036398088939367f5d0bbf85d0979cfd3
MD5 437789578f800a6ccb34f52d69f2570e
BLAKE2b-256 67c3ba33a6bf51d7b1522cfaa1283f63f6c9e4fc353ef5388e2872b409d8fa12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4e41fac6874678dd49b29b58ec8c11cfccdee4bd66dc54f96c5cec831b802ae
MD5 99c0bbfc41e1e7260fdc2738cba45bec
BLAKE2b-256 25c3e86823fc8952a1dde8eacf7a905aa1631464b20d54c048fc27b331ffe7f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 727.4 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.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7a4c61d613d597205d70f0514ba7a11b466d399cc501b43a42225cad79d4ad46
MD5 3cc942017b45ce76146850d387568983
BLAKE2b-256 b744ea573b7f7f69711297b4de94b54ed77242b133dc9fad3573c429ad6e87a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 722.4 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.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c4e270ec6d3210d76c5d1f8642d9f904a02d138ca11937a78cb742b56c14fa7c
MD5 e38f466c013240133e9cedc0ffba008d
BLAKE2b-256 a7df37eb293f20166cc7f1e72042e1ac852faceb43ac39141f46948da3f56722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f102160b1f43085717851988b03a45cce2603a856065b2281f3f529da989668
MD5 aa265d84677e84269c71e8e123697550
BLAKE2b-256 98d842c7f166eb3ea318706159c9d9e48f01fe1bd5e9b5bab475169a1062208e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ad5df86de544e44c3a296d0a165ff3d661b9245868e957d6be98340c8b406f7
MD5 034167a6ae32c44ae017e736507ec0fc
BLAKE2b-256 a1500705a3195cf24740758e35eb4bd8f89be06b9bac07276f8d0239267d12f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fa3cb722d7e59b24f58ddd6c75a9f7f1509edcdd9fee3799805b36eab523bfc
MD5 fbdbe73b77e892eb9436019b9218468e
BLAKE2b-256 251aa4b558316b25ca50ce088c3a2c3e49fc09f26f807ffe763f0d1c4fb1bec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41c9f875ddda4733ec3ba1e1b95aa419fee3b34dd7b14d79677292f5871d0a2b
MD5 a5212ee990545ee01e8285caa9bd437d
BLAKE2b-256 b5e95d20f4d4b947d9e04a1704f176b40ae11f021f512bb638b2cc37e90174b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 49c09629a9a3218ff176d7cfb7cf2bbb96869be288b2581762f31eae25ae1b30
MD5 f00fbc56e884f87555bf7fab6b5a3e88
BLAKE2b-256 032f586bc550652fdca6bc36dc014e701a66c8c04935606ca539b6ef10a347f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32ebc28f2648b544742c812e26b020ac1b35a5c74be6fc9f96eeaad229713f52
MD5 3b0717235b7914792fcccfac29729a2e
BLAKE2b-256 ff7d461cd23c3d3702f7eaf4efd455724bbdbb38229d0982ba7a48f2d7b79568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c1af5c689dd67a9b33e88bc4adb63e61d823108b26d81cbc0ab7373b467a048
MD5 56ab25dd9216225f95d6efbb7a31adf9
BLAKE2b-256 e8a75de6690aaf621065244d98fb7ccd91720cf8c07b643124743e4b73f6f86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c163e9b747ff2a44a3967fe7a1803809d114505447e744f2aba0b910da24ea7
MD5 270d358c4e55c591230278adac1af5cb
BLAKE2b-256 c909212e82114713f02684516663229ea27e70edba8c01fef75afbe78a06a9fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f38902d3c306795451cd328f9e3f694da05ce95c460273965159b7891f303e71
MD5 5a1db333f1314d2d08440532da170ad1
BLAKE2b-256 53aa8694f48488a30945ba7a7e683842fb94cf1f944ffc5bb736b079376e5b90

See more details on using hashes here.

Release history Release notifications | RSS feed

4.18.1

71 files

4.18.0

71 files

4.17.0

71 files

4.16.0

71 files

4.15.5

71 files

4.15.4

71 files

4.15.3

71 files

4.15.2

71 files

4.15.1

63 files

4.15.0

63 files

4.14.1

57 files

4.14.0

57 files

4.13.2

57 files

4.13.1

57 files

4.13.0

57 files

4.12.1

57 files

4.12.0

57 files

4.11.3

57 files

4.11.2

57 files

4.11.1

57 files

4.11

45 files

4.10.1

59 files

This release

4.10.0 This release

59 files

4.9.2

59 files

4.9.1

59 files

4.9

59 files

4.8.0

50 files

4.7.3

60 files

4.7.2

60 files

4.7.1

60 files

4.7.0

60 files

4.6.3

82 files

4.6.2

82 files

4.6.1

82 files

4.6.0

82 files

4.5.0

82 files

4.4.1

74 files

4.4.0

74 files

4.3.3

74 files

4.3.2

74 files

4.2.0

67 files

4.1.1

83 files

4.1.0

83 files

4.0.2

83 files

4.0.1

83 files

4.0

83 files

3.13.0

110 files

3.12.3

108 files

3.12.2

107 files

3.12.1

107 files

3.12.0

98 files

3.11.4

64 files

3.11.3

64 files

3.11.2

64 files

3.11.1

64 files

3.11.0

54 files

3.10.1

56 files

3.10.0

56 files

3.9.0

31 files

3.8.0

31 files

3.7.2

39 files

3.7.1

47 files

3.7.0

44 files

3.6.1

43 files

3.6.0

46 files

3.5.1

53 files

3.5.0

53 files

3.4.0

49 files

3.3.1

53 files

3.3.0

44 files

3.2.2

61 files

3.2.1

61 files

3.2

61 files

3.1.1

61 files

3.1

61 files

3.0.3

49 files

3.0.2

48 files

3.0.1

49 files

3.0

49 files

2.9.5

41 files

2.9.4

56 files

2.9.3

67 files

2.9.2

67 files

2.9.1

67 files

2.9

63 files

2.8.1

55 files

2.8

55 files

2.7.2

56 files

2.7.1

56 files

2.7

56 files

2.6.3

29 files

2.6.2

29 files

2.6.1

29 files

2.6

29 files

2.5.2

34 files

2.5.1

34 files

2.5

34 files

2.4.2

34 files

2.4.1

34 files

2.4

34 files

2.3

28 files

2.2.1

25 files

2.2

25 files

2.1.1

19 files

2.1

21 files

2.0.1

19 files

2.0

20 files

1.11

13 files

1.10.1

13 files

1.10

13 files

1.9

9 files

1.8.1

8 files

1.8

8 files

1.7

8 files

1.6

6 files

1.5.2

6 files

1.5.1

6 files

1.5

6 files

1.4

6 files

1.3

6 files

1.2.1

6 files

1.2

6 files

1.1.2

6 files

1.1.1

4 files

1.1

6 files

1.0

6 files

0.16

6 files

0.15.2

6 files

0.15.1

6 files

0.15

7 files

0.14.2

6 files

0.14.1

5 files

0.14

5 files

0.13

5 files

0.12

5 files

0.11.3

5 files

0.11.2

3 files

0.11.1

2 files

0.11

2 files

0.10.3

2 files

0.10.2

2 files

0.10.1

2 files

0.10

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9

2 files

0.8.1

2 files

0.8

2 files

0.7.2

2 files

0.7.1

2 files

0.7

2 files

0.6

3 files

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