Skip to main content

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

Project description

Info:

See the mongo site for more information. See GitHub for the latest source.

Documentation:

Available at pymongo.readthedocs.io

Author:

The MongoDB Python Team

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, and 5.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 the MongoDB Community Forums.

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:

$ python setup.py install

Do not install the “bson” package from pypi. PyMongo comes with its own bson package; doing “easy_install bson” installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 3.6+ and PyPy3.6+.

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]

Support for mongodb+srv:// URIs requires dnspython:

$ python -m pip install pymongo[srv]

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:

$ 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,srv,tls,zstd,encryption]

Additional dependencies are:

  • (to generate documentation) sphinx

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.

To build the documentation, you will need to install sphinx. Documentation can be generated by running python setup.py doc. Generated documentation can be found in the doc/build/html/ directory.

Testing

The easiest way to run the tests is to run python setup.py test in the root of the distribution.

To verify that PyMongo works with Gevent’s monkey-patching:

$ python green_framework_test.py gevent

Or with Eventlet’s:

$ python green_framework_test.py eventlet

Project details


Release history Release notifications | RSS feed

This version

4.0.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.0.2.tar.gz (749.4 kB view details)

Uploaded Source

Built Distributions

pymongo-4.0.2-cp310-cp310-win_amd64.whl (350.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.0.2-cp310-cp310-win32.whl (347.9 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (462.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (452.8 kB view details)

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

pymongo-4.0.2-cp310-cp310-manylinux2014_x86_64.whl (476.7 kB view details)

Uploaded CPython 3.10

pymongo-4.0.2-cp310-cp310-manylinux2014_s390x.whl (478.4 kB view details)

Uploaded CPython 3.10

pymongo-4.0.2-cp310-cp310-manylinux2014_ppc64le.whl (483.1 kB view details)

Uploaded CPython 3.10

pymongo-4.0.2-cp310-cp310-manylinux2014_i686.whl (471.4 kB view details)

Uploaded CPython 3.10

pymongo-4.0.2-cp310-cp310-manylinux2014_aarch64.whl (477.0 kB view details)

Uploaded CPython 3.10

pymongo-4.0.2-cp310-cp310-manylinux1_i686.whl (471.4 kB view details)

Uploaded CPython 3.10

pymongo-4.0.2-cp310-cp310-macosx_10_9_universal2.whl (350.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

pymongo-4.0.2-cp39-cp39-win_amd64.whl (350.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.0.2-cp39-cp39-win32.whl (347.9 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (462.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.0.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (450.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (452.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (452.2 kB view details)

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

pymongo-4.0.2-cp39-cp39-manylinux2014_x86_64.whl (476.0 kB view details)

Uploaded CPython 3.9

pymongo-4.0.2-cp39-cp39-manylinux2014_s390x.whl (477.9 kB view details)

Uploaded CPython 3.9

pymongo-4.0.2-cp39-cp39-manylinux2014_ppc64le.whl (482.5 kB view details)

Uploaded CPython 3.9

pymongo-4.0.2-cp39-cp39-manylinux2014_i686.whl (470.6 kB view details)

Uploaded CPython 3.9

pymongo-4.0.2-cp39-cp39-manylinux2014_aarch64.whl (476.3 kB view details)

Uploaded CPython 3.9

pymongo-4.0.2-cp39-cp39-manylinux1_x86_64.whl (449.5 kB view details)

Uploaded CPython 3.9

pymongo-4.0.2-cp39-cp39-manylinux1_i686.whl (470.6 kB view details)

Uploaded CPython 3.9

pymongo-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl (350.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-4.0.2-cp38-cp38-win_amd64.whl (350.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.0.2-cp38-cp38-win32.whl (347.7 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (471.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (476.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (469.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.0.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (467.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (459.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (460.2 kB view details)

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

pymongo-4.0.2-cp38-cp38-manylinux2014_x86_64.whl (485.9 kB view details)

Uploaded CPython 3.8

pymongo-4.0.2-cp38-cp38-manylinux2014_s390x.whl (488.0 kB view details)

Uploaded CPython 3.8

pymongo-4.0.2-cp38-cp38-manylinux2014_ppc64le.whl (492.4 kB view details)

Uploaded CPython 3.8

pymongo-4.0.2-cp38-cp38-manylinux2014_i686.whl (477.9 kB view details)

Uploaded CPython 3.8

pymongo-4.0.2-cp38-cp38-manylinux2014_aarch64.whl (486.3 kB view details)

Uploaded CPython 3.8

pymongo-4.0.2-cp38-cp38-manylinux1_x86_64.whl (467.5 kB view details)

Uploaded CPython 3.8

pymongo-4.0.2-cp38-cp38-manylinux1_i686.whl (477.9 kB view details)

Uploaded CPython 3.8

pymongo-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl (350.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.0.2-cp37-cp37m-win_amd64.whl (350.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.0.2-cp37-cp37m-win32.whl (347.3 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.6 kB view details)

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

pymongo-4.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (459.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.0.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (453.2 kB view details)

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

pymongo-4.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (445.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (444.9 kB view details)

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

pymongo-4.0.2-cp37-cp37m-manylinux2014_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.2-cp37-cp37m-manylinux2014_s390x.whl (470.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.2-cp37-cp37m-manylinux2014_ppc64le.whl (476.1 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.2-cp37-cp37m-manylinux2014_i686.whl (461.9 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.2-cp37-cp37m-manylinux2014_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.2-cp37-cp37m-manylinux1_x86_64.whl (453.1 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.2-cp37-cp37m-manylinux1_i686.whl (461.9 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.2-cp37-cp37m-macosx_10_6_intel.whl (380.3 kB view details)

Uploaded CPython 3.7m macOS 10.6+ Intel (x86-64, i386)

pymongo-4.0.2-cp36-cp36m-win_amd64.whl (353.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-4.0.2-cp36-cp36m-win32.whl (348.6 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-4.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.7 kB view details)

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

pymongo-4.0.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

pymongo-4.0.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (458.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

pymongo-4.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pymongo-4.0.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (452.3 kB view details)

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

pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (444.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (443.9 kB view details)

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

pymongo-4.0.2-cp36-cp36m-manylinux2014_x86_64.whl (467.1 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.2-cp36-cp36m-manylinux2014_s390x.whl (468.9 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.2-cp36-cp36m-manylinux2014_ppc64le.whl (474.8 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.2-cp36-cp36m-manylinux2014_i686.whl (460.4 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.2-cp36-cp36m-manylinux2014_aarch64.whl (466.9 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.2-cp36-cp36m-manylinux1_x86_64.whl (451.8 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.2-cp36-cp36m-manylinux1_i686.whl (460.4 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.2-cp36-cp36m-macosx_10_6_intel.whl (377.9 kB view details)

Uploaded CPython 3.6m macOS 10.6+ Intel (x86-64, i386)

File details

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

File metadata

  • Download URL: pymongo-4.0.2.tar.gz
  • Upload date:
  • Size: 749.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2.tar.gz
Algorithm Hash digest
SHA256 3364b5c153b0de15c39cd13c5ee73a473f7337eb2d9610711f50f14a3a611413
MD5 50fc0f99da11086b5cc57ee0ef4557c9
BLAKE2b-256 1690dfac3185ed5cc1890a09980ed64578c84b74c3017a9a141d698c81914fc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 350.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 11b806e07cb9fb3d69d5330145c9903c606c5d81951a8e2aa121886f1aebee22
MD5 e0dab70aa9e8a7aefc9bfaac5f22a966
BLAKE2b-256 0d3caaa6875b61ce5859a46f1211819a2fea7e6e7a59da641554e5464108c427

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 347.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a893849c595512bd61a1f393cd5fbb063e511798f57face7553291370a0b34d8
MD5 322bde221e6bd6e1ac4f388e1fdf4acb
BLAKE2b-256 6cb42a98b892548151fbe64d05007e2f448ace462ce56eda9377d02fc327ab4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 459.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72ff636cd1040d49af11c516f00a50181723d0d39cd0ab416adfb95058b6fcf8
MD5 e3e7a133c5424f4543ccfbc8614b5a36
BLAKE2b-256 fbbabdae7f41a8d1e49cc532a7a1c0b26e6ecf76c54758baabb2ddb1b40d83ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 462.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc64abc5f89007c1c5277153fb44c6da43397ede3d0466d3639d228d2e3fdc44
MD5 aae22c22c69dd78e0ea4ed1f9d148b1a
BLAKE2b-256 afe2eba58e7d2843e45040e96f254d2fcd428731394b7463c20351e9f5b54c40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 466.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0e25a8ce9932e660391b98c66b75e9b1fa3949aa937824e7ed4ff6ad582d0c9
MD5 b5f98425ad39f5c8fd1003c036a3413b
BLAKE2b-256 f2e25661a10ca6d2e06f0ad2471443fb6d91fbdcbd67fed762c894eaee111b7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 460.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9bb9425d4005d77404539e2b0e2c45caf2e4a6f70c888f21d3a4ced23482ff9
MD5 992da85f9e619f0b57b58846d7def480
BLAKE2b-256 5c0fd2e233a597868a3c9a71fa8bb7da16d9833d62b3c58c434e9154181575fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15129240f0fffc133f70d334308d5829fb6a77172e09236b4b24c2e759278634
MD5 d048ebe130216b1e4077f792213e1184
BLAKE2b-256 a64c131932fad522733ce5e6a0e0f23f6bba6cd8a1ba8e81e4b1c7a1b98dafef

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 476.7 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efff1fc7beb16f43a332806538f4049fd3e25384a845347996d91ee6310a4fe1
MD5 95193b5684cd4a62721442cf48cda3fa
BLAKE2b-256 442f106e52a983da519a2a45cf1f32d1b0d6ce4ff6a66cec611a81da86f21a08

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp310-cp310-manylinux2014_s390x.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux2014_s390x.whl
  • Upload date:
  • Size: 478.4 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ac7f4029acafdb72133c8e46155cf82be1735d290250a12204c0cb8b94ee87b
MD5 f0f342a601d092b544909ca48397767c
BLAKE2b-256 a3dbb8aa37155badef7bd9763c59e86683afc00a94f7e9f4bd18717db5ffc81a

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp310-cp310-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 483.1 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 942b7f7ffe1ceb77319f7051bcbd139d2232ab40b9bec81579623df48b4619df
MD5 6ee70eefbef6d72d6bc83ed0cb079537
BLAKE2b-256 a65342b1c782a83bab285844862b1a9b5830a470b026097aa5a22da96d7af0aa

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp310-cp310-manylinux2014_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux2014_i686.whl
  • Upload date:
  • Size: 471.4 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea98c6d44d6dc5a78058bf9cc67b1bc01e86d0b7f8ed6eb6391b11592b33d2c7
MD5 42df5b653c16b12b7d1101ba8724d9f6
BLAKE2b-256 22aa3a47f6dc948bfc34b5687c53416239bb0547a47c509fccc177f42fc5c45c

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 477.0 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f609cba97330c83f5e50aed1d653c326c4cdc90976746593ee6b1c9d606f8d69
MD5 bfce3f25be13ff0467f242a47184fa24
BLAKE2b-256 157b5f27060638c901ec6dcc354212436cce10ce1837fae245d914b2eddd8263

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp310-cp310-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-manylinux1_i686.whl
  • Upload date:
  • Size: 471.4 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e15a0bfbdad62983209fc23925f56c19ac372a06c18f26be8f55aff114126c4
MD5 b84efa37047635f24d4dc1febea5fe15
BLAKE2b-256 a24456ef5c2a4c3dbda1e83b30901594820cc9601092f81ae62a6f1d72e0199a

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 350.4 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fea60a7b8455bb35548285b8bbcba955cc48d62589c8f4a6a333b2c8656818a5
MD5 3622bffb747b8dd6cd7ea2ff3de78b4c
BLAKE2b-256 b320bd6a3b5afb0c49b12f27a19ca8e1343ca1878f5be8a6a29966a867027e0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 350.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ee9b73d774f4f2850bbd7c8f97c7cf5d3a12c559610074e218bc116ae4899102
MD5 afe02ee19efbd9c82748f16c14a209c9
BLAKE2b-256 3dbf677a23e8385541ed48c02d015629c26683b088f43f2e45e3357481e9a620

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 347.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ed20c6869843ef9c07619f5fbd06a5dc49a3e47dfeca02c4eab719dba9cdfa7
MD5 b7da05a3ebca383defae715a639612eb
BLAKE2b-256 5c3930bac9b1eecd04668afd9d2c97390590191a68ca4969018ffee51abc9cbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 459.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ede2c98d81dcf839c073dd4c69ebfbd732905c6f6dc4b875830ff404ec3ab628
MD5 b99666913025f2c13de0021d8908024a
BLAKE2b-256 0725d38d74c11c97dd7dec1ee45ae636818806f50485968d1a3bd510cbb4fc58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 462.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b944ba110300a30b0e0bfea0018ed272da06591ea985af4a70b09226e3f928f
MD5 e20e2c1fa6949fcda2b8f2506e9d1e68
BLAKE2b-256 98b739fd83c5495d7881d58cf1446442485ade2e144c8c30a82eb792676ca6ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 466.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea00375486b02c592a068a55e3237807939b10833d23fb15fb60cd14b504a89d
MD5 d0aaf90781bf88b11d120cdbca65c827
BLAKE2b-256 cb9e43791b582563768205af4d1a53d31ac81d274c5f851ca040de391cffc81f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 460.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98c63f3bf91ff39d22c5330fb57f29e1045925df7e9dcaaedb978e1d94cdf9e8
MD5 52af811974f51f899af5dd8b0ab6684b
BLAKE2b-256 a9cf19f7ba8c49ba2df1aeecfa80649cdb065735118d7a7fd00bbdf43ac7f812

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 450.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af196696e866b80efedf19b860e82e7579e3a0c292a4660d8b3341b3068a35a9
MD5 7e1d7b6d9dd41bae43590759756c31b9
BLAKE2b-256 34e3a55309a63214eba23b8c162c4e13d6adfb89613ea02b2ba107256c7c6865

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 452.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8f78b53d242fd7ce94f6f4044d71f0355c7ae97ba943d044b097257fc48aa5e
MD5 424abd29b7089974123bf1fc2c37e320
BLAKE2b-256 e647503031956751769d287e95607906226ff57c24a524a8daffac436a117c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bdcb32c22946966b0fe7bbcbf91a9c8392a7659ab5ac54355e650aee4c615c04
MD5 40662bf555e57194342bb8aa844b7830
BLAKE2b-256 490474854c6b82215a699e343ad53da34da74b7cc2d7fb19fec353f84afe2117

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 476.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbd0c29baadb3c59f35952c526a015ff47965f1187a0c04eb54f9ea1686ad1ab
MD5 8e4a6943c795577e20150d5cef9f1b45
BLAKE2b-256 d0f703e2e06a85dc481f9c3e133bfce494b4dcf89816e3fb18d70d95b33f0624

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 477.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5bf753e02b25cae2be13de834b9fbaef29921784867c58ec5568a8b123ca85e
MD5 217002b940a9ca949c247ba18929c5df
BLAKE2b-256 c8801ce4c213b096ade64fc3aee95ea688d770403eadfc077cbdf529fa663b40

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 482.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b64ee18b67e38458e8acc4d52ee413095f98a4bdaf4a5eed2ddd1726ce314bc
MD5 731ac6f5ecd2285a9fdc067d79cdbc64
BLAKE2b-256 11a4b0e8e2762417787c23d6bf6f153150310afedcf6a465852f4de751d9f33b

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 470.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef00b8592e66b6df3114c7379ec1e7e189e2018ad47eac3f427233a9838514f8
MD5 5ee25551a93a64439889885644ccd640
BLAKE2b-256 ee00c8beb251b234fe4faf06e4e1d470eccbad8f0a46b323e52b4cc6df5b77fc

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 476.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 019a386dfa4eaddb067274a32a0a7aa1bcad4d0fff15e92cb46ffe58321bc9ae
MD5 2a50c4945ef8a83e1a31db8e79421be4
BLAKE2b-256 dd08a0373443357a5c42e01f2644292c0de8f6cd5226d8d90feee4c93199beba

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 449.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d2d5d2f587f2a5125d9172222e3037e327d79bcb6e4958989680c1941d28f586
MD5 3689c13732e5620a8f65c9cf22bfec5e
BLAKE2b-256 928863ae51a9a218b01a91ceab0f98d1bbf963f8b374136842a73e97ec368457

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 470.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b14f78563aae3474b826329dcd2b5f5643e6ff0c391a51572d89994cc126a23
MD5 2b5c8b9e1c8e9ad5b4e3433258b9ce81
BLAKE2b-256 e952d145ced8751cb9d1426970372e1054399fd7e6ccbd91fedebe12d93534e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 350.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a14e4e417d6498b983e4fe8b06dd7ded53872bbf87961e2f1f649ae7135e7af
MD5 c703962faacdee7159030ee19eb791a5
BLAKE2b-256 668d471bd1535fa4835f76657ff38f243cf8897a3422fee9371c316f7b7e9051

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 350.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0ac5c7dfb02a2c82f21806266036aa8c3a63d9c16ac00102d3f5780a8a62b002
MD5 b1e862055f98330f8f6cd1c1086d3ee4
BLAKE2b-256 511aa328785f289c5e48fbb9554501e6ca4edf82a9e13c135a5d3ca1ac86fe90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 347.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ce99d3048658734fc5e80c51b1cfc27d3f301f525b94dbc38838a87ad61e12bb
MD5 30ab8bc706eb611c148f01d6b20ed9a9
BLAKE2b-256 a0db481e3cd8851782ff50e3664277d6b732ce9ace7fa696e5d234f5ada6aa21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 468.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 574a533c17b090ecc7b865d9ae4a6f111fb50711ad14bbc1d5eb2871c40d2eb7
MD5 63c2258b4c549ffb87c5e3400a5220ec
BLAKE2b-256 b54f8f4bf464f84bafcd4fdc1138a5d0d1de8feba670335d467abb315da96195

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 471.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c893f88fec9231fcaa41d53306dffebb162c9b38867780305edaa830522749e
MD5 675c00e502477ff5cf6e6149e1eb9a10
BLAKE2b-256 44b6bcf4511f189a27c54e91134fc12c7c24ddc873a703f105805e5413bde399

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 476.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce5fdebc875892bb6aafe2053ef0f8d7f99281b74e1224cd6ac9036dee625cc5
MD5 616a7e33c90dd7852b559a117e856055
BLAKE2b-256 d2e261576a7e24e22ba3e0f8cb0e28fac8567c41b2773598692f171eaa7c410c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 469.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9a66d2eb1541771f5587da969490bf7b71085f3444bc0854c4e4ac8f74aabc4
MD5 a7cfb561d6d47e402dbf0588b4b735a8
BLAKE2b-256 bd4daeee0f8ce9222ae7f11eaa0eccb87f628747fea8d39046810217f40264f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 467.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d08c182933e3654ae5265e3e76af3f5fcfa2bfac5eb40bc222bf8661b7e4c552
MD5 f121267bf7a1cb1314bd2cba0262e991
BLAKE2b-256 02ad19e0993ec13ce349d2afe6ee56d228765c73d843567df4e2b6a5d11f770f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 459.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f22f10e657a6d823bc10891fa4902c59a2a4768d8134ef7a85fe4aa7511e214
MD5 d4346db7dd35bcb462b09ce9491c6607
BLAKE2b-256 508e0d04272a327978d0ff989a8653aa13a6c793d176c96a426fe68d2a137e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5068ebb8dd51f902b25c5f3c7b53d19c58399435a7b2d71a5fc700546a457d3
MD5 e70631a1ee65257e430ffc81b90f274f
BLAKE2b-256 f4394f5dade844c96808839d4982032387f1f4ce32f64d79cd652339717e7e82

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 485.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c93edd3fdc45ff1ee1eff6900e3499caf832ec16b452560ba93f358a94329669
MD5 2b6de57e8700759f8ce498dad41115ff
BLAKE2b-256 6e89f4922f0ffca90fe030dbf65e0977ccc289eb2995e6e0ec417925b35a4bdf

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 488.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f81f1fcb71cfd8120bd04b26dccfe4da2bdb25e2cdf38383603a8a265a97498
MD5 dc05b87aa0a402c665d8e954c1fe263f
BLAKE2b-256 60d6f34211d6f964cbcfa60c733e1ad842eacff1e5d5b08799d779d83a236141

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 492.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93341b00440298026acb8db612b0fb98d6d348ee894471c644b223cf8a747984
MD5 6287bc3e431eb1337132c48cb0808040
BLAKE2b-256 f911f7b927c3d8bdebaea47cf61ba66ee23272502d1b67ed3aea4db0320986c5

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 477.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19ca416608b744272ba64993d7439bf52cda23f96f99b7b81fddaccd06ba29c7
MD5 6e44b41566b064ea30cd91427b6c8d31
BLAKE2b-256 f3b66a1f29fc3a86db6e15e7f584653be0225a0d35b1b071d973afa02cc8a374

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 486.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26a4c1711a8e6e7d57d6bc6bfff6dae39fadb790a28cb120d853ed3e1e49a4da
MD5 d058985644fa17c13563346aa6bc84ee
BLAKE2b-256 fea06b20720b93b10ca452b9a23862e63bd4d31704c3ae8e7ea388abea469bff

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 467.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 076e96bbedc34df1e55b0682a13510d2ef1317ea4758ebe9c0388b39c5f60f17
MD5 8170fe9201619d1419a84ce82d9aed98
BLAKE2b-256 19533f55e60697164a232c794d80c63241da90f3927d378438fcaa728402ee92

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 477.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 40ee6449bd2f946e9cd83d97752fb25fb72100bec586cece259fc4a23aa60fcc
MD5 c93e47c0d92a9ba6defd03985dd51780
BLAKE2b-256 99cf6d1344d5b7dc8ab2831ddb31941054e12c66cf45f2a6edca4ae26824417c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 350.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 547472d7838359b166d19f635cde0eeb2dc0f18cceb5bf3cb8639c506014e2a1
MD5 9ea88feefb74c4e190bd748ac47a2a99
BLAKE2b-256 563a9aa9f6298b05a71bde820286494beb376b9ee96cf20b37576f44b360e6d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 350.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3bfb604a565a594ca1b2a6b20050072d9af9830e7748c2c3243ba5e170710a4b
MD5 ed27abfdc93dcd98836947dd2916063a
BLAKE2b-256 b63184a86fef09ab5e55c72e386d8648a100fd198a35dd48d8b60779bae3fa8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 347.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2e553dae2885a2d1d4ef5521f37ce626ffaa971073ae987d49f60a11f4ae79c4
MD5 2cd75b2f28500fbc5b4b3bdcb7e3cdcf
BLAKE2b-256 8de37eb2e496b5e816ea654984229c9e2f4f03af01602388ccf1600ee0283b0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 451.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ea53cbf22ebdbeb53e81622c688987041ea08d01cf6e501ecf810bbaf2fb8d5
MD5 d40f19b366542c0cca4e2c4f9c3f86c5
BLAKE2b-256 2bc072a85173f8381cde2eac9eee8477874cf2324ea3c31e6fc4860ab56de26f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 454.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed42dcc47910f2d30597baff98c6517e7dd1e2e50c607ea7024992714a348517
MD5 7b3ef6a756a8e2f611d59c9d1e84323f
BLAKE2b-256 7db7d3a1d8ea71bec59064c08163afc2c6b2b2ad3dfc1adec68586b0424ed2b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 459.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ea229163b589cee8560afd1b9eeab83afa363488f0ac83594937253046e5273
MD5 092fe34a1d3aa9f5776e14dfb84c2cbf
BLAKE2b-256 1216c3670ef48ffa23066618293703674c8d0ffdf23baa84744ec28dedb5101f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 451.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf9448811d649361e7d2b873d05b24075d77a038b9336761129b04d7147068a7
MD5 f8ee0b2bab3b0bda6b3118e2f86ab2ea
BLAKE2b-256 2634e8c333dee61c082fec4c779ee60f978dabc40c54ee684aad1a5e2b28cab2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 453.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 60b8b9903332048f8b479d26f01961bcba222d0e58bd9a0906d52cd9c9bb34b7
MD5 d027741bf375b4f4abb926d3950d1311
BLAKE2b-256 899f819c01cdf7a2038c04d5aeba4f17973a9013cd6b6e018a2295b889a39397

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 445.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5311a8339560a7749e0d6c51c5e84f2dca981a2d07117721a2de39302976f0b
MD5 b5e8bc6965d8b852aaae56f5d4786cfd
BLAKE2b-256 b57e91572e5d687d3be7a2c641757d4bbad01a873622f21b9c0279349e85f614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1dbcc6867f50a4e725e51447cf0bc7d45b3943d73e58daf9fb537c5f970cdae
MD5 db02c75a57f2f2ca05c074054621c303
BLAKE2b-256 fd4124b3d68ba15249c783268d9f593eecd5574964ccf2418de086c7e829d629

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 468.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b20defb90899b630555ca827033a0e4ddd3b19d609fc3937f7582dadb700c9b
MD5 81dd1f945360a4c74a938f1d98616053
BLAKE2b-256 3cc7a40ee725e0e8b1e4b25b015b48dc80a345ddb9cadec9abb2959b1dc84b6b

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 470.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1d1912dbcca4d37a60429f07b120034136e3881614f81375ae21330ef9b6ad0
MD5 ecf96415c830098de113f4d29090dada
BLAKE2b-256 530c6e36dc43e6021b392c4d91beb80e70a5a81e47627ca0998d56763fb8fd1c

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 476.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc1e1c0661605395e2314e9c41b0146723478e64fdcecfa7da7d24afe4a7d2cf
MD5 0f4868a325fc691a13103fc0d4a9953c
BLAKE2b-256 0c47002c271d63fbf5e22139ece4ad4dba0ecfae96c10dde2ee01129eb626b7e

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 461.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fac638874a6ae5cc4937973257b411876fdf916ff808f9afd91ee475b6985913
MD5 49cb68cfba894db4f0de090a0d39f924
BLAKE2b-256 fc8bc4ef189bedc0faf1a06cbff2fe1379482fdf2793154e15962d7e328f0a85

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 468.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bc96fdc0af25e60665985204d3cfb9186ffd1f32fced31718f03811973dceb8
MD5 16cbe804743a090e3fdffe05c6545ede
BLAKE2b-256 4298f3b7138902b6d88ae1fc40c4834e6304956ea7067c1677e3d7624734f95b

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 453.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e676c1fd585ca3fab726e9def6ee021498e2e072d8a61b1170254951517d20b6
MD5 04dc14a583dcaf7f68d24f7472b2257d
BLAKE2b-256 76c49961506243a4bebc63661d226228eaa0d79cde9a8a6a3ca6c8f8ff3a672a

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 461.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e942fd04252fd8380a0d74a58c521e0c5385d693514893620e88cb8e68d5958c
MD5 0f26106b048bc2b871d5bd4ac216d9aa
BLAKE2b-256 3f4caf94c5e3f34a04fbbd0b82e2f41735bd251ee21ebb64264d9bb1561f007b

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 380.3 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 092f5c9a65a467218e39c6388454d122f592c9341971dc1121e238dcafa08bc0
MD5 7687e1f6abda0b2a5297a8ef208623b4
BLAKE2b-256 8f42891a4fdd149365ad362015042cd204aacb494cb288be9618d43a3fdd0694

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 353.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 729d6abe0e48c4fdfbc77a519fdcd9034d66104dadad643f1898a1bdd94ffbba
MD5 6056233b68e398fc5a30d9fffe3093c0
BLAKE2b-256 e02ec95d8212d2c4fed6b488a24fb005fa66682fa3f3d7a88efe5a2d48366af9

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 348.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b5968ef30685068aef64dea9c461cb774ff12932aa00396de52d3a919ffaf463
MD5 9e37f775eeec239a6bff79a3dee18e40
BLAKE2b-256 530a7b3c9811251bacb4d2ea186e18fd2a62e1cbb93a87790a549215f9e72039

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 450.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c090907837434524d7df73dab67a5f087e48d719cd50076472c2e85a902ab492
MD5 da5f53f8a7f8d60e0ae1f2ca611d3b4e
BLAKE2b-256 b81c85c17d886b2a126e48050592e6d1c2f538fdec0bb280f8c7db52d27b37af

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 454.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 706f2bf6398627eb843ba40d73d21476a141b32d152bc077bbf5b780ffe5290d
MD5 c3018ba9a77d563e6274ddd7d08926f0
BLAKE2b-256 92ac0f44d9d32ea720f7b8cf1d69de68543acb78185059c0273e031d0c28029e

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 458.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2824714d767b4a0b17472b8b93ef2491b28533cca83f1af47d9c905d362df94d
MD5 e4c75bfd8560b88b8d8d79637bb59b9d
BLAKE2b-256 2d2368edfa557b7b5d6e6a2bde9851581b94e734ebf906a9cb26fc421214e5c1

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 451.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6e4f94aed1fd2a1fa5326a21dc2eed2374190708be2796e19f8fd37b2f91959
MD5 0e6965216d9e4a4d9bfbdfedc0c00a74
BLAKE2b-256 20cf46231df014e31ccbe6535ad7e564368912868187a91dfa4ee453c15a950b

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 452.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cdd957d690fe77d3ea6aa9a6622bc0b34156e04a9b0bb87e378fb31a093386dc
MD5 dfca9b96f64a543b6bc4d6a9840aa262
BLAKE2b-256 c60a04b4a5b27101513f07a145e43e10cddf05e75e92df6371a5e196355caa67

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 444.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45a0d4327af93c3c9ac17822886b4b7cc418e9f0a2de17b293d701946f300d4d
MD5 ec51edbadd93e55e1b85ac14675b0454
BLAKE2b-256 c838169faeb16519881730199748cfec9c7e1581b655e839cf71e558aca18db6

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d4c64b03e5d39cd219b1eadf4eb66f15e711fff8bff6e9cb0d9f95571e1621e
MD5 f8da3f00de655053a820e33d1cc73088
BLAKE2b-256 f969fdc7b47cb3016f9359347cf537b6a15a1d2400f72979cb27e7598af3779a

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 467.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f3c6f698df84b7f2d839ca6102192fbb8a653058bbf0cd98f03aee2cd8cc967
MD5 7d8de2398c757790e0ad3c69472472a1
BLAKE2b-256 97b9eca87aad40f86d1509530fbbed4c2287facf8595f0dcbecffdefa9714114

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 468.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9799de702daa246ac8e6dfb1fa6845066445a334c658688582ceaa6fff0bdca0
MD5 1d5c6c18060651b1038ee14a727dbc03
BLAKE2b-256 4bd2c5c779877c4b18d6be6a6a3388b03a4da30e68a92d7083337dee753f0a5d

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 474.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e342b4165a1975423a0d8047dde5fc6392587d40edf16c7b87587de2c97ce826
MD5 82d75d5872bb9c07bbbace779883fc84
BLAKE2b-256 74b5c9760a8946c0c7c97edb81f6ba9b95b3f6bf70ad06632f1263ccad50f007

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 460.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fec55c0b9e4111a9633a32c7387c966b72f4127a6dc9e10d8d421d45184e8eb
MD5 40562774e82f9da83a1f38de2fd3608c
BLAKE2b-256 4aad67c9a5f6de25a95959be157fc23fef3d62846dde82d8c10d724064d054df

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 466.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4097b745c8d3295573aab0a1ad0e502227e01155b62f898bfa0babc623362c0c
MD5 a979e3a248886dfc8b4f5fd28e0f25d2
BLAKE2b-256 3741fb667c07913acb7141641d93723328f77b324d85c00e24f5fc875db1563c

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 451.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 532eb6b92901e6aa9918f87bebd85d74fba8d651d9a6f321fa945ce3655d5af8
MD5 4da62677b8d5344911b61bd00e49580c
BLAKE2b-256 27695069aa3c1fdcb5f767f1ed0ce7f1a859c7389509c4f894a68b57b4df42e9

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 460.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d6ce4a7b494e0b40492c7c084816cfe9c5cbb4ef4797f6cda40c174bd14a068
MD5 7da1d4b221b519660a45d2292d575758
BLAKE2b-256 efb1019b673186189a0f9cbda61c7512da4d9c37a360c7883908da92fdca8cbb

See more details on using hashes here.

File details

Details for the file pymongo-4.0.2-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pymongo-4.0.2-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 377.9 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for pymongo-4.0.2-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 ffee707ce5390429e10adb47cff7de8389a61a82e1e36cf6538cfe264470657a
MD5 b03a566890f34030712c3cdc6b6a2dc2
BLAKE2b-256 00d3a739bffa0800cb303471ea78ba0c0d3e81e455e9ac7ceb220cbb31b27409

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page