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.1

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

Uploaded Source

Built Distributions

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

pymongo-4.0.1-cp310-cp310-win_amd64.whl (354.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.0.1-cp310-cp310-win32.whl (350.1 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pymongo-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pymongo-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pymongo-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-4.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (453.6 kB view details)

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

pymongo-4.0.1-cp310-cp310-manylinux2014_x86_64.whl (477.5 kB view details)

Uploaded CPython 3.10

pymongo-4.0.1-cp310-cp310-manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.10

pymongo-4.0.1-cp310-cp310-manylinux2014_ppc64le.whl (483.9 kB view details)

Uploaded CPython 3.10

pymongo-4.0.1-cp310-cp310-manylinux2014_i686.whl (472.2 kB view details)

Uploaded CPython 3.10

pymongo-4.0.1-cp310-cp310-manylinux2014_aarch64.whl (477.8 kB view details)

Uploaded CPython 3.10

pymongo-4.0.1-cp310-cp310-manylinux1_i686.whl (472.2 kB view details)

Uploaded CPython 3.10

pymongo-4.0.1-cp310-cp310-macosx_10_9_universal2.whl (351.4 kB view details)

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

pymongo-4.0.1-cp39-cp39-win_amd64.whl (354.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.0.1-cp39-cp39-win32.whl (350.1 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (450.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (453.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (453.0 kB view details)

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

pymongo-4.0.1-cp39-cp39-manylinux2014_x86_64.whl (476.8 kB view details)

Uploaded CPython 3.9

pymongo-4.0.1-cp39-cp39-manylinux2014_s390x.whl (478.6 kB view details)

Uploaded CPython 3.9

pymongo-4.0.1-cp39-cp39-manylinux2014_ppc64le.whl (483.3 kB view details)

Uploaded CPython 3.9

pymongo-4.0.1-cp39-cp39-manylinux2014_i686.whl (471.4 kB view details)

Uploaded CPython 3.9

pymongo-4.0.1-cp39-cp39-manylinux2014_aarch64.whl (477.1 kB view details)

Uploaded CPython 3.9

pymongo-4.0.1-cp39-cp39-manylinux1_x86_64.whl (450.2 kB view details)

Uploaded CPython 3.9

pymongo-4.0.1-cp39-cp39-manylinux1_i686.whl (471.4 kB view details)

Uploaded CPython 3.9

pymongo-4.0.1-cp39-cp39-macosx_10_9_universal2.whl (351.4 kB view details)

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

pymongo-4.0.1-cp38-cp38-win_amd64.whl (354.8 kB view details)

Uploaded CPython 3.8Windows x86-64

pymongo-4.0.1-cp38-cp38-win32.whl (349.9 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-4.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pymongo-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pymongo-4.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pymongo-4.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (470.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pymongo-4.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

pymongo-4.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (460.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pymongo-4.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (461.1 kB view details)

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

pymongo-4.0.1-cp38-cp38-manylinux2014_x86_64.whl (486.7 kB view details)

Uploaded CPython 3.8

pymongo-4.0.1-cp38-cp38-manylinux2014_s390x.whl (488.8 kB view details)

Uploaded CPython 3.8

pymongo-4.0.1-cp38-cp38-manylinux2014_ppc64le.whl (493.2 kB view details)

Uploaded CPython 3.8

pymongo-4.0.1-cp38-cp38-manylinux2014_i686.whl (478.7 kB view details)

Uploaded CPython 3.8

pymongo-4.0.1-cp38-cp38-manylinux2014_aarch64.whl (487.1 kB view details)

Uploaded CPython 3.8

pymongo-4.0.1-cp38-cp38-manylinux1_x86_64.whl (468.3 kB view details)

Uploaded CPython 3.8

pymongo-4.0.1-cp38-cp38-manylinux1_i686.whl (478.7 kB view details)

Uploaded CPython 3.8

pymongo-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl (351.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pymongo-4.0.1-cp37-cp37m-win_amd64.whl (354.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymongo-4.0.1-cp37-cp37m-win32.whl (349.3 kB view details)

Uploaded CPython 3.7mWindows x86

pymongo-4.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pymongo-4.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pymongo-4.0.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (460.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pymongo-4.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pymongo-4.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (454.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

pymongo-4.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (446.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pymongo-4.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (445.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymongo-4.0.1-cp37-cp37m-manylinux2014_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.1-cp37-cp37m-manylinux2014_s390x.whl (471.1 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.1-cp37-cp37m-manylinux2014_ppc64le.whl (476.8 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.1-cp37-cp37m-manylinux2014_i686.whl (462.7 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.1-cp37-cp37m-manylinux2014_aarch64.whl (469.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.1-cp37-cp37m-manylinux1_x86_64.whl (453.8 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.1-cp37-cp37m-manylinux1_i686.whl (462.7 kB view details)

Uploaded CPython 3.7m

pymongo-4.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (350.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pymongo-4.0.1-cp36-cp36m-win_amd64.whl (354.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymongo-4.0.1-cp36-cp36m-win32.whl (349.3 kB view details)

Uploaded CPython 3.6mWindows x86

pymongo-4.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pymongo-4.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

pymongo-4.0.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (459.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

pymongo-4.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pymongo-4.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (453.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.5+ x86-64

pymongo-4.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (445.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.5+ i686

pymongo-4.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (444.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymongo-4.0.1-cp36-cp36m-manylinux2014_x86_64.whl (467.9 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.1-cp36-cp36m-manylinux2014_s390x.whl (469.7 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.1-cp36-cp36m-manylinux2014_ppc64le.whl (475.6 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.1-cp36-cp36m-manylinux2014_i686.whl (461.2 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.1-cp36-cp36m-manylinux2014_aarch64.whl (467.6 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.1-cp36-cp36m-manylinux1_x86_64.whl (452.6 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.1-cp36-cp36m-manylinux1_i686.whl (461.2 kB view details)

Uploaded CPython 3.6m

pymongo-4.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (350.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.0.1.tar.gz
  • Upload date:
  • Size: 768.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1.tar.gz
Algorithm Hash digest
SHA256 13d0624c13a91da71fa0d960205d93b3d98344481be865ee7cc238c972d41d73
MD5 9a45a08d7eef7942282da9a0b7574c5d
BLAKE2b-256 3fff7ec17064d403799d644f7db9c2e99202441849aebe771efe3199f3dd9076

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 354.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d419e2dbc4943ad6df7ee05e707d7b2c2b512b92407bb6ff643bccbdea399c3a
MD5 a39dc49b69ef9c7ab4319709781287fc
BLAKE2b-256 137397ef427f0568522e205146323deb384a51c52f5a2b452ff0086234cd665e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 350.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0271bbba36bb130202e011171c1883c4c193036ad0b1e02ecfbea6837790b7de
MD5 f7a42e255aa03d75bd2254987b07f59f
BLAKE2b-256 be1610c655cf651ec614656237153c624b5753c2fbacc24fdb9406cd6517692c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 716499113650aacfe1b94d37e0a863f1e84b8d47737c74a2f44f8dfccad46952
MD5 3185fda291d64807539c0b230084b35b
BLAKE2b-256 94fb4b6f4ecefd5e3f89d83a8e1829f18dd3ce3e77268a6b5ad6da2813e422d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71810eade75ae1c466adc158d1fa8141040f75427b76240316d97f3c89edd72f
MD5 5388e765783e9eef43d7e70145de4671
BLAKE2b-256 d2043cdc1f66688d4205ea623c3c3ef22d4dccb6cc263a071afd67a8fcebe4fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cbfa85a12cfe3dca21951cd432051c505ac461bd9f4a635207d982dd9df2373
MD5 51c7f35b5b648b48d93a96d1812e3a5d
BLAKE2b-256 61244122321a19031a1fbc05179d60409eb46ef66f547aa4538fb8471e0cbc18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0606d14892ae2a2b1450e37c8924381e9b64683386a9853e4467f02fd5b44b6
MD5 90f9400e108802420b65e800541437d4
BLAKE2b-256 4d2c9ec07bc98b93f04912318a49000a15821b89ec120e49d552df503621ae68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 349c8e522e0b785f442fc9d7fc01c59f7f13f1abe9395310d0d817cff03ec034
MD5 78a283d635716ba17cc58624e3b946e1
BLAKE2b-256 d6485eacd17dc29454c2c1c774ea13a468256edd52fca420ffabc20c10d33981

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 477.5 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75e449ab068af63b7729195343315bc63d242166d88467314be182cc54ce235d
MD5 c1a18f052190e068eb266fac75bdae5c
BLAKE2b-256 ccdddb593cd4d3730ee7af2b932c38eaba99e3ec1d1bc702b00476af19db6ec5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-manylinux2014_s390x.whl
  • Upload date:
  • Size: 479.2 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4e36810c541bd1976cd05452e797860b775886cf32c3e8136b9fe48c2c8ba95
MD5 acd965bbf9a8eaea01e548f00730e5d5
BLAKE2b-256 140d6bc1146db433f05571933499ae8ccff2f53c84d4e84a776b02c631cfc11a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 483.9 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c878286b1464f462616a47f315d14f02f03512c6b81cb568e996c3f1f79bff8a
MD5 20b62594b93bd92741b73565a561c4ab
BLAKE2b-256 ed95b60867f0f099e50ce89f3861ad8e26f785cd7f6d8f8087d441946431723e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-manylinux2014_i686.whl
  • Upload date:
  • Size: 472.2 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c153274699424e8f89f2097d5113f8cbe7898a8d62afaad0270a0f0bd0af53b
MD5 1c455dbf689c1d0f35fd5fb48529eb6c
BLAKE2b-256 b65b505d878ef58756f4e7e79b422e335b48db85854dfbe64102d0cbdea5d6b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 477.8 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 774b9f48bdc385af6654def31e7a7617e01b99cc8aaca1ab3ef6ea0492205e57
MD5 5089d19a28e7908676eddbf7069f6936
BLAKE2b-256 d55b7655ebea94443263e8edb8eee3ac0833a4b364d47cd31020ad60c1961908

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-manylinux1_i686.whl
  • Upload date:
  • Size: 472.2 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 633ca2001f80900142068bab907feca99554b557ac105c74a9ed157ed38ca5d6
MD5 cbc9ce8a3b5463fc79af42ea394c967e
BLAKE2b-256 4d9cbaec5b921c442ec47254b550c68b040d28273a62eccef710f4e8a2d4dbfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 62459b91a513a7b441cfd70ea7fd15c50b858877ca823915d32bab08fe173edb
MD5 b1afb307591bd21cbda7b59b7fa1c4d0
BLAKE2b-256 047e28878c02c03e9cbf38edef9975d599be960a271d6ee9475b762417d11c5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 354.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 65f8a93816dcb2202710839907759aca9eece94d9f13215686f224fcc8966f9e
MD5 98a6ff91ae48bd1fe79971330cb6c3dd
BLAKE2b-256 fabed269fe3c36c10f8acec2c12690959c09b3593c3a552e374183d6ebbca243

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 350.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7bdb66340e246b5dcddfcfe79a63ac2ec3808dc394853476f49fc785425040f4
MD5 135c88046609f5abd6360fdc0b896940
BLAKE2b-256 7c66d6d85e4da4d7cd3bdd2b9dfd72889a55efb393547037a3884e89e0bfce61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a57e271a0647002b5683dd0c7c2fd7f5fb939357c44396d85298e51a3561b9e3
MD5 6a757e3183d1da355123e5f2b371e57a
BLAKE2b-256 12d8b8ebe44ce04cbde8efd390d5c18aaab3ba97137fed88412d8878106e0e46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 464.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f0605b1146bc24c720aac0e806492144aea9d5a4dc956589e0544301862756a
MD5 931daa326e7cfebb4c7f15023b9c6c7f
BLAKE2b-256 670538313b1d2191ff65898e172fe4b4aa94b452c4d2fe7748fcb94fcedb03a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee2c1fd5bd57fd0092dfa31c1f9f166cf2850f191311603ce343cadcc8608d60
MD5 edbf45164d0685ec8078ec46125548a5
BLAKE2b-256 cc1bb156539b238aa7b11da243b13600929adb8f2aba59bcace3e85afafd4737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3f6faea65a73ed54111f209b4a411fe012c68f04e8bde96dd7af89b13cac92b
MD5 44723d87cdba4d77238801422bc85b2e
BLAKE2b-256 e8b53b2f9c733cf69a374f338c1d649b92a10db78227e44e61f6abe79017d44a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 450.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 812650a2e8a08b812d6a3c937f482bd2c9355e90574964fa283b4d8ef4ae665e
MD5 776f6aa7bd76db17263df02a9da65ac1
BLAKE2b-256 a7ba073518763e9756471868e34d06f8e5be28bf0b5055aa6af7dfbc6d0d180a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 453.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1617fd52da7b208fe5ea176d251dd7cf1b5309e5a4272754b9599edfdf7e64e5
MD5 610641e8f9d848ce518edb39038220f3
BLAKE2b-256 a10fe7f0810c6284bd8226dd2f3e2d035ac2f88634e3dce020e4fac7b3f3c884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6183476860511cb553a7e4c40936221b6985af7852029c84df898370ec8a028c
MD5 dd7f1010333ddc1d07161063701ba02c
BLAKE2b-256 2a0c7f8ac2ffc792f81c190bfa1b7ee71dbb5c3c69980bef3bf41e919c3e6811

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 476.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0238e53b452ab699b5e2e3f8af2557844c80ab0d0c7a0e066226882838e72756
MD5 3fd40c60205467570d05b8317bdfeeb9
BLAKE2b-256 3d39cce04d05596d8c90d0e2995314f7172878d5b29a79c1370e1313684c237b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 478.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40269fe6bb79fe00c8ba7c2f2d542a82711eb234c3dedb90b7e489386120e9d1
MD5 78083e81a7e864a0a17dfa02d148782f
BLAKE2b-256 208b3983ee4946938300abca4d4e36b596dd9421ee229d9f45158c949890d999

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 483.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38b21eddd021a943b1978b0a3d42e974956a338e3dbb88d56aeb8b8799abd6e8
MD5 c19611db57e22dbd12833fd623eb5294
BLAKE2b-256 1efc62b6bf0ed4b62ae06fad899df38f740bb934cc9ee044b32269cdc1939104

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 471.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a091050bb8d54a5200193b4998e0cf763d083f93d97c7780963c09996f85a38
MD5 67025ee00a99d0f2f5f1ccd764577121
BLAKE2b-256 e21f757f2a3fd01c50b9b0ccbd08400476174f8338ed812ab6a7e6c072b53fe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 477.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93c25fbb5dbc436edbb74101f4da49a42bd3af534513fdf8e75fc72ef035d5e0
MD5 b21be438cab456bb60f474fb35013545
BLAKE2b-256 4ef0eabbba960de442cd9abbd54fbfbb5147c4c90ee48f34530ceb2f6b683365

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d7514231a03e95072b32d9b335b96253799802ab94647ce83585d5010749380a
MD5 e3a849c5a137027115020b068c041176
BLAKE2b-256 29b1abed3dc7950c92ad9ea34b950f2bac20b83ed982a6a92325bb6216e7e834

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 471.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 87dce7c85387ca033cf76cce773ace7675550dcffc456db32a34403439e53e45
MD5 31aaa02e54b7e5770f3966c5d2b702fb
BLAKE2b-256 b775455b36e7a17563408f01f2fe3b5431e919c65731c2ad9dac9ab14c665a8b

See more details on using hashes here.

File details

Details for the file pymongo-4.0.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pymongo-4.0.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cd4cde3dfdd347d638171eca53ee6e787d4b1247c6e182f8616039b1df6278d5
MD5 6b12ce009682157383dc81fde5b56f53
BLAKE2b-256 7a72c7711e9eedebb4a0a69cd0a16ed6f65946146ce1a677fce884d1e19a98cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 354.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da576e59f5f8a642ee26d027479325a45be45defe075b6fa7c84506dabc76883
MD5 4a4f43e8f7af71926e1f40edadae7a03
BLAKE2b-256 3e24586d53d6fe6dae7bf588ce894493cdb91c4b76340b050a1b9de72309b7bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 349.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 84eec41ed982f21ceb58689e16a630a70301eb14499c929388a5bf6464518d9d
MD5 137bc851c3e33c4a415d9006ddb468d9
BLAKE2b-256 8dd68777af9a5f69d081f07fd020e03283086dded8639e011248059e0f201b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 426584e99af31ad2398e617c3eb0f1ebcda37f0ffb2d3e56087cdaf23a2f1689
MD5 293224dd3ad1590181763cf890534350
BLAKE2b-256 4c92729b75ba32f1380b03f30aeb85049f12a63fd90e5c6bad40c13d2f6c3a77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 473.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d66462f740dcea496bd779775688a0f805860f0b01998bb59ca22566b098ee26
MD5 f617e99a5f437ee915cdae3ce1829977
BLAKE2b-256 45ec43923174200fcecbd6d3e88f0ea6eba3e71b60b0a5e679c0969f25da0d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f785375ca2b4e2192786f1e0d2a94c66900d12e780ebae1eccbbab85eb9a7054
MD5 b5757589ee7744ce8afeeabb3bc90556
BLAKE2b-256 71d019707d8fb076c9e22795948047c22d33d5aa1c5ddfed1ab315a313f62cb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7629abba158610cb5db6c22041b287f9398555d72bf9468d44d2efc03d837b81
MD5 f3023b03d14e8e72e52608070d6ae144
BLAKE2b-256 4eeb3e5bcd4cc88e9e2df3d55010ff64f06a699558bb27c95dfddd20922b1cfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 468.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 72a0c06b76b254bdec18af9add3b8d35796dda51e64a5e0e48d40bff7b41ab13
MD5 efac6e5f9e66e3d37d9c24e4dc7bf247
BLAKE2b-256 244dc63d5f908fdd21cdf34685661b859c7827c8efde8eb6f642dd2076d37b5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 460.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f333c0d71dd892683e608f8d1731785a0aa67b1ec012b0d9fc863e8d7224f64e
MD5 d7c24dc677c83f0a3d920498cf4eab1d
BLAKE2b-256 f83eb560745eb9e3f5699cae2884cb5a2937858441a4f06dda2612d8c3c92b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2b6e12f98cce588525f3db802c88f9795d294549ebfe7c2c9bb81333f533ecd
MD5 26fabbefe73dba606bc024e4ad2f65f5
BLAKE2b-256 dac7fa1f177db561600f244c1de84290cff7b7bf30332b79548de46a145ec279

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 486.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 132cc67b909835d7c230888387b4cc9596d4559a3ce90d947e03bc0b0ffe420b
MD5 21b95cdff23581dab3b9f355310df18c
BLAKE2b-256 8976495265a854b30147e37ed823089b67d407e04450726a829383af2810e78e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 488.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8869feff59f08cd63979df26aa12343a85bdc7fbd1b79fda8ae39f31a310fa62
MD5 9c4d0b1e313e0d35e1a915bb0e4f1c7f
BLAKE2b-256 bf82285a79115916da2418a6a45266ff84d46844841781a14c587f258f4e1194

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 493.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fd71b4d7070b01c7f66edc44c1ec2f8bcace2761c3a6ecc10449a40e474d2fa
MD5 95e50859cff26a65d36ed59a24222fdd
BLAKE2b-256 b61a0c772bd1079fe5834ec0cddf4d6b50b8b09d848acc25391fed7ab9f273f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 478.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fea4207fec8909e155a7948c987eac61949dbbe97fd0c388e587d06ba9bc78d
MD5 b0e4b4b7540ea4d9e8c009356b01bbf0
BLAKE2b-256 7d23158e4e2e3c87a96e0a715728baa4409beabc08ba04ed19d87aa258ed1623

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 487.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28afb00423e521f4b04fb8f75da7c0215e46631e821e27abf5a7176f9b671f47
MD5 4ca54f9d72b89665b09952dabefd2dbd
BLAKE2b-256 c37e93ba25e7c833df708c66a934b1eba6ee62467c84d66e4ee5bfb1ca0eb8a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 468.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 86d0e28dd5867153d9d9963a4eb17764854a925758fc2db0a814260f82fd4319
MD5 3b0708bb8548d1db301572ec9722b380
BLAKE2b-256 3e3e0efafa2495968e2723df071ca9c4944aa77e53eee7a3cd27b45cf66800a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 478.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 35a5843546bcbe0422f30b4b2bd5e0b630b04cc4006492c70e8168a921d94b9e
MD5 da07b2b059cae3c48060bf8a80f010de
BLAKE2b-256 802b585684af262abb77605517617eded305a18d7be91ec1fcb13008fe7f917d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 351.5 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ddaf391ba74eef47eb5afbc40d0b6ddcdbdb417ec8edc8ae95352d25485076db
MD5 87c73dd385563a1ef947a5fbad0c6673
BLAKE2b-256 363e3333c056bd63eee8d810e3b11bc1fb88ce43ce0324c8137c4e49fa0ce070

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 354.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 177ed1b14aa4f84f00ebef1b0f785680fbaa610361942b23eb54f562fe4c6b34
MD5 cadf417f8ed99941d010599022f169f4
BLAKE2b-256 41ed173759307baaa13eab844f1cc71add2eed5a598dd5b8250f918a31c2f472

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e7aedefc87cb46544a3865a19c1d5ca7ddf5ec5ed7dfe162d9538d7543aef499
MD5 5c8d88a8e12ee14f1798e918c87f2729
BLAKE2b-256 6cbef7b5cfc797beb60dde0ed8493a723bdb6cc323ee19eb2907d7505d737ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91c049104b51321e4e18d41edc6850d9f0890ac609b3cb3b8db86dc51666de17
MD5 9b1e6d4078ea70eb8442178b944ccb54
BLAKE2b-256 8337fe6907cb1b78624496daf14844e3fcb52d8ba4f28bb6d2e79b5dee1fdb7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51664dac8d9b138259876f324adca5ab31d991acf88d1d0ffcc94f423ff2e31b
MD5 3df979ba6f18671198cb9d9215825257
BLAKE2b-256 ddf631703711ecf6a8e4c8b50535734c483d45f2aa07e0a9d9c5ffc189428055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c77cd3dbe0dd9e7cdf8c93dc24e5a4fcb56e115ffb259d4f399e4aaf3f3c62d
MD5 053c2dbceafd0cf9fd417c466eefecda
BLAKE2b-256 db414f974d67bb2ad62bebdb5696f6d21d9e2f17d275344986dfa277e0e9e57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7450b25a803b0f57dae4c3fbd0df742f7f3344c3c9cabb86e4180083c3ebd893
MD5 adf2532c65e4bdac5a13d7cdcbe61103
BLAKE2b-256 246951089fd4f22c0ad4c67797746b5118d6cc585adfe0caf6e1acfa03d43bc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 454.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e2b6a323ca545bcb4286d14c0bd75d9a1f5bce2fa1d7fa3621e5f71fd9b8d196
MD5 7aa4e79ac74fd48c49f10c8ae69a579c
BLAKE2b-256 f048399c0854190d8781a249b1a408daf9ba54df8d87eddaa9eff505815810e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 446.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 953129b6b952a9d22042ac23050053444624f630e1928f5f590788660905fa9c
MD5 a99536e4e906bc6d894d404c8fcc4e8c
BLAKE2b-256 446e712f5765071eac46e1ea7fae2878da30f31f279e751b80ff7423217a681e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9f61b08b60909d936c1f3a4e12c163ca71fd1a4665fc6e078afc6f54f886977
MD5 4edd197489c7e455d997ca823202c827
BLAKE2b-256 4c72aaf7a0fc695ac488b47812513605055ff1f03039650370cdb5db7774b5f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 469.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 186b2ff4518c1c169fcef5047deb0e6c13a2354d143859587e745fd9f2cf68e9
MD5 67bc04705ff9a4bc3da0ce788b3308cf
BLAKE2b-256 201a3e5c2a3d5a0acd0661adac9e727141a75bdba586f8a70b6a624f704ceb68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 471.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1498f388181ae5592c7b60549faaefaffc62d6e3754097576611cb642d21d37b
MD5 dcc7a010404668acbbd0ab3d7a74e346
BLAKE2b-256 a6931b118da59a4462076bc7731c32b97b5e91ac15438c701de5c9ddf3c11603

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 476.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 512059a902ea2cbcd0afac370af580e67ccd4c7e41ecaff0f0fbd03653b25ca2
MD5 f5de09f7079ac9385fc6b72278603cf8
BLAKE2b-256 8a76b05aaa40f2d07c24efb58d96ae0671113e916c1198b5e8c503e96162a1eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 462.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9043bfb816ed50d831acc8d06469dcc41597b4f50c30e62227a93f9f9e37d6c7
MD5 9b344f142233614fa35e7b7c6ecf5982
BLAKE2b-256 08e0c85b93bf2e8b4405a84795818d685a4de10a50b2a12b980613029ac32839

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 469.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a47f4b24b1360da172cae07ce90e9bd425b6db0052d76142c7fef47173a27283
MD5 0984872feba87e1338d068e91ac67719
BLAKE2b-256 06f9522d782dec806229f81b49ebe88f4a29385b9f997e595e88ed7a1ad94744

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 453.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bf6047dea1bc8ae19fc14e01b5cb70b3810f91b100d9a535751dd3eadcd3016c
MD5 ec56e1337f1c0f3b39aa8519fb0a5467
BLAKE2b-256 d6c69a3f61b1ff372b42e6cba5615c9179d0353bda6221864d9ee7546799d896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 462.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 12d336bdbe60982de55651be397b5e49d7eadd2aa144f11da353002cd52502ed
MD5 1ce879dc517d0a7ecbdbe362c4841959
BLAKE2b-256 7bd4949877854545baa35624ed87c41e0053f3496bfa187d39754a22029714d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 350.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 686c40344f7f82c4deaa4e17aa46ad97df51263be1434aeedd2d6b6f38c7f44a
MD5 79e8cac624c113a0995c814bea65327b
BLAKE2b-256 1c93a2f0640e8b2400f8a0e8f5a929d4b4f74a4fbe1dd38504738010876f8e36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 354.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 59a4a5fe5379e4fa93380fd0b55bccbdbeb8d04fcfbbad8b42bd31610d5ed3ad
MD5 80e92008d5e28c05e83f50421aa86e3b
BLAKE2b-256 74cf8a82b66889cb4825f64485b6616cfb4c9e187341a66732ac26115679434f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c86a0614eda95db036fae01a89f3917d7abdc657c806bac2a32eec74724d9330
MD5 8215397f1393d336ed0499c2ba5b2099
BLAKE2b-256 56ab575f84f771eac155f01d623f48251224d6af13a05c45856ad5727d19b2da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06af6e6374ee2bb70f724e09ddf9402907a3d6714828b908737948cd83e5685c
MD5 6066c3042dbeb55b5d005f33b7b34f6b
BLAKE2b-256 65fce0997e416139fa3186c734c0f3d388697b04db655142c00c03ba1812ca13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ff0dbec451a2c6226bbd6f2bbbde438bc263e002f3f97d151c8708732ba5197
MD5 dca94b01259b876bb2d8444e169e2616
BLAKE2b-256 a9b6e606796f6471e012baa6b69d9d620627896423c93e06d2ab27e6d06938cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8da525765dbcc1b7abf1bba623f9f701d8759a8fb19594cd71a13b7b0c2c56bd
MD5 cf4203966d48f480118bb385e8f0a007
BLAKE2b-256 34ac9dae87e3f3ec43a7416c5bd8e4cf57db30bc58b513946c46af7ceff5771a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3e20eb096deea92350f7198a4287d45883a62fe4459d027ce789e72ceba12ee
MD5 dbd505dc9ab596603694469efc9e62e3
BLAKE2b-256 5f5c55f1709344dd6fbdf1735c760a2bdc5399ee5aa041a4ed328d293eb3395b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 453.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ceb9a4986f56595e73fffeef3ec037280eda938ed5fe6e4e0961656669d89b32
MD5 0181870d4c3f8abbd7b305ee41f0cdb1
BLAKE2b-256 e2e3184d78b8a9058cb89ff550e781365939af92191a240207647f00fb205182

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 445.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0efc5ab7d9b9e64726496bf650dbc7f1754124a48d076e5292cc5306e61a530
MD5 dbefcdb7f894616216fd48040cae2b6b
BLAKE2b-256 67f0b82edec38754d0abde9cd2f844158a85091b8aac6ff1bd96dffbb600caab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e9a2628bcd896368ede456bcfe189d9ca65b18fb0dd91974cb734baf2e24af9
MD5 9be3aa01ea6054cadcc5cd17db7aebfd
BLAKE2b-256 de11174618e44391f81b53b93385d6f3660751e2efe0ddd1038c91ed4ecc08fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 467.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 069d49b193f94bb1d748cfd8faf697060a2299f40d86bf5b6d41dd3cedf0fd48
MD5 540d4f50e34913025884eb75ac6ed58e
BLAKE2b-256 7bc870b5dfdd6e6480066c4782da287b2c9de969cd66672cee242b49624dd411

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 469.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5441f4c8142a250695e249e432637c14f79d856a2b60e0974da082e006c53e2
MD5 3f1761ad5812fdd3abfcc3d585a4ea89
BLAKE2b-256 bdcd75ca4f26fac7fefe77db12dbfbfa04a2292d39bcbe5b631f18321a48811f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 475.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cd7a4321e718cb98a7c7c475b0757e77fdaf1cdb013d7d2e781ba45219e1144
MD5 a41914ed70e4e493347176f24f037dc1
BLAKE2b-256 1765344c176d4b5c881166ca9e49d59f9b6a8bde68af2e82a1310bc48ee5c6dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 461.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8baf23d6a0a08b697854e5bcdf82afb91da732cf575fd47ee93945c3654132d8
MD5 822ad63020984bfd20a5362c43d1c11e
BLAKE2b-256 653dd632e9287bf6b55aa23bcebe0538388f56c54e475ad2b3ae247b06408e69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 467.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b73ff8582964f52ab1bf1a9fdddc1454143172a0b8a9d7d6e3972dd1134f7982
MD5 4b89995be9f7ddd66011e11e132491af
BLAKE2b-256 d5c65c18a1dd209d157784efb475af38d0c45689e2221c997ba0db597449cac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 452.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a4eb0a4db8a2d960bdd5354f05e2e57530e83d333cb644fb2b7120a7a954a69
MD5 4c9570325cf15f33037bef71db4da22f
BLAKE2b-256 dd397aadf43df2f18bb3d1b140914f0bc4eee7d4209fa6e459f3fa2cdd42127b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 461.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 47a58f15fc70198cf95982f9699e17fec12287b90f30e90c5e2b7c1c1bc07914
MD5 73bf7ad69a6794aa622ee688d713cab0
BLAKE2b-256 2acf81029613e629b45d3ceca79b747369d43f943951a62f849467061357a27c

See more details on using hashes here.

File details

Details for the file pymongo-4.0.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymongo-4.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 350.9 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-4.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ba8eb426d56556fffec53d600a8f2572589c19d50b30f61daa8f4d72ab92fbe
MD5 0053d2d00d2d3763b8092f6f8d4b0911
BLAKE2b-256 2eea3715d73a0d76c114a350c81a8f2e7e486c92476658f9f62da897a6f7cec5

See more details on using hashes here.

Supported by

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