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

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.10.1-cp313-cp313-macosx_11_0_arm64.whl (996.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.10.1-cp312-cp312-macosx_11_0_arm64.whl (943.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.10.1-cp311-cp311-macosx_11_0_arm64.whl (889.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.10.1-cp310-cp310-macosx_11_0_arm64.whl (835.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

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

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

pymongo-4.10.1-cp39-cp39-macosx_11_0_arm64.whl (781.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.10.1-cp39-cp39-macosx_10_9_x86_64.whl (781.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

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

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.10.1.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.1.tar.gz
Algorithm Hash digest
SHA256 a9de02be53b6bb98efe0b9eda84ffa1ec027fcb23a2de62c4f941d9a2f2f3330
MD5 cfd926889b25259e182e35a610e848c3
BLAKE2b-256 1a35b62a3139f908c68b69aac6a6a3f8cc146869de0a7929b994600e2c587c77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45ee87a4e12337353242bc758accc7fb47a2f2d9ecc0382a61e64c8f01e86708
MD5 27390b61a43864b142fa7fbec9faaa40
BLAKE2b-256 0d2a7c24a6144eaa06d18ed52822ea2b0f119fd9267cd1abbb75dae4d89a3803

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ee4c86d8e6872a61f7888fc96577b0ea165eb3bdb0d841962b444fa36001e2bb
MD5 4def029e70f2d33ccfdee897f50ac3cf
BLAKE2b-256 38bc5b91b728e1cf505d931f04e24cbac71ae519523785570ed046cdc31e6efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72e2ace7456167c71cfeca7dcb47bd5dceda7db2231265b80fc625c5e8073186
MD5 efcba6bd8141a54d1bf239d7378eaac8
BLAKE2b-256 ad8ac0b45bee0f0c57732c5c36da5122c1796efd5a62d585fbc504e2f1401244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e3a593333e20c87415420a4fb76c00b7aae49b6361d2e2205b6fece0563bf40
MD5 da2170c383b1f7fd834a265b3bb7251f
BLAKE2b-256 29b6e5ec697087e527a6a15c5f8daa5bcbd641edb8813487345aaf963d3537dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fb6a72e88df46d1c1040fd32cd2d2c5e58722e5d3e31060a0393f04ad3283de
MD5 3ed0b1fadf9df67f37a358f91005ec5d
BLAKE2b-256 788c45cb23096e66c7b1da62bb8d9c7ac2280e7c1071e13841e7fb71bd44fd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0783e0c8e95397c84e9cf8ab092ab1e5dd7c769aec0ef3a5838ae7173b98dea0
MD5 a967e6b557ebd84b34f5d3a6f634d8c8
BLAKE2b-256 bf506936612c1b2e32d95c30e860552d3bc9e55cfa79a4f73b73225fa05a028c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ad05eb9c97e4f589ed9e74a00fcaac0d443ccd14f38d1258eb4c39a35dd722b
MD5 eea580da0da56581f80b6a78e6066916
BLAKE2b-256 3b266c0a5360a571df24c9bfbd51b1dae279f4f0c511bdbc0906f6df6d1543fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 594dd721b81f301f33e843453638e02d92f63c198358e5a0fa8b8d0b1218dabc
MD5 e57c76dc55c001182365fa3051928957
BLAKE2b-256 4c39fa50531de8d1d8af8c253caeed20c18ccbf1de5d970119c4a42c89f2bd09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90bc6912948dfc8c363f4ead54d54a02a15a7fee6cfafb36dc450fc8962d2cb7
MD5 67a3a271b45d9095583a5efd33136e8f
BLAKE2b-256 8376df0fd0622a85b652ad0f91ec8a0ebfd0cb86af6caec8999a22a1f7481203

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dcc07b1277e8b4bf4d7382ca133850e323b7ab048b8353af496d050671c7ac52
MD5 5ad48e35930e2b73de3757b7b06fdd1e
BLAKE2b-256 768b5afce891d78159912c43726fab32641e3f9718f14be40f978c148ea8db48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 544890085d9641f271d4f7a47684450ed4a7344d6b72d5968bfae32203b1bb7c
MD5 e6fe290d2995892521ae106b6dfd0ef4
BLAKE2b-256 6c80ba9b7ed212a5f8cf8ad7037ed5bbebc1c587fc09242108f153776e4a338b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5d55f2a82e5eb23795f724991cac2bffbb1c0f219c0ba3bf73a835f97f1bb2e
MD5 d739cf80dd294b45802d5662d43e8dd8
BLAKE2b-256 70ed1603fa0c0e51444752c3fa91f16c3a97e6d92eb9fe5e553dae4f18df16f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11280809e5dacaef4971113f0b4ff4696ee94cfdb720019ff4fa4f9635138252
MD5 72cbc4e1144533e74863db1d0b926c99
BLAKE2b-256 8a566d3d0ef63c6d8cb98c7c653a3a2e617675f77a95f3853851d17a7664876a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4924355245a9c79f77b5cda2db36e0f75ece5faf9f84d16014c0a297f6d66786
MD5 3df4ed143190ef1d6e411daa82cd0812
BLAKE2b-256 0c74fd75d5ad4181d6e71ce0fca32404fb71b5046ac84d9a1a2f0862262dd032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb104c3c2a78d9d85571c8ac90ec4f95bca9b297c6eee5ada71fabf1129e1674
MD5 b90c7ad42721db74bf8d092928dfb1de
BLAKE2b-256 07af691b7454e219a8eb2d1641aecedd607e3a94b93650c2011ad8a8fd74ef9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e974ab16a60be71a8dfad4e5afccf8dd05d41c758060f5d5bda9a758605d9a5d
MD5 398624d59f66fc6c50dfcc1e347af385
BLAKE2b-256 c166e98b2308971d45667cb8179d4d66deca47336c90663a7e0527589f1038b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bd26b2aec8ceeb95a5d948d5cc0f62b0eb6d66f3f4230705c1e3d3d2c04ec76
MD5 78054743ae75ca6f81527647a3b11c33
BLAKE2b-256 ca9b21d4c6b4ee9c1fa9691c68dc2a52565e0acb644b9e95148569b4736a4ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fbedc4617faa0edf423621bb0b3b8707836687161210d470e69a4184be9ca011
MD5 c4178c7354ff752d4c79b842d6b6b4ce
BLAKE2b-256 10d160ad99fe3f64d45e6c71ac0e3078e88d9b64112b1bae571fc3707344d6d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9df4ab5594fdd208dcba81be815fa8a8a5d8dedaf3b346cbf8b61c7296246a7a
MD5 cb88d10499e42bbc95aae72c25f73375
BLAKE2b-256 0268b71c4106d03eef2482eade440c6f5737c2a4a42f6155726009f80ea38d06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 778ac646ce6ac1e469664062dfe9ae1f5c9961f7790682809f5ec3b8fda29d65
MD5 967cb44ca4ddc9973d4481acdcf19507
BLAKE2b-256 2407dd9c3db30e754680606295d5574521956898005db0629411a89163cc6eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cec237c305fcbeef75c0bcbe9d223d1e22a6e3ba1b53b2f0b79d3d29c742b45b
MD5 bcd726b85c557d098bd9ca85ae999e61
BLAKE2b-256 9a16dbffca9d4ad66f2a325c280f1177912fa23235987f7b9033e283da889b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca6f700cff6833de4872a4e738f43123db34400173558b558ae079b5535857a4
MD5 105e45fb5d82816182dfa99a7b86f8fd
BLAKE2b-256 56c54237d94dfa19ebdf9a92b1071e2139c91f48908c5782e592c571c33b67ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c4d0e7cd08ef9f8fbf2d15ba281ed55604368a32752e476250724c3ce36c72e
MD5 2bd37f76daabe938a53cce5180bb119a
BLAKE2b-256 560fb6e917478a3ada81e768475516cd544982cc42cbb7d3be325182768139e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a970fd3117ab40a4001c3dad333bbf3c43687d90f35287a6237149b5ccae61d
MD5 ddeb94daabebdeae82bf757b33bb37a8
BLAKE2b-256 ec404759984f34415509e9111be8ee863034611affdc1e0b41016c9d53b2f1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3337804ea0394a06e916add4e5fac1c89902f1b6f33936074a12505cab4ff05
MD5 3953538910ab7bcb9a24d33c27478d58
BLAKE2b-256 2b4d21df934ef5cf8f0e587bac922a129e13d4c0346c54e9bf2371b90dd31112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f437a612f4d4f7aca1812311b1e84477145e950fdafe3285b687ab8c52541f3
MD5 ec2cf8fb913025041a6193bc92a451b5
BLAKE2b-256 29a29643450424bcf241e80bb713497ec2e3273c183d548b4eca357f75d71885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57ee6becae534e6d47848c97f6a6dff69e3cce7c70648d6049bd586764febe59
MD5 fb5f0907f5b61a0c5a64da8724f080f0
BLAKE2b-256 e4a3d6403ec53fa2fe922b4a5c86388ea5fada01dd51d803e17bb2a7c9cda839

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 88dc4aa45f8744ccfb45164aedb9a4179c93567bbd98a33109d7dc400b00eb08
MD5 ae83cd188aac7ed0dcb6922ef47eea4a
BLAKE2b-256 ab141cae5359e2c4677856527a2965c999c23f596cced4b7828d880cb8fc0f54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 29e1c323c28a4584b7095378ff046815e39ff82cdb8dc4cc6dfe3acf6f9ad1f8
MD5 07ef25603558849e581486ebcd370ad8
BLAKE2b-256 ede38f381b576e5f912cf0fe34218c6b0ef23d7afdef13fed592900fb52f0ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a920fee41f7d0259f5f72c1f1eb331bc26ffbdc952846f9bd8c3b119013bb52c
MD5 7ed535976c9e545700bd5f94b82d3c97
BLAKE2b-256 7d6d50480f0452e2fb59256d9d641d192366c0079920c36851b818ebeff0cec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ecc2455e3974a6c429687b395a0bc59636f2d6aedf5785098cf4e1f180f1c71
MD5 7c4e42cd305363356140c81856d29754
BLAKE2b-256 379ada0d121f98c1413853e1172e2095fe77c1629c83a1db107d45a37ca935c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ded27a4a5374dae03a92e084a60cdbcecd595306555bda553b833baf3fc4868
MD5 c745967c4401ae02a8f9a4ae7e3b9be5
BLAKE2b-256 e5d98cf042449d6804e00e38d3bb138b0e9acb8a8e0c9dd9dd989ffffd481c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae2fd94c9fe048c94838badcc6e992d033cb9473eb31e5710b3707cba5e8aee2
MD5 8b77fdcee3c1eaa972c743a6e5314f65
BLAKE2b-256 46ff9eb21c1d5861729ae1c91669b02f5bfbd23221ba9809fb97fade761f3f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0a15665b2d6cf364f4cd114d62452ce01d71abfbd9c564ba8c74dcd7bbd6822
MD5 9c1d7920a5faf66953b4765f825bb950
BLAKE2b-256 cd8fb83b9910c54f63bfff34305074e79cd08cf5e12dda22d1a2b4ad009b32b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70645abc714f06b4ad6b72d5bf73792eaad14e3a2cfe29c62a9c81ada69d9e4b
MD5 88b5dc1c9c5eb2011d3aa2bf1bafdeef
BLAKE2b-256 9701fe4ee34b33c6863be6a09d1e805ceb1122d9cd5d4a5d1664e360b91adf7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e699aa68c4a7dea2ab5a27067f7d3e08555f8d2c0dc6a0c8c60cfd9ff2e6a4b1
MD5 b3e59c940ee503e853cf86cb31859b18
BLAKE2b-256 c1caf56b1dd84541de658d246f86828be27e32285f2151fab97efbce1db3ed57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dabe8bf1ad644e6b93f3acf90ff18536d94538ca4d27e583c6db49889e98e48f
MD5 76b64d2e2d2fef57790ce369fbe607a5
BLAKE2b-256 36d449198168f296838c49d732743ae073f9ca9e8f65f15f5209637456892968

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e0e961923a7b8a1c801c43552dcb8153e45afa41749d9efbd3a6d33f45489f7a
MD5 4b49138768eca14bfc30c38dcba1e484
BLAKE2b-256 29de3c23e7739b0d0dafa4d802e9773011cf54e305c7cb788a52d50c3ef585d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f56707497323150bd2ed5d63067f4ffce940d0549d4ea2dfae180deec7f9363
MD5 6212fc99767f6392c73d9b832677098b
BLAKE2b-256 005801d8b3b374e45931581364752bf7a4693e9c7422704f81e6e91ffa42c38d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93a0833c10a967effcd823b4e7445ec491f0bf6da5de0ca33629c0528f42b748
MD5 9d28e2ac73017beead163eb5e071c39a
BLAKE2b-256 1c0369cee6f23463251a8f6de6670fb665e2531cc0df500d61150e57d1aedf70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2bc1ee4b1ca2c4e7e6b7a5e892126335ec8d9215bcd3ac2fe075870fefc3358
MD5 cf4b8e318adb44f2f1e00c0406c16af3
BLAKE2b-256 d14a19c3d45659835f814efef8b250456923899cc7542c52f8beb1a6a164106f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb99f003c720c6d83be02c8f1a7787c22384a8ca9a4181e406174db47a048619
MD5 77b9fbcc90b45d67eaf98f04e25c9fd3
BLAKE2b-256 b065118bc20fc66451ae4b8ceafbd9aab1168bb13cf4e5699b81807bb911a443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1ec3fa88b541e0481aff3c35194c9fac96e4d57ec5d1c122376000eb28c01431
MD5 dedc90a7024809d97545cd7ad189c023
BLAKE2b-256 a1929a4afaf02d4d633c3211b7535e6bfbb2527524ca8ac8039b8d7eb3c765eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dac78a650dc0637d610905fd06b5fa6419ae9028cf4d04d6a2657bc18a66bbce
MD5 0a6490a66b9cd04cb558b2ba27165141
BLAKE2b-256 fcaf40f0112605f75f5ae5da554b2f779a83c40ecf2298c57e120e6d7bfcff65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 409ab7d6c4223e5c85881697f365239dd3ed1b58f28e4124b846d9d488c86880
MD5 403f3e2962c8ec36ad5a4653966cfe61
BLAKE2b-256 be6f9aa0ba2f4cfa4c30c962bd1f5a38b2eb95b23e3965918d211da82ebaacf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95207503c41b97e7ecc7e596d84a61f441b4935f11aa8332828a754e7ada8c82
MD5 9330b7af2fe1db2e941e0060a05f45d5
BLAKE2b-256 1413a5a3da69ee146bac81baacc7b27995849bfbb89eaabfb3d19824c7056fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15b1492cc5c7cd260229590be7218261e81684b8da6d6de2660cf743445500ce
MD5 8b5cb90a2aea7f6fd385c6c780bbcacb
BLAKE2b-256 3969a13a61fd9a19e659cb43cb98240a75dab2f8e7b60bee568c309a123f8edc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3a70d5efdc0387ac8cd50f9a5f379648ecfc322d14ec9e1ba8ec957e5d08c372
MD5 5964877ed1c993832b13e7ffaaf030b1
BLAKE2b-256 3852a58196a45232e9046c8b13f4fa3d89cca0e462b5c6d28969759226f781ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.10.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 345f8d340802ebce509f49d5833cc913da40c82f2e0daf9f60149cacc9ca680f
MD5 b14f2c4e8e8af05a90799782d809003f
BLAKE2b-256 9e35b932c0db60508971701ef42c47ab6db3e60497f0821da4f340ecff9eebf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba164e73fdade9b4614a2497321c5b7512ddf749ed508950bdecc28d8d76a2d9
MD5 6703612d49303d119b05e2258e9587d3
BLAKE2b-256 5f547da021c70dbac3e993aee5544398f6c1ec58d0aaaf6f91de555e4b6a6e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15a624d752dd3c89d10deb0ef6431559b6d074703cab90a70bb849ece02adc6b
MD5 8759e6e19cc7c6b4af72354bae8ce87f
BLAKE2b-256 f60c8b3981432b8d635763aef504475c1f1ec51447889fd13ac30676cecf1229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdeba88c540c9ed0338c0b2062d9f81af42b18d6646b3e6dda05cf6edd46ada9
MD5 04725657807bf9c3f3eaefdbce120273
BLAKE2b-256 6ebef7d3df1415af12200b63b3cfebd2d156ea3215f3ce054bf3f73d81e0be73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6131bc6568b26e7495a9f3ef2b1700566b76bbecd919f4472bfe90038a61f425
MD5 a5369790ba95a91140edd18ac753553c
BLAKE2b-256 7f87ea553a6b3e2607d409ffcb8958153e84370f1cd54e1f2191b16dcc28b408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f1945d48fb9b8a87d515da07f37e5b2c35b364a435f534c122e92747881f4a7c
MD5 de1803709d8d6401d002707aadb99822
BLAKE2b-256 655bd134139e96fa085ebc7545a7bfb335606e7ee3ae403c170a3fe64ba7b854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4a65567bd17d19f03157c7ec992c6530eafd8191a4e5ede25566792c4fe3fa2
MD5 a565df794a216e8d4f7e652671eb4c05
BLAKE2b-256 ad319b5a831f7bd96e932c0b6e234a154896fe0373c19ba32054e959ae258b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9235fa319993405ae5505bf1333366388add2e06848db7b3deee8f990b69808e
MD5 0979ff7a93fd1d610612e34f5e76e64e
BLAKE2b-256 bbf1848132a5db3f5fba1928018d53d990f4ba81db9126129f2e5a99d9da8d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23e1d62df5592518204943b507be7b457fb8a4ad95a349440406fd42db5d0923
MD5 a59c3937a759dd228be608ea16f2b0d1
BLAKE2b-256 829f62599a11b2371ea176ddc4444fe9cef7bb1b8d8c2ba3ec2fce03a63f6b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.10.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 442ca247f53ad24870a01e80a71cd81b3f2318655fd9d66748ee2bd1b1569d9e
MD5 18d5d279f187436c7b3a041d904ff002
BLAKE2b-256 31220580e055aa609ae61c5c054afc746968be771d75d42b6a43f3979fa1c20e

See more details on using hashes here.

Supported by

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