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

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

Uploaded Source

Built Distributions

pymongo-4.7.1-cp312-cp312-win_amd64.whl (485.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.7.1-cp312-cp312-win32.whl (480.5 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (695.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (688.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.7.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (486.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.7.1-cp312-cp312-macosx_10_9_x86_64.whl (486.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pymongo-4.7.1-cp311-cp311-win_amd64.whl (484.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.7.1-cp311-cp311-win32.whl (479.6 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (685.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (662.5 kB view details)

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

pymongo-4.7.1-cp311-cp311-macosx_11_0_arm64.whl (486.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.7.1-cp311-cp311-macosx_10_9_x86_64.whl (486.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.7.1-cp310-cp310-win_amd64.whl (484.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.7.1-cp310-cp310-win32.whl (479.6 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.7.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (676.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (683.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (660.5 kB view details)

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.7.1-cp310-cp310-macosx_10_9_x86_64.whl (486.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.7.1-cp39-cp39-win_amd64.whl (484.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.7.1-cp39-cp39-win32.whl (479.6 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.7.1-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.1-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.1-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.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (670.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (664.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (659.6 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.7.1-cp39-cp39-macosx_10_9_x86_64.whl (486.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-4.7.1-cp38-cp38-win_amd64.whl (484.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.7.1-cp38-cp38-win32.whl (479.7 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.7.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (686.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (687.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (679.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.7.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (486.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pymongo-4.7.1-cp38-cp38-macosx_10_9_x86_64.whl (486.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.7.1-cp37-cp37m-win_amd64.whl (484.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.7.1-cp37-cp37m-win32.whl (479.2 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.5 kB view details)

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

pymongo-4.7.1-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.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (665.9 kB view details)

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

pymongo-4.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (658.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.7.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl (485.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.7.1.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1.tar.gz
Algorithm Hash digest
SHA256 811c41c6227b7548afcb53e1b996c25262d837b5e5f519e2ddc2c7e59d8728a5
MD5 c500b43c1ff461f3bd9cd0fb79b9e7c6
BLAKE2b-256 6f59d3d75da83c40e7b0e3534656f949f5597a25729d452bc1bd7d680fe8d821

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 485.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 263c169302df636f9086b584994a51d0adfc8738fe27d7b8e2aacf46fd68b6cb
MD5 4c0c3da7201293e1b02b95a9790556ec
BLAKE2b-256 69ed1617e7c352aaa668dc342074103440e368c125d1125db609d8844b5a1e58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 480.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e175d74c52b6c8414a4b4504a2dd42b0202d101b2eb9508a34c137357683864e
MD5 3fa3763d402317667b4ca69965c50b1b
BLAKE2b-256 df25ae82764d06456ad38ab01f2e7efd5470dcd35c823b98341c8a1b6be7b981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a848249d5b4763497add62f7dd7bd0ce1538129bf42f4cb132a76d24c61bf98d
MD5 129e4f21cc1234b0bb77ca5ce81a92ef
BLAKE2b-256 eaab23ebc8c15017ec70d72c282b41fd6d274d12cec7a77703b6df032c073627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45ac46f0d6bdc2baac34ced60aae27b2083170d77397330eff0ac5689ea29d38
MD5 5717cd5cddd37d34ad6adc8a8fb83c34
BLAKE2b-256 55e6ce066b329b5eb2790254a02347e6483e35acc4fb30f2d94766eb5b01f67f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7247c1dc7d8eed4e24eb1dd92c4c58ebf1e5159500015652552acfdebdeed256
MD5 e28c4a84b623df3756b35b1acbdcbb90
BLAKE2b-256 faaca3c14ce512b32ed91a4bf471b799523b229367d67158af17364a0db6966e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ccc8dd4fe9aac18dde27c33a53271c6c90159b74c43fbdab1d33d5efc36c2f5
MD5 6970a52c0018e830ad4a29b46e06c3be
BLAKE2b-256 aabd3e90dba03699f76fcac5b7670f83718e33d2a753b29d6d2410206efb1d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ff6d56ca1f0cd3687a13ce90a32a8efb3cc3a53728e5ac160c4c30d10385a72
MD5 ea2d129b8efe5565597d7cdbe29b8184
BLAKE2b-256 3ee72239f504c510df39b8c99cad7ec7d6d8aa773387a9cab2c235c2ab55360f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb1a884b1c6aeac5ffeb8ccb696fbc242a7ae1bba36f2328c01f76fab7221b94
MD5 9c7a1e567193cf009975353b6a3ab4c1
BLAKE2b-256 bd24e632621fa8a2c1424672b55691fe0c427f42a384018ef4084fb6cfbdc3be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8b95e2163b73d03a913efa89b0f7c5012be82efd4e9dbce8aa62010a75a277c
MD5 32e28ee26fe12b2024a5807712cecc4b
BLAKE2b-256 15a14b1f9b8a7feaab9c2cded9ad45c5887a35422cd80210139d91b14c1dd23b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 484.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec94d29103317aa920dae59ed385de9604cb0ef840b5b7137b5eaa7a2042580a
MD5 8ce4faa5cb132ce86bb5d76d63e430ca
BLAKE2b-256 148e2f56a3be3d5764e21d6e546959a50a218702c2cc621af6fe7de2f7e43cc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 479.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11f74dafde63ad2dc30c01f40b4c69d9af157f8ba5224b0c9d4de7158537266f
MD5 5c9eb120ddc4a09702223166a6000845
BLAKE2b-256 9629791309b5bf7a6dee63e58922824388d1a757a4f5e61f1bc9e8be79a88cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad360630c221aee7c0841a51851496a3ca6fdea87007098a982c1aa26e34083a
MD5 70e64dda9cfb725bb454218f11cf5e61
BLAKE2b-256 32688be3c9fdc9fd823207675a3b6ca00dddde00ff397e48f2e7d94fa26349cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa354933a158e57494c98b592f46d5d24d1b109e6ba05a05179cde719d9f7fd3
MD5 1d3d8f21011b9e10af4d62a29d7d29b0
BLAKE2b-256 160151645b55f814d6bb00b7761d6aa8b7bc33067132a559753c905abf881387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 daf35ab13b86aba7cc8c4b019882f1fa8d287a26f586ef5eaf60a5233d3eaa52
MD5 e9962b441cad58cd3356ec3938165450
BLAKE2b-256 20f1078aeb15b00dc37c633f081aea4cccd7da29478971f48d1cc12d7726bb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d227555be35078b53f506f6b58bd0b0e8fd4513e89e6f29e83a97efab439250
MD5 fe91c38706f31808dbf3d9557025d16f
BLAKE2b-256 b7dbcb26f94caf541f37f2f4658be2da58009cd0d5a69b98aaa233141bf11011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5119c66af8c4197c8757b4b7d98c443e5b127c224ac92fb657dbe2b512ae2713
MD5 eb73f4323211f8b1a0b289842e515341
BLAKE2b-256 05035f7d41bb65781c54f71e0791e6adeeb49560e4a2ca70127014369052c609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 811a07bba9d35f1e34159ede632ac71dbc429b372a20004e32d6578af872db1a
MD5 893c0ad45f7f77288730e3aa73ff8eea
BLAKE2b-256 148a96b6a2c9a6ca2d28e3426d8298a914214f5368964c764d1e1095fcbf68e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4a63ba6813a2168ebd35ea5369f6c33f7787525986cd77668b7956acc3d2a38
MD5 495df42f4f68b662f7c1001e344e89d2
BLAKE2b-256 842a17a45be93d2aa870029583b3ac875dfe5b8767a1d3ad47af9a4a738a26ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 484.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5ae1aeeb405c29885266666dc7115792d647ed68cfdb6ed02e2e211d12f2e1c8
MD5 be132cf2a5d8bb129ef3e32acddfc84a
BLAKE2b-256 8c0cd351ba26ff67f359bdce6f95dc4a061eeb3bf739335a97001b019978a35e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 479.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bfd5c7e5bb87171a5296fa32205adb50b27704a612036ec4395c3cd316fc0e91
MD5 8c380623288dc8bc6dd3c00067c4b9ad
BLAKE2b-256 21b4de54a35429d32465601f18cb063270bbf130e28b9a304f9a40fd36eb4015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31ed8ba3da0366346264604b3a443f5a4232cab5ed45f520bead6184cf0851a1
MD5 98147a43b6a86cc09fc27b78a7869dec
BLAKE2b-256 c706159505cc5a08b79656b24283bb9d9de82d9c6a76531514972dab7634f807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cee62188127a126f59ea45d3981868a5e35343be4ef4ad8712eaf42be37a00b
MD5 f182cdf5a59782c6ce762be3ae272500
BLAKE2b-256 bc991829df0a7ec2372ea14bbd312c95520b6f5621d8cfa672182bb31fc088a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 253ed8fd6e7f4b2a1caa89e6b287b9e04f42613319ee1e1240c2db2afe1637e7
MD5 c083815082ce56d238618b01e05fe84d
BLAKE2b-256 cafa3beddb9097154fe9005b7d6fa262d3c5c180d08d14210675a8ebcb2251f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e99dac3c7c2cb498937cc1767361851099da38861e921113318c87d71e3d127
MD5 4c45b5106b5089622459868780ee875a
BLAKE2b-256 275c763df7cb14b62c51e9e0004471f39a7daf1e324eaad8ff40b40933dbf949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 887d043ecc0c7d5591925bbc7abb67caf21c94d6e6e5d442cb49eb5d9d8ee76b
MD5 cafdf909ab13c2747a70e831dc3f36ce
BLAKE2b-256 ddfb69a618ecdf5007f4e98179234ca6f22139db1e36456a5b1859ca37ef3e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57b5b485ef89270ed2e603814f43f0fdd9b8ba5d4039124d90878cdc2327000c
MD5 87ac4abfc0d4b305c954f67c06b0e0da
BLAKE2b-256 34c7ff7b32cb3705e4dfefe3ddaf37a4b305bfbeb248693a49ba92d08e2758d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8822614975038e0cece47d12e7634a79c2ee590a0ae78ae64c37b9c6610a14c
MD5 52dfc74bdb32de17d0917cf9c58d7660
BLAKE2b-256 0aaad91a9cd9b0dbeff6d5f3bdc01dad08b936a21896af2a8e62e312ccb21662

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 484.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1bd1eef70c1eda838b26397ef75c9580d7a97fd94b6324971d7f3d2ad3552e9a
MD5 26b3d5a6e3a0555adc2552683a6c7120
BLAKE2b-256 76d03615d5bbc2c44446e55ea9f40549a2cf365d89665ee76a7cc4c937824ac6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 479.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 67cbee427c263a4483e3249fef480788ccc16edb1a4fc330c4c6cb0cb9db94a8
MD5 2a4f6494eff22b7f60e1a1569968c5b6
BLAKE2b-256 e8319c36830a2874678c6ac7133e3f80e1620dbaf9f044b155f4a437814bf088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e935712b17e7a42831022353bac91a346a792658a54e12bec907ec11695cc899
MD5 144ee8d735ecba93656aa894808a8a39
BLAKE2b-256 b0368d2c6aef373d5495077e76168104ec6a26d7ae72076dfe4674af3c17e6a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 615c7573d7a9c4837332a673fdc5a5f214b474dd52d846bcf4cc3d011550bee1
MD5 de700d9d853b77100b7079503738b696
BLAKE2b-256 c847c45f7cda8a728ee8cec9781214d0df0e18e174c094bf0f9e587337706628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1829a7db720ff586aaf59c806e89e0a388548063aa844d21a570a231ad8ca87
MD5 d4d41f2f82f002acf3f0e43d2cae17a0
BLAKE2b-256 e77af32ff7670107c39f76d12ee3c999d128ac2cf1f3a337cdc5c77286538d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c808098f2cdb87d4035144e536ba5fa7709d0420c17b68e6ace5da18c38ded5f
MD5 63865c3cfb045661ad4b55670468f085
BLAKE2b-256 bbb29823a7eaed5b9d65036672b0c25d479f954b83449fb70f1ed52e5d1f96b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 65c45682d5ed8c6618bde22cd6716b47a197f4ef800a025213b28d13a59e5fca
MD5 04deb4c7aed3cb8cf997b78d02500c3b
BLAKE2b-256 9a099922c967f59bb3eff333bfa71356024ab356a4ca08d28e74963dee8396ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5bc87db2e9563295c4e45602ab978a2fcbaba3ab89e745503b24f895cddeb755
MD5 1c7565e300420eef5bac6859968b74ff
BLAKE2b-256 0edd8af49b8e9c8352fe02877a5f3122887b0270bfba7386cb0bfe1e64847055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbc32217c81d87750401fa1c2bc9450e854b23e6e30243c82d3514b8e58f39e3
MD5 18fb907f243a813b922e1eabbfb6c706
BLAKE2b-256 198596f4b01efcbfebace79a4342af9bfcd50b8ede489499d3b40ab0d093adab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2a720e787c9b9b912db5bb4c3e7123ccff1352d6c3ac0cb2c7ee392cdc95c00
MD5 9734634f3c08fb60414e6f1e51e5cd59
BLAKE2b-256 e679856538a40b8dee0a85da93822adbac7d4e8589acc21e9b2859f02a49f9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d50969de00d3522b2c394f7e59b843871e2be4b525af92066da7f3bd02799fdc
MD5 a512c6efcc127b24da22ae205a089a45
BLAKE2b-256 df79102278b83cd7b69bf24c8467d8501863d7793cfb49868c806cd5b805b71b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 484.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d63f38454a2e23c117d3ceab3b661568f2418536825787256ad24e5baaedfd27
MD5 b05a3e35bec2c6a37ce6b64f84afc6f7
BLAKE2b-256 b92478f4ed89c861e32c9d67292feb5516e2ac52a6dbb8e865df5905b552bbc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 58989bcb94233233a71645236b972835d4f87a6bb1b7e818d38a7e6e6d4630de
MD5 a4b3679064eba20a434cd92040339500
BLAKE2b-256 f33d4d78bc70cce96896d2e2d1b9b37e3db03347858249094181b0139f2df9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dd998e9f0f7694032c1648c7f57fccaa78903df6329b8f8ae20cfa7c4ceca34
MD5 2684effb8876f17d0802d4f3244ba777
BLAKE2b-256 f1fc705bf2c4b3b9926e4990c889a6404b63f46ae2c5872e549949295da7e568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13fc201e073644acd77860d9e91ccfc27addf510563e07381cadc9a55ac3a894
MD5 61ddb33e49c520fdfa9ef326f6551585
BLAKE2b-256 0f312c2059e28f45ee2158b8fe92ee9cf0139d724ed1f79c23f7fa25bf093af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e0a30a022ac8a9164ee5a4b761e13dbb3d10a21845f7258011e3415151fb645
MD5 7097c443dba7b3c2af611843ee44f4dd
BLAKE2b-256 bcf102a312db0369912fb017d5c1f405c74239c71534ac7214585b6b827cdaf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c7e05454cdc5aa4702e03cad0df4205daccd6fd631bbbf0a85bbe598129a6cc
MD5 016615b99778403fc1a86155018333b7
BLAKE2b-256 6a0081c48ca5866c2aa673820efe3e9a1605a915c3421f7f8ac481c859cd0b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a46c08ef0b273c415b1e8933f6739596be264ae700a4927f84e0b84e70fdf0eb
MD5 35e192410e851a7c4128a85e0f933976
BLAKE2b-256 85b92e287127993f8e88327b1022f314dbb6f857f25e0a4da4ab21e43aa39640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d804eaf19a65211cc2c8c5db75be685c3f31c64cdab639794f66f13f8e258ba6
MD5 317b1a87831d8270a8e397f08bf2a48c
BLAKE2b-256 29b1f293fedf2878fa0ca8fef40591ba49845eaeba987471f0f073227148bb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 455f9d603ed0990a787773d5718e871300bddf585ce543baf129c9f5ca3adb02
MD5 8489b20bd7aaab37f4ecc21f770972f9
BLAKE2b-256 46f71ab6d6f51236ef22f2dbd5b8b682694bee56eae3d713328fbaeef513253c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64b69b9cd8a6d23881a80490d575e92918f9afca43096a7d6c1013d6b3e5c75c
MD5 4e1e694fdef8688a341ac8d825145ee7
BLAKE2b-256 f2798844f6b4093fee342cee33054d3337f7a54ceaf81616119b5c839a4563dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b10603ba64af08f5af7eb9a69d6b24e3c69d91fdd48c54b95e284686c1c582d
MD5 c1fad3487f3cc95cbc3afb421b6ecf9f
BLAKE2b-256 776a346993f5562095d2d375f22768cd4b01bfa4e4187a9f9cfeceff248f1ff2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 484.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 297cdc87c4b4168782b571c8643540e9b0ad1d09266b43d2f5954f8632280835
MD5 b58ad9600dd2608c9049c982a2cc82c4
BLAKE2b-256 778b4e2bc6a77533699c81469531cfffadec0ce32919c1a3bf2fe972df6ba208

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 479.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 85b8dd3756b73993b1e3ab6b1cba826b9e4987a094a5d5b6d37313776458cd94
MD5 71b96a7bc2baac35b41418e13aeb5c1d
BLAKE2b-256 854cc7a75f4c3999d4b9043a2a4964c4e6c5fc50659993c7fc5174cd3d5c00b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24c8f1dd545360ec1b79007a3ba6573af565df6fde49f6dfc53813f3f475a751
MD5 cf80f3c6b6cb2a2d4885e7075427124e
BLAKE2b-256 1f1cd6bc2147e9691766a41852b7465cb23628d85ff15b447f2d91e02e3d6134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ef32a7cfe748c0c72fdad9e51459de5e0c6b16c5288b39f863abfff23503847
MD5 8cdaf1b30aeca72c0a4e7097e7c1e2e1
BLAKE2b-256 67c9709fb0019df1a3fcdb06b77a56cf76eb394cbe76dfac017a6e8f57e46b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73bf96ece4999b0bbab7169cb2b9c60918b434487009e48be4bd47eeb2aa7b14
MD5 d21994c7c5c8feafb4a036c2004e5bc4
BLAKE2b-256 d9cdcc4a227a6deadca20d0cbb403b4557dde3c097794b6e6898bb24fae3db37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30a9d891631d7e847b24f551b1d89ff2033539e7cd8e9af29714b4d0db7abb06
MD5 d931f0a69bd13be94b073e74fd6a403f
BLAKE2b-256 2a6872fef89149ebfd91a7a55369c730a345dcddccd9fd82328a272dea3066e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ed6b3a0740efe98bb03ccf054578e9788ebcd06d021d548b8217ab2c82e45975
MD5 27c9e79d6abff56d24f7e267b9b8e790
BLAKE2b-256 75c923893caffa1091acf388d576d57dd399e64a42fa3b097a41406dfee713ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a58b6cd7c423ba49db10d8445756062c931ad2246ba0da1e705bf22962fd9e9
MD5 e77b410a8ca850fc2ff157222c4a0aa2
BLAKE2b-256 6c5c334a2162b2ad0468c36ff3e0e08f8280b17eaa0968703ae749a4b6b44b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b897b60b2d55c26f3efea0effc11b655db68125c3731274bc3953375e9ccab73
MD5 abb17d031df834711e5ae518e611ecce
BLAKE2b-256 deeb9908a2fea568ab508981ed20ec3f283a8d912cb5d085fd34c13acc5ecd37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 337d99f88d32a5f8056d6d2bc365ccf09d09583f3942882c50cf11b459e8fbc0
MD5 f76ad58ce6e671e19544256eef6fe429
BLAKE2b-256 f3a059a315cbab977b1cbaf4b91c0a09b150764aa291b105dea652e3acfbab73

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