Skip to main content

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

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads 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, and 7.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

Or easy_install from setuptools:

python -m easy_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.7+ and PyPy3.7+.

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) tox

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 tox -m doc. Generated documentation can be found in the doc/build/html/ directory.

Learning Resources

Testing

The easiest way to run the tests is to run tox -m test in the root of the distribution. For example,

tox -e test

Project details


Release history Release notifications | RSS feed

This version

4.7.2

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

Uploaded Source

Built Distributions

pymongo-4.7.2-cp312-cp312-win_amd64.whl (485.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.7.2-cp312-cp312-win32.whl (480.6 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (695.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (689.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.7.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (677.2 kB view details)

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

pymongo-4.7.2-cp312-cp312-macosx_11_0_arm64.whl (486.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.7.2-cp312-cp312-macosx_10_9_x86_64.whl (486.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pymongo-4.7.2-cp311-cp311-win_amd64.whl (484.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.7.2-cp311-cp311-win32.whl (479.7 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (685.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (673.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (662.6 kB view details)

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

pymongo-4.7.2-cp311-cp311-macosx_11_0_arm64.whl (486.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.7.2-cp311-cp311-macosx_10_9_x86_64.whl (486.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.7.2-cp310-cp310-win_amd64.whl (484.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.7.2-cp310-cp310-win32.whl (479.7 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (670.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (676.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (683.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (671.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (660.6 kB view details)

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

pymongo-4.7.2-cp310-cp310-macosx_11_0_arm64.whl (486.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.7.2-cp310-cp310-macosx_10_9_x86_64.whl (486.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.7.2-cp39-cp39-win_amd64.whl (484.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.7.2-cp39-cp39-win32.whl (479.7 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (675.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.7.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (670.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (664.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (659.7 kB view details)

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

pymongo-4.7.2-cp39-cp39-macosx_11_0_arm64.whl (486.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.7.2-cp39-cp39-macosx_10_9_x86_64.whl (486.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-4.7.2-cp38-cp38-win_amd64.whl (484.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.7.2-cp38-cp38-win32.whl (479.8 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (693.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (686.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.7.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (687.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (679.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (675.1 kB view details)

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

pymongo-4.7.2-cp38-cp38-macosx_11_0_arm64.whl (486.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pymongo-4.7.2-cp38-cp38-macosx_10_9_x86_64.whl (486.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.7.2-cp37-cp37m-win_amd64.whl (484.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.7.2-cp37-cp37m-win32.whl (479.3 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pymongo-4.7.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (663.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.7.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.7.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (666.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

pymongo-4.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (658.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (648.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl (485.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.7.2.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2.tar.gz
Algorithm Hash digest
SHA256 9024e1661c6e40acf468177bf90ce924d1bc681d2b244adda3ed7b2f4c4d17d7
MD5 6ebe86590829e8fea43c384e299aeb4b
BLAKE2b-256 af7a3401c2f16bff666e7b2d0416a345e2cb4059d27c98cb80aad66cb82dda69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 485.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fadc6e8db7707c861ebe25b13ad6aca19ea4d2c56bf04a26691f46c23dadf6e4
MD5 71454f7f2aed283642673adeefee022e
BLAKE2b-256 3521483d2ef4580b0ee8a44647bfe18356e994ee9d1800f8c9ef56f60ffc5f32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 480.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db4380d1e69fdad1044a4b8f3bb105200542c49a0dde93452d938ff9db1d6d29
MD5 6cc814fd44a4e44726736accddb5bf82
BLAKE2b-256 3686c4ef5e07931da7006d76e3eaf3ff90712a9b85ddfaddbdff768ae51e322e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82102e353be13f1a6769660dd88115b1da382447672ba1c2662a0fbe3df1d861
MD5 41773bbc2dc2b3808793fbb958e9d74e
BLAKE2b-256 39f841a224fd0229c3b6ee15faa1050159a95ba2a053d54cc12ca47093f3ee38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d275596f840018858757561840767b39272ac96436fcb54f5cac6d245393fd97
MD5 5c7d290705b2b5480d6c0ff50a174695
BLAKE2b-256 66cce5b7367dba6582c5c73d610bed96401a2fa22ae480a46c0eb4f5391147cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a87eef394039765679f75c6a47455a4030870341cb76eafc349c5944408c882
MD5 1ac553268ac94549aeeb295baabc5ce1
BLAKE2b-256 625bf81bd28056c017b78dfc97a421cc7213075071f876a769e017a9a81af977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87032f818bf5052ab742812c715eff896621385c43f8f97cdd37d15b5d394e95
MD5 465e709014aebd0cc86410d2c258b619
BLAKE2b-256 f21c9f564f73790db6b4f08d3444a2ee95d847676343baa602d0e05b664707af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 194065c9d445017b3c82fb85f89aa2055464a080bde604010dc8eb932a6b3c95
MD5 bbfe9d39ce69cbef38826752585a943f
BLAKE2b-256 2e2ee6cedb7ba04220102ee080a954af41ce6ea0510a1e6152a81e0184227512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f91073049c43d14e66696970dd708d319b86ee57ef9af359294eee072abaac79
MD5 34086a1e063220914e349b4609ed7431
BLAKE2b-256 a576f2bd589fedc713c59baa4834c819e6331fcd167ab9e0d99b6ba19d7ff438

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12c466e02133b7f8f4ff1045c6b5916215c5f7923bc83fd6e28e290cba18f9f6
MD5 4886e02d394ab53c2a8c17a9c69f0f53
BLAKE2b-256 5e49dc9cdf4752e861a7d9de9d6960f777f21b494b6a5b028d09ae7946afa463

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 484.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 87bb453ac3eb44db95cb6d5a616fbc906c1c00661eec7f55696253a6245beb8a
MD5 29169920c55128bf34713def9eedd25c
BLAKE2b-256 58e3f265a216ff412fde80a0b65c5ee94b27f94cf5f8ed92640cd02710f9bd04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02efd1bb3397e24ef2af45923888b41a378ce00cb3a4259c5f4fc3c70497a22f
MD5 ec0b0c922e18b959283a8deaa8486e69
BLAKE2b-256 1102f1385182b5f18c7adb906d02fed68587e7befb044743fa7c3c4cd96002f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e9d9d2c0aae73aa4369bd373ac2ac59f02c46d4e56c4b6d6e250cfe85f76802
MD5 63dd74fc36438c7f372a6791b46224e3
BLAKE2b-256 b19ad7cca333e6fcecd4300aa957a4d885424395590b7da5a81d638a92102416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37e9ea81fa59ee9274457ed7d59b6c27f6f2a5fe8e26f184ecf58ea52a019cb8
MD5 0d94f7a374119704be55be2d6f9c4035
BLAKE2b-256 9ed0745cf2781650dc4571b1faf3d07cf527fbfd23256353d79e2c27eba2ae63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6eab12c6385526d386543d6823b07187fefba028f0da216506e00f0e1855119
MD5 3783c079d65d0faabb023c156a68f104
BLAKE2b-256 751cd4c0cb399064167f4a93d042c3c444e6753ce4fba196bdfaea561cab9f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47a1a4832ef2f4346dcd1a10a36ade7367ad6905929ddb476459abb4fd1b98cb
MD5 3951fd43fe542ee09f68c485c651e457
BLAKE2b-256 6f882fb4e6161050f2799f909f53afab1c48755f463b829e3b338163e484e717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb6e00a79dff22c9a72212ad82021b54bdb3b85f38a85f4fc466bde581d7d17a
MD5 08878656356340b2757117c1b17ce4d2
BLAKE2b-256 e1838f390cc6df9147c4ab3cfe1dc5139b7d538f073ea9089456592ba3f04590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 730778b6f0964b164c187289f906bbc84cb0524df285b7a85aa355bbec43eb21
MD5 a357fa9884d9d4ae021309e30604bcc5
BLAKE2b-256 813f04e3c6c9e321d0523573d88b17806a45ce5b0a36cad959c7d0d56964317d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc5af24fcf5fc6f7f40d65446400d45dd12bea933d0299dc9e90c5b22197f1e9
MD5 1fbfc3bf5cf4ae504fdf406f46c8b102
BLAKE2b-256 b30dc5f8b320dde55a7f155e494113b5ad30b2a9d5ac5e5c7316e198c93cfdb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 484.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 12d1fef77d25640cb78893d07ff7d2fac4c4461d8eec45bd3b9ad491a1115d6e
MD5 62468783f86e0c2125cbe424b23c9a80
BLAKE2b-256 012660277db6bf6a6a20f7501d12f7e0a945a3cd4f2e4b44904f30580fbb9cc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c72d16fede22efe7cdd1f422e8da15760e9498024040429362886f946c10fe95
MD5 c8411e1b32be073e3a6a2a3b5ff6e0eb
BLAKE2b-256 fb9e4a06ea32aa9849e16285f9ef1462b8218cfe93f4ac9631c1facea3d31a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e37faf298a37ffb3e0809e77fbbb0a32b6a2d18a83c59cfc2a7b794ea1136b0
MD5 0aa338b0fea2905d0b40d8f239f02ccc
BLAKE2b-256 f668827ca038b0b05024d6d3cff918cc3975f7d0d6bea22cf67fe179031021e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35b3f0c7d49724859d4df5f0445818d525824a6cd55074c42573d9b50764df67
MD5 9c21cf2598bde29a08d1858c885fbcfc
BLAKE2b-256 b2355023667f27488b5a571d9168c2930da9da487697d630a197f9ecab6eb454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c44efab10d9a3db920530f7bcb26af8f408b7273d2f0214081d3891979726328
MD5 140da41b4efedd4d9766de94b8c1ab8c
BLAKE2b-256 004baae4c71688755acb71cbb514c6abeb8540258c7f6f10df54ab191ebaf571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a754e366c404d19ff3f077ddeed64be31e0bb515e04f502bf11987f1baa55a16
MD5 7cc144fd983ece06db5e3debf4235c4d
BLAKE2b-256 effcb908b0e5ac3f7437c7c10e838bcf552daf1ebfef3bb1274fa0230612ef21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1bcd58669e56c08f1e72c5758868b5df169fe267501c949ee83c418e9df9155
MD5 f523425bcc566588de7c39e27d80d0cb
BLAKE2b-256 62b4aefadbb6bbea165185cbe63a439df8e8edc6127d2c326b85baf7ef2bd0f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 827611beb6c483260d520cfa6a49662d980dfa5368a04296f65fa39e78fccea7
MD5 00b7bd5b19dbd2ecb9110096a7d9a94c
BLAKE2b-256 dfade8a36175c8e9ace6d5da5e3d3b56c7e65be3e6a1aeaaf15d0b29cdaa725d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 268d8578c0500012140c5460755ea405cbfe541ef47c81efa9d6744f0f99aeca
MD5 78453cab49f871b15a1e9f7529d77893
BLAKE2b-256 957fdbb2e5d94a54120d321ce5b6c0ea3f779d528fb821cca7504c7eab23f6cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 484.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e004527ea42a6b99a8b8d5b42b42762c3bdf80f88fbdb5c3a9d47f3808495b86
MD5 f9f43d41e7c79ddb5baadcb376b47d64
BLAKE2b-256 2e01e51207a92296bb6b7ffd751a8ed63bb651649c603423eda75fe58eebac7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cf28430ec1924af1bffed37b69a812339084697fd3f3e781074a0148e6475803
MD5 afc9331579cd83f44fd65afd6b6a68d6
BLAKE2b-256 0eb21f9f18906d9642a08d5b75afe4e10891f0d988be5a2f4e217d0b493f8baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf17ea9cea14d59b0527403dd7106362917ced7c4ec936c4ba22bd36c912c8e0
MD5 b5d5af52402e6fc2c9f45f1e9d3068f9
BLAKE2b-256 f13e107c90fc8bcffacdaf3af3d719cdeb9b9a4422fa707c34a716264257cd28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d833651f1ba938bb7501f13e326b96cfbb7d98867b2d545ca6d69c7664903e0
MD5 1a765d0cefa59043f71ccc693bae3fd7
BLAKE2b-256 07a0939c0bed5d5d3c319d487d055ed584adce7a98c596f6a95acdb4b13469f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9385654f01a90f73827af4db90c290a1519f7d9102ba43286e187b373e9a78e9
MD5 d3b4172f248466c77b112b994b07637c
BLAKE2b-256 4ff6d11d8306c45ec87b2f594e7cc395bce5bc0f7aaefc71ce7c84aa57f11679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 727ad07952c155cd20045f2ce91143c7dc4fb01a5b4e8012905a89a7da554b0c
MD5 abe4ba110f63c6534c01da4cc91adce9
BLAKE2b-256 7ec798ea2dbcf3691ece72bcb939a9969dc93094100c685584a506f5ecc68c0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9b6cbc037108ff1a0a867e7670d8513c37f9bcd9ee3d2464411bfabf70ca002
MD5 74ac2e126cbfe6eb1f5ded179fefcf2d
BLAKE2b-256 13d8d9ad3a925487f4323825cc10976a05ffa0d40fe5c1ac41e67a45bd0fd06c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65b4c00dedbd333698b83cd2095a639a6f0d7c4e2a617988f6c65fb46711f028
MD5 b1e4275a05a16e729e5bdc31adbb5f62
BLAKE2b-256 516ce289b585f1be429bdfd37a76f10555034945d81001fce7f88c04a0325663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cecd2df037249d1c74f0af86fb5b766104a5012becac6ff63d85d1de53ba8b98
MD5 9337d77187b6626b53a0c8163c7ab5dd
BLAKE2b-256 cf9cd7c68a4d8549d01422f940961936ef9519f49f903c47ff676e05d5052fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5239776633f7578b81207e5646245415a5a95f6ae5ef5dff8e7c2357e6264bfc
MD5 20525f2d9f2f5f5fea934b231b25deb1
BLAKE2b-256 0f45bc0d3d04587afd9d56173e8c59bf1f68705a4de358e57ba7e634cb523926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 743552033c63f0afdb56b9189ab04b5c1dbffd7310cf7156ab98eebcecf24621
MD5 0ff8150fbf1428c05e3a209102ce4578
BLAKE2b-256 495807d7db58ff473ac3f4218c57ba36bca9c2b1c30efab50d2494fff4862373

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 484.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4bdb5ffe1cd3728c9479671a067ef44dacafc3743741d4dc700c377c4231356f
MD5 716348ca434476390bc879914b153188
BLAKE2b-256 17685e28aa7ed0e9156d84fd11be69090000acfb78d4a7a24463f64a7ab8f558

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 479.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 eb0642e5f0dd7e86bb358749cc278e70b911e617f519989d346f742dc9520dfb
MD5 ce8fe7e3cffceeb6948a6ba61f3506e6
BLAKE2b-256 47334b1c5011ff17c107900455c42cb4a410d7b2bf805362d36ccd083ddd1450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c78f156edc59b905c80c9003e022e1a764c54fd40ac4fea05b0764f829790e2
MD5 5c46bb7fddcf30f3f57ce4334786d6d8
BLAKE2b-256 222b3855f33990dde36a186f03539b868da0350714c03146ce691645e5ea904a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a8bd37f5dabc86efceb8d8cbff5969256523d42d08088f098753dba15f3b37a
MD5 d491cc751ce6a759a6e4d9b243b44ef2
BLAKE2b-256 dfdb8c4d99151c9d3cde3e7f30bc1bdeb3e749e91ebf1a0a4dc810d74c853068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffd4d7cb2e6c6e100e2b39606d38a9ffc934e18593dc9bb326196afc7d93ce3d
MD5 fa3630350f1fb96477b9e53ade474fe4
BLAKE2b-256 2998809390f5b4e2e9cd628e282129ad280b9c0c34a5292caa73fe0c3b416098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9349f0bb17a31371d4cacb64b306e4ca90413a3ad1fffe73ac7cd495570d94b5
MD5 a6d29e4b101c11ae3894670e3fdbb361
BLAKE2b-256 7d52eb224677a95e0db6f70fbecdd98ab55d4e52f530c5e992342d9bb6385659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ce1a374ea0e49808e0380ffc64284c0ce0f12bd21042b4bef1af3eb7bdf49054
MD5 8e4e541762c9092c1334942860cd4581
BLAKE2b-256 40f9832913f50063749d0d01ba49cedf8df0ca9c88126e455008fcbe425dedc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 87832d6076c2c82f42870157414fd876facbb6554d2faf271ffe7f8f30ce7bed
MD5 ab086d1ac3dd0add4cf9c74009e41b19
BLAKE2b-256 a2585d565838fae5da87886fa9dc6f9071def4efe5e6f0d02404c0f73c76b5d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d892fb91e81cccb83f507cdb2ea0aa026ec3ced7f12a1d60f6a5bf0f20f9c1f
MD5 2c9d59c0a561ecda533c696bde09ca01
BLAKE2b-256 b823b61a56ef6c4dc3f60ac6dcd18ed619b8994ae12a7c036125db91448c84bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25eeb2c18ede63891cbd617943dd9e6b9cbccc54f276e0b2e693a0cc40f243c5
MD5 d5775fcf83e1382d2e6324872a171cd1
BLAKE2b-256 420f0579014173761bb8cbc75b8254a3befa2ad6af2e0974a790723dca82ed98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2dcf608d35644e8d276d61bf40a93339d8d66a0e5f3e3f75b2c155a421a1b71
MD5 2322874e284dc1cc75dc2596dd01db22
BLAKE2b-256 3b3d9f6de0d706e58a0514177f6365e38c92ba910b47761da8d98114952a1e2d

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.7.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 484.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5239ef7e749f1326ea7564428bf861d5250aa39d7f26d612741b1b1273227062
MD5 efb41daf4d3e8602532013c1ca6a38ee
BLAKE2b-256 e8028be7a547a800a4238ca860d235e9cc61af7af18c23ca567dc7c32174eb5a

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pymongo-4.7.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 479.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b48a5650ee5320d59f6d570bd99a8d5c58ac6f297a4e9090535f6561469ac32e
MD5 fb8237fddfc5fdf4e71d6f037d45d6c4
BLAKE2b-256 9942f832da5066de43d4974647bbee6a7d817bdbfc82197f7b2a11daac26f6e8

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4d59776f435564159196d971aa89422ead878174aff8fe18e06d9a0bc6d648c
MD5 17b0f49924ad41ec8bc716eb4df62366
BLAKE2b-256 9558cec9d00a20f7fb89cc2dd1b349b626081efda529f6514a65ca7b872ffc90

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ffd1519edbe311df73c74ec338de7d294af535b2748191c866ea3a7c484cd15
MD5 4e712e5d2f42c22a23b3dfa42f21c683
BLAKE2b-256 7686d9ffcd148b452d62fd07ae50b1ba38fdd8ca01ecc225f749ca4bfdb44daa

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcf337d1b252405779d9c79978d6ca15eab3cdaa2f44c100a79221bddad97c8a
MD5 4262b958f5f2223ec81ffb6ee884d225
BLAKE2b-256 0eebbe6783da2f7cde7d377269c548e45bc48be926fd78f62234944f5ac4b8ca

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56bf8b706946952acdea0fe478f8e44f1ed101c4b87f046859e6c3abe6c0a9f4
MD5 276e1893e4c3ed5faa730bc1d9d99c01
BLAKE2b-256 3d4db9a07f18a96386c324881dffe50b8df4c51a35db4ecdbe59ebe405851dd7

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fcaf8c911cb29316a02356f89dbc0e0dfcc6a712ace217b6b543805690d2aefd
MD5 92de2fd90a754bdc8b2f83f7e033e1f8
BLAKE2b-256 d2424eff235ccd59d834c04700812a7db7be9b524b811a0b002010de9a37b262

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84bc00200c3cbb6c98a2bb964c9e8284b641e4a33cf10c802390552575ee21de
MD5 943e03b56e03bcbe20084a237f8e6089
BLAKE2b-256 c60d2e4c7e80f14298ba798b36c497aef0c4f45ee5d3425d3d4fcd4b2b51214b

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 347c49cf7f0ba49ea87c1a5a1984187ecc5516b7c753f31938bf7b37462824fd
MD5 3bc418ba89b81f5630977c0b7f137e84
BLAKE2b-256 00d42a490cadc6aa42dce81865fe071fa9096c848b5ad4fb866afc69035de024

See more details on using hashes here.

File details

Details for the file pymongo-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cb77d09bd012cb4b30636e7e38d00b5f9be5eb521c364bde66490c45ee6c4b4
MD5 11abe4d81730a287354911978a94f7f0
BLAKE2b-256 e03512dca903fdb68b2c140d07c84c370895d740fcf0541f14ac598d4de89152

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