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

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10Windows x86-64

pymongo-4.0-cp310-cp310-win32.whl (350.0 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.0-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-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pymongo-4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pymongo-4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (453.5 kB view details)

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

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

Uploaded CPython 3.10

pymongo-4.0-cp310-cp310-manylinux2014_s390x.whl (479.1 kB view details)

Uploaded CPython 3.10

pymongo-4.0-cp310-cp310-manylinux2014_ppc64le.whl (483.8 kB view details)

Uploaded CPython 3.10

pymongo-4.0-cp310-cp310-manylinux2014_i686.whl (472.1 kB view details)

Uploaded CPython 3.10

pymongo-4.0-cp310-cp310-manylinux2014_aarch64.whl (477.7 kB view details)

Uploaded CPython 3.10

pymongo-4.0-cp310-cp310-manylinux1_i686.whl (472.1 kB view details)

Uploaded CPython 3.10

pymongo-4.0-cp310-cp310-macosx_10_9_universal2.whl (351.2 kB view details)

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

pymongo-4.0-cp39-cp39-win_amd64.whl (354.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.0-cp39-cp39-win32.whl (350.0 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.0-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-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.0-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-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (450.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (453.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (452.9 kB view details)

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

pymongo-4.0-cp39-cp39-manylinux2014_x86_64.whl (476.7 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pymongo-4.0-cp39-cp39-manylinux2014_aarch64.whl (477.0 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pymongo-4.0-cp39-cp39-macosx_10_9_x86_64.whl (351.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pymongo-4.0-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-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pymongo-4.0-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-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (470.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pymongo-4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (468.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

pymongo-4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (460.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pymongo-4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (461.0 kB view details)

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

pymongo-4.0-cp38-cp38-manylinux2014_x86_64.whl (486.6 kB view details)

Uploaded CPython 3.8

pymongo-4.0-cp38-cp38-manylinux2014_s390x.whl (488.7 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pymongo-4.0-cp38-cp38-manylinux2014_i686.whl (478.6 kB view details)

Uploaded CPython 3.8

pymongo-4.0-cp38-cp38-manylinux2014_aarch64.whl (487.0 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pymongo-4.0-cp38-cp38-manylinux1_i686.whl (478.6 kB view details)

Uploaded CPython 3.8

pymongo-4.0-cp38-cp38-macosx_10_9_x86_64.whl (351.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

pymongo-4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pymongo-4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (457.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pymongo-4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (460.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pymongo-4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pymongo-4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (454.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

pymongo-4.0-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-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (445.7 kB view details)

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-4.0-cp37-cp37m-manylinux2014_i686.whl (462.6 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-4.0-cp37-cp37m-manylinux1_i686.whl (462.6 kB view details)

Uploaded CPython 3.7m

pymongo-4.0-cp37-cp37m-macosx_10_6_intel.whl (381.0 kB view details)

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

pymongo-4.0-cp36-cp36m-win_amd64.whl (354.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

pymongo-4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pymongo-4.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

pymongo-4.0-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-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pymongo-4.0-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-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-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (444.6 kB view details)

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pymongo-4.0-cp36-cp36m-manylinux2014_ppc64le.whl (475.5 kB view details)

Uploaded CPython 3.6m

pymongo-4.0-cp36-cp36m-manylinux2014_i686.whl (461.1 kB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pymongo-4.0-cp36-cp36m-manylinux1_i686.whl (461.1 kB view details)

Uploaded CPython 3.6m

pymongo-4.0-cp36-cp36m-macosx_10_6_intel.whl (378.6 kB view details)

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

File details

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

File metadata

  • Download URL: pymongo-4.0.tar.gz
  • Upload date:
  • Size: 753.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0.tar.gz
Algorithm Hash digest
SHA256 6d158eadba3aaab276a3b188b7f467ab0384b68c1d31cfa87335e52addd9dcb6
MD5 95bf72f01f7a650748f99eed5f2f50d7
BLAKE2b-256 76535699ae682e600fd9816934ccaf3d0898b4782c00a24700c802c637b5373a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-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/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 49ac9406546db0493afc0d4ad16e6ac582be2cb78207b2a9c3041cab6b1c8459
MD5 9ebe52c245544f8571322ef4dbaeb4fb
BLAKE2b-256 72a7d4f5888b33e141b2d84e255d64b337f26423ab76037142e08691af5e92c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 350.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6b54be4658c203f03be1826bb82bccd1e7da251b538dadc091694e6d1cc6e319
MD5 bbd0b835aa6857c582cd1cada3f18863
BLAKE2b-256 98c9698fbc1d23aa53f8cfe31bfbd55e12fab0f8f573478505d700bf865f300b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9e2903221062c9cd9c593a3d840f87956e11615a12fbdf848604a5d4ba0e75f
MD5 e2a33ff06e2da5ae1d0393206a5eb337
BLAKE2b-256 0b95bb8f16cb844a67bf46f41af16e663f348ec595b24f03335d0f1e1b480b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c83bc8099210255cd4106abf216fd7161f237cc0e280458c0ac33fdccc2334fd
MD5 1399c644c5ea038004f1896d04ab6c4b
BLAKE2b-256 d319ac11137a24c629a8558e4f892f407e92023babffc250106f8d7843af2768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12ba7b97d22f99907f38e3da34ec255337f1a7417166723395d8aea8e72fd25a
MD5 0164641d5d2d024db568489cd59e28ec
BLAKE2b-256 8bb08e3248924807e01564144403c70eff5dd190498b0f258beddf10f7fa5c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aaf7e50fcba709b6c3370cedb6b9ff42300317593e3592c5d4798ef0dd3a386
MD5 794dcc9e4084a393109fa86c6387b13c
BLAKE2b-256 c3f34d2ed6cf5ddfd8f09cd3bb1272b6fd3fa0dc658c63f02178f9f82ea8fb80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e859562f42008de8e343015040a1905af5fd5db2be04c03cf1cd1f082ea2b094
MD5 4edfdf1de4cf09c82964ed0eefb7b9f2
BLAKE2b-256 369286537878e6c9bf216dff2c44d9966d4f9bed1a3f652d2185a22772628aa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 477.5 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eea7bd8d5e5ff9e3ebdca394a806b65b4daae2e1e21e9626a377a9f547b1931f
MD5 a6109f0e9668b49ab1aad9e1c1fa58d8
BLAKE2b-256 99ae64422924502631ebb09641b5a0e0adabde36bbb508bcf2f09c26da061194

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-manylinux2014_s390x.whl
  • Upload date:
  • Size: 479.1 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd88a468322d8f46b9c01ac68a546639fa52b55f560719c357ab9b3a08bfedab
MD5 8877c3f9dcd82242099abdc2cad4fb71
BLAKE2b-256 cd0da74e818ca63f7d5e16fddf667ddcb3473e46691d25e55d4a9c185d7ee5a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 483.8 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e46d77ca3585fd34ab8c9d78d3642fd71a9b3a8fdb38ca8b53562a5ebf90daa7
MD5 40f7c50f2b69f3df4f14c4209727bbba
BLAKE2b-256 c7f58624c72f722bc22826cb0525f3fe05761a915597351dd2d8f019c2c95da6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-manylinux2014_i686.whl
  • Upload date:
  • Size: 472.1 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 904c0b3e2d3d692048ebdda7b3abb0e3d473f86bbfb327fa13bbb79f9653e9b4
MD5 0d52991fc2717b0d9da47fc563dabce2
BLAKE2b-256 782e56d9e4410d3286377912539f04c9f043a29d59e49cfa9dcdc23bca90e161

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 477.7 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7256fa9e4be59683b0c739c8d83379a1be1d33f6c41bd380585ac77e4af4277
MD5 8ebfc7ad5c8e62e7893744f3980c8c77
BLAKE2b-256 df1613c3743af387dca21cdb7791a285f97cce111c098b357c4e26debd651945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-manylinux1_i686.whl
  • Upload date:
  • Size: 472.1 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 79bd06d8e1b3723bdba9978f968e38133223913d04782786a2d2b17b486f0e97
MD5 3f12249c0076989541b7c97be996518c
BLAKE2b-256 37af5800882650d7d18f831f1d25db6d0b6801c2443ead2149c02db1e7627497

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 351.2 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8c7dcaa2ac718dc9815ab63bef1b27d6527907767c4a2e5e52534950385f8abd
MD5 fb0f0794c4d1f4199d21f4ca09268af6
BLAKE2b-256 89bb12017c15d310f8ffa6f52f319d2d965b0f6395cfc7fa80e0342571df1ba3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 354.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8c1f016b54971a9b28f0c4a284690df6ff090e9538101c23a3fabd1ea4b38f5d
MD5 a0702c775a182102cae2e22792fd9295
BLAKE2b-256 1cde2d06377142b5f09d08bcf5020767c42acc8369c753c14dad02a31dc4ac5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 350.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b994399f07e5b988c66b9536270a6bd7c3a8427dfdcf7ab61ec37c974edf4b17
MD5 6dec0619e145c3885cb0ad99e31cb1ae
BLAKE2b-256 3599a87eb43e1007bf586b76e0f4b36f0541dddf989969b002bfd16494885b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 740219c386b1d17fa09006d707f9ed256ad0ba2fcd150ec881f847bb9ea2e74e
MD5 6c7694fa13b62da8fe5242ce84a8b80a
BLAKE2b-256 5a15c764361579703bcac5895a785acbb4c5de52c484383edf6077cc763ff76f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-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/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0d3b18d3d4872c0d9173abb1e2b5488801479cafe0af77e8ac65f05471fa51f
MD5 07c647508ff517af6a2bf3cfa0375087
BLAKE2b-256 8093a5add78fff0c3bc149927d56485bf632b81ae5a17a7749dae551b3be38c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1aa08a23c909a8322f363d786eacb0f2b55ba200564dd0ab07fc6f410566e8e6
MD5 f926aeb39e3c1500fd28c41bc07eccd0
BLAKE2b-256 70dc717fead0c5882869a6dcf771bb08998c01dc1456a327197efaf7567f9f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 645ac39d7455751cabb1694e5a7d427b35292e98b06df71e7ec1e3cf02ae8753
MD5 3551e3bb676e496547b8fba096d4f928
BLAKE2b-256 c5843cff41619953c9167c92f72d4be8beba1170fe406b2e1688ecad5b3d3de5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 450.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5426102eaaaf9665dae0eda84aacf8b06fc484e67b0775b50915bf737cca3ba3
MD5 2cad3f509fd25c810d2f060172f5a452
BLAKE2b-256 0eddba153e13a6fdc5498a7cc51c5e40cd2ccb399d415d972a2cfa832aecf9a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 453.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12a292d4d5d369e36cecf88d617d5dcb6529e2639d69ec61187fd625481bfe2a
MD5 e0872c2bcd4881229a06809b4e4707c7
BLAKE2b-256 60b5d10d140113724b73e018f3e76914a32d6740b42ce9177277e663d94fe852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed87e97929c2b4e786c85eb210975bb2ed7d85b353e0a182d816806b05a03a9d
MD5 af6080b0bef71730e90fb5f30d8f9020
BLAKE2b-256 809a8ac48d28515e5be276f87535ae435edfc1cb2dd39e2d75661a532b580068

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 476.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bc7fa3dba2c10246d646801d765d6ce08174e55c3dee03e4061a3c6528b575f
MD5 423d361012b4376a332a6320c5a0a904
BLAKE2b-256 ee6c6212e06bb4d13e4ca0f77fe805d8107a6971e955237277b3b2259718eb33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 478.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6090804a448d84d68864ae469fecbf7e9a58492c4fccb3a9fcfda54ef36332f
MD5 747b8981c016d10093b1477c25a076e1
BLAKE2b-256 ab89d78002edc00f13e6d98c5741f0381078ee8e3e26db95473a86aae875a39b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 483.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c272feeda5df8c7b535c631c97d53c2af51f020f8c87945bb52e0f455eebbc27
MD5 b58a6906c3e51db66fdf7938f2950c06
BLAKE2b-256 679b0f3a34350d39a2de6ee9762e9ff46a8aa4c401dece29c0b26a9c55653be9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 471.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1acc9adf62ba9fb6cf8cb372a2b3e48e7df187dacdc28a132f604497d5befe84
MD5 a69523be36f8c0282c9fd404f4675c13
BLAKE2b-256 8d5e93b82ec7355490d23b2ca0bdaa4c53fcf4a928194cc1ac5654eccfb3bd00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 477.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 913380d5ebad5f20e03132aff50e2836a5559d8a37a3ed83fb0e946819809671
MD5 87592670e3ee7a3dd54e13356ced5500
BLAKE2b-256 59581679f32f06e4daaff96ea8a34034e7e1600ebfcf7d358c037001833b9bc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 db9bd17e1ad0e0306ca1eecd1928387f3318b650aa2fa01233c203687e353f72
MD5 8c9932e987fe8e86e17fb901aacaaca1
BLAKE2b-256 fb040191ed8670dc8c7d7fc8f31ded9f1867d9747f2938a7de7d459572273ba5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 471.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 405e22eac37588d1a444acf3a811848f8adee06ee3907434518e96f2b420dd07
MD5 15ddd801e94ffe48dac7267b35805532
BLAKE2b-256 38776194da1053ab40ba7b511c2c457db2fbb82fea45b055bf00848b7bf50b12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 351.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 476b1dac1ef6e703d9d261d86f4d8f4f3d4f6a6d673a5eb1cd65ba66aa86ea2e
MD5 fa0fc6a8768567a20da3c1ce027a40c8
BLAKE2b-256 b3f2c05c5a41f9e8b73f01402c2122d5aae8cbefd048fe8d3c431e2acdd89c46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-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/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 079ccc5650003a35bdaf5e9de28af287ef58cf589588530f63c7a8efdabbc0d9
MD5 74723944cf2c1d2d6c4c0ab2b73e6377
BLAKE2b-256 b21ff759d4641bdf3b5c143faf904191a07b9cbb69552dbd1d2a56b2dc95d3ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 349.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 48e2234861e0a8461e29b9b5506cb6d0b171272856ac3f1fe15abdf98d23d142
MD5 4143b07f54209df0d3b61e004a184efc
BLAKE2b-256 78b8e34ea851b392aa3c8b8204f5b0270371075fa39abb32febc30149aff4e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44739efada6099dfc9a035b176053b8926eef2455d6ae7485b0ff6d41c65355e
MD5 cceda1b1d349df81fd4e5c0370de4b8d
BLAKE2b-256 5068d16524c4fe08b50bd8f5023c8bda837a57de31f4800cd988908346a80ecc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 473.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1bda860cd9d5ea4eeb53f845686ed621d2c0c29243d6a2c779abf2d3c134cec8
MD5 5476d72a651273a6f214c9dce11fb4a3
BLAKE2b-256 a697c03dbf2736db53c1cf72e929f571b5c1c039a42159e02e795b065632553c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7630f426267fc1cc9a1ff6886725af64a64ca7651841752b0c7d3a833dd3fd6a
MD5 d40270d883f231bee073f7b262a1e2c5
BLAKE2b-256 a0833c2f25768dafeaf9d888c29e45750d8d019a33fb48cfdb7f25c28f3ff16a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9c9c067510b82fb123fa99f45264c54041380bba81be28315df0fcf1547153d
MD5 f055df05eed24a79960acf73312bd22d
BLAKE2b-256 08b8ef4e3942275eebd79a0b84c51bf0b2c3223fc415d453c7dc28e2f335917f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 468.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5a3f892b66913b8329ef132e2c9f425afb540621f6c8914aa7f2407ebaea90d2
MD5 8a97cef389e13014dc19181f56bb3510
BLAKE2b-256 99e01c0686e5a7409747df81f8a07860f7b09df1e8a3320980832ce9dc599821

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 460.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e696e0b9fcdfb46f40d9f5827363d96bed423dbb033c590ba80d92ff9290fee4
MD5 bdfd4f109be390d073bed032cbc57d2d
BLAKE2b-256 9695b7afa5147135f9ae400990b205e4995ef2382edec2319e879736e008ca56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40f819ca65053ea76ceb1c2ae6767f8b1e29c55eb701e690ba8f476b49eb72b0
MD5 7822f8ac6d0fbec6f590f96413bbbaff
BLAKE2b-256 fe23eb734d1ae17b366f2c8591590c19eced75c17fbc7c006ce79b46bf3b8f08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 486.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab296199d733d71dd6db040acfc05d2d5e8487c0bfc4993cc1be0b89da706839
MD5 a2c695c07f63fa4c142b08f39742f8c8
BLAKE2b-256 b7cb19656ba8ee9213cff67c2f5b74a6280dbff86680559480026c2f05d28239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 488.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cabe3efc64806adc7d3b3090d52eb3b13c0875f5c467d3578820c2e62d80368
MD5 9b2b61f5dee8f2b2941b4c99855870c3
BLAKE2b-256 8f8164164de30e0e4c16febb55df0afc354f1cb09c279c086d0dcf24a8fb8416

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 493.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41ce9e1f4f5383a6d42fe36da2fe698ea88cd1b87f1d35d53a1987e6d0e94e87
MD5 dcecdc08b3a4b28cae322f968ba0f475
BLAKE2b-256 81b1dc2496d3029dcfd7ba5fde21263e6e3d66e1bb8a0ff9ea6bf2f61df3cce1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 478.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a513669ccd392f454f332145a4c8dafe5427230c00c728b04ce7d7d75979f7d3
MD5 4957c55e7ff1fc1afa9710681d908c72
BLAKE2b-256 21f4613c728160795dfa069508a6dfc69090a4f4e3511d9f35e780644e8e5b16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 487.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b748c1028b5be7bd91e191d7a36beebbbd55efcd3390171bd90a55406e8f1689
MD5 29f39c917425f66657f563093cea71f0
BLAKE2b-256 ff51509ecfb2f29d894dcaf2320a79c74809a797df45d6abd2bb854790f3a065

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 468.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b44fac7263f5b50bc49341c97799d3dc5058fc301af3e9d2d68785e8dd36af01
MD5 79e98763e0f6a81b5855326c5b605de0
BLAKE2b-256 f5def8f03a5c6e1f326e8b7f8051c8d1c3641fb8e3bc8245b8509819af6495a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 478.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 efcc913131d638ed8f2ff5e028a72423215a8a7fa610c5b2ac643f476e82fce5
MD5 8e4a044c0f401263cff13efbc0f0ab02
BLAKE2b-256 74c8632d5e84fa7cecd6980c225b6bcbb06bc8570c65c031b56990f448b35987

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae90c98310e36007aca309b4d7cffa66210709684544cff63dd82e146149d599
MD5 eb334a2db3852d200e1bdc330e25955f
BLAKE2b-256 29c78eaf4a0f58bb5cf493a1548e7e7cd8da136354cf35a79627d2b19b0f26eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-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/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fd590ce5c8f3fea1d9a0d33dd08076c8adf1e0fb90fc81788863c085a8e00f55
MD5 157dfd2753221f27eab2492aba0a213c
BLAKE2b-256 52a1ae9e07adcdab9039fe09d299ca5e423484ea86b31f0b3907da08fc7fd7ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 67963dad4a46fb3137bc3195cc302cc115ddd956edb1ef6849d29b6af6645a18
MD5 26bd06872a53d68459645f4b95669564
BLAKE2b-256 d128572f9d36c3633c13262d6a79038b2d6d7ab0b133587c0580bea14bc6f41d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a258893fdd9d7f03df956cc68c764b62e009881da6abff2efd21b82a754dcfa5
MD5 907aab401e1c7fe132deebdecb5b14a9
BLAKE2b-256 668e73f6cc61b4c49b69e41f698e315da92e12ff52946a37ecccca2a089cb090

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 457.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf5b825ce34c1f5afca28eea7453282b7eda180fdda0a20d3156f1704ad055dc
MD5 5e6daec9ff8c2eda30d9a66e1cd7e6a3
BLAKE2b-256 086bb38753e16e1e42a5835ba70812aae7192dc6fd1f757b05260b52f101177c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb4b250e9d1ca14d971e8b5f16b935a68502905a26161e4f815a46f1cf969874
MD5 367556ad31992a573668fc900642c52f
BLAKE2b-256 5e4b4178248578d195335d38c3a082b6247fb028d962405518e68e07bb32f122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 591f182f9537c608f41484a14a2a24c25030c4fe96bc02e276d09ceb89207f87
MD5 5f3f84048b8c413113e180c2c9b4139d
BLAKE2b-256 31adfc492340a7be7cd1b41d763f35580eef35f8d308150b00b7e0725321e636

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 454.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b532cea43cb230d8b3c152b4d210e5a6c86e6d3af6c58814684da6d3ee7124b8
MD5 112ac6b412f83bb399ab9f4ef63d0497
BLAKE2b-256 edea24564067dd83f63e627a3fee30b5bbe3abab395dc60c0e2a9f0c3b0abfde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-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/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b715059733276c25b7b1158a3a1f7abd62c69658e40f9f6a6ad73e3b2c0430b7
MD5 9cf164cc1a5db22c5e3d2758b92a9cd2
BLAKE2b-256 f89c14b9f212c98bdb5fc49a8eb59e9ebefebf1625367e98348d4b6b96f01305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d19d703ed037eacba2526fcbda4fd4ead4f1cc47c9a0e16314188a617ff0847
MD5 b099e1247afedaf55a7b2b7050b6ff10
BLAKE2b-256 82925ef0aea7bcb4f2635d0beb2fad2eceaf6331b9071090b07977d4ca2573ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 469.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5d34bfef25bffc9e7e61c023d72d7c98198e26bf0fbd93e6e2537a12ec76174
MD5 e8de921779987eb38639d09060a4dfb6
BLAKE2b-256 a7d8e4e601c62f7a9fed067828c9a0d0c666af0adbb5c5d92b8c4564c881acdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 471.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fccc202c5e8888d4761527e13e68da3740b7f2f07cf157affc60cb161cc791a7
MD5 07a24c3e2c6f3e4416c4ecf616d6ac9e
BLAKE2b-256 aa4fc92ffcb934bd5520694e8cba774e4b596b7a6ed5fec81f58a3a042f0fa24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 476.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5473605b0e78df45faa313020209e13127ed975dd563f0b0c5dd689ced99534a
MD5 f08de1cc95de2aeacbb7ac18c78694e1
BLAKE2b-256 31882484103379c8338fdad486f8133235485a1738b7576bc8906607bc9eca76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 462.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e06ccac45cf88f5b26015b2ba44899f2105604bededf7dc5c6a9aa2b8010d7ac
MD5 fcc64fa9414f75709be69900cd3d8576
BLAKE2b-256 d0041fa75409209dd9cb84d0d4c51e813bdbc7b4410dcca9da3f085d6d467729

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 469.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f4b193b6e59bf0cd39dfd0f15356c1c33d90cdc260609c1bc67e06a0c086538
MD5 0159508b178e1026f0b7de65638fda80
BLAKE2b-256 b5cee7f764207b5c80522c5fa809816cd747c7f097748cc4dfd5bbb50d9fe1dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 453.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21ae2545ee5d305ad0ced705df7e6996706d1af8ac5ffb498ad49c29218377d5
MD5 7362e01b4458ab5a8da5d4cddebe5763
BLAKE2b-256 687c004f8000ea82f53b09e1825de7d5ebe23c47631a9a197968c209c99e3fb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 462.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 875ae1779d9a19d26a9c91b17e0c33aa292925fab800934756325a77c8dfa4ee
MD5 70d31c1e0d98a13f975aa69092714a9d
BLAKE2b-256 116f6a848d16da34ba13b53dbb75a0646b2615facfcfb4a676cfa1c0ce855a83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 381.0 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 437191af89005a5c796c2a46fb62916acdf317eb56bbd27de355712cb873d50c
MD5 3b36ed079c042d1790a0ce472827bd03
BLAKE2b-256 e724347f05f56d66a075a547016934587d2c2bdaa43277d2b7f652ba2c1e957e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 354.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5b9f3238d5481e60984d85409a8fa67284f268826491d3a609d1dba8c8a36035
MD5 57051cc2a70baad04c4e405d9a04d186
BLAKE2b-256 93cf2d6481fefac6ff9a1d4404046f7b39774243e7fb94fd17aa7981e754673a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 acf39affbd87a34f5b1762f90291c1aeff4d563e436b0a022ee6ff51c0030142
MD5 7552d52f981c46f23af72437276c7093
BLAKE2b-256 7a1467f3476d0742a6c41d56059006c796b692853ee996b5bb2a2f3061c8c5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25ce114469951b6dbff18440c752e430a2ae56ffffe08c7580d4b9d3d0ab9be6
MD5 abacc133179900d3a627257662501100
BLAKE2b-256 1c935a1afbce29d2f63daeb15b0f2c313d9e78f1ee71ede0a5a13a2a476321ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 456.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f95d5643cf40eda159efffeb6f6709044ba403cea8817f9f288dd83907e865d9
MD5 b509a7f346e484cd589dd2f141ad3f78
BLAKE2b-256 890d7310216026c4e3ebd306628f4e4c4017aefe4ebba57d80a3dd5e5b90582a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 216d8f01e5fd5be183477b00b6bc7ca40199b325c28068684d8ea47c5eed66a8
MD5 0623d23bb72a86cff84f82da5c25235c
BLAKE2b-256 259f6619a718c7f415d2a56a70a240680065eef9d154e6d86f5a29da851ff6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2cd0a603a38fc6dcbf066569ac458e1d2b4ad97c4491634993cb0d62394a293
MD5 0ec46a031bd9fba1b3baad4784567f60
BLAKE2b-256 9d503ce8cc0695d03c0f5e3ea7f14a6f2f00e3c6affde09e1b3d4a2fb59e007d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-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/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d7c427b27467dbad42eafaee15be71a0d61d7052928384eaaef0bbff2224fbc
MD5 69672f67ebe50bc8219aec231ff9530b
BLAKE2b-256 1763fe32eab2b6de5bdbbf69afe6ee5fb2400242055f654d4effd8dc20d4be8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-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/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c23cbad76e38a639d15293f88090105c7bb3be9246f8760246aa76513122329c
MD5 9a8207b2fdd532de062f859e1ef5c866
BLAKE2b-256 90420f56797ffb62f7b4131bab500e2e311fe77b670fb6a89dfff48b394554d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27191394035cc12a5ecc0f412a6115e2a1cabf012b556717fb02ec6b3c227b24
MD5 03448eeb21f30c2322f4281db0d3ca4a
BLAKE2b-256 01d0306a7f5f7503f4df75d5e8c172455a8a63e63d8b4d309f4564f281bb77de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 467.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98c56353bfd6525f8aee9c4e7764184309d9f89afa6592ae90537a73ab05203f
MD5 268671dd71fa3b5dff85fd829427c648
BLAKE2b-256 27c1db4c4d677e4be9b02bea3054667048bfa3586143b83ea2c66f5bf64ad61c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 469.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3492b17cec867f769ac53277a5416f2e8e9b73ab0aac46c7b5dd6ad73dbd337b
MD5 c847442cb31dae9adf0f1634c0a83549
BLAKE2b-256 2658991ef1ac9846890ce5230fa1a62228966f099f9bf9895455f690bbd03365

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 475.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f9a2ebe31296632ea2138816a77204755b2f5a73e1d1dd79d318e456b19325b
MD5 3e96f1f906f9454d186cd9c8ce1ab920
BLAKE2b-256 0cf1ee4bfc0fbb37857d39605d90d04fe5ac1cfb1d110a0a719e3efa5e18fa8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 461.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbab4fa54af28397be987b33b8af67b1d8bbaa9e45411d0b56f76c540ec5a43c
MD5 b7a6826c1625d1faf7a5830237c2f16a
BLAKE2b-256 0622e4184ac310ed081d6d8f8aa1f0c04b9191062f2dbc43566503c51e05d3a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 467.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 320768a41bc4d5455dcf6ff9bf56075fc1b5c1ff866df4d8f0e4c01756403b78
MD5 21bc9dbc7c6b29711dc9a6da59a68728
BLAKE2b-256 b52cc8af4db7b56b3ca2b6f66b15105be9a377a8c4f3b0e00b6d1fe0fa2a23f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 452.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5e10d3aacc3838637530f2c45a70815c99aae613486116438152bd0e3f3f5796
MD5 d4fc7d6a0c4676c513830f7b40f34d38
BLAKE2b-256 e1a768c0be9f901e618dae5b7f2122879394c28bef8b6b6096b1b00d556fbeff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 461.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b25abf8b3dc6dbeb196892148c5749494379ff7ecb2d4174afe1ef90df9d6ec2
MD5 18931b7ef257b6417b138e96a8e25be1
BLAKE2b-256 ea8056f56c99cc81618fdc31a4ecb73556cf4c3078b495146714b2f895e338b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 378.6 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/53.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.9

File hashes

Hashes for pymongo-4.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a08894de674411d269067e9dc6a97c7c5dbcaa052853e3348b79c5227325cd01
MD5 505049dc4010c4b9002ab337c85f6771
BLAKE2b-256 c092bd369da3a2f6835964445a583e311535f6355b34bdab8898977fa96db0c2

See more details on using hashes here.

Supported by

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