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:

Mike Dirolf

Maintainer:

Bernie Hackett <bernie@mongodb.com>

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 2.6, 3.0, 3.2, 3.4, 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 2.7, 3.4+, PyPy, and PyPy3.5+.

WARNING Support for Python 2.7, 3.4 and 3.5 is deprecated. Those Python versions will not be supported by PyMongo 4.

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]

TLS / SSL support may require ipaddress and certifi or wincertstore depending on the Python version in use. The necessary dependencies can be installed along with PyMongo:

$ python -m pip install pymongo[tls]

OCSP (Online Certificate Status Protocol) requires PyOpenSSL, requests and service_identity:

$ 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]

Other optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1 and SCRAM-SHA-256. It especially improves performance on Python versions older than 2.7.8.

  • monotonic adds support for a monotonic clock, which improves reliability in environments where clock adjustments are frequent. Not needed in Python 3.

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
u'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), u'test'), u'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()
{u'x': 10, u'_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
u'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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongo-3.12.0.tar.gz (818.6 kB view details)

Uploaded Source

Built Distributions

pymongo-3.12.0-py2.7-macosx-10.14-intel.egg (804.0 kB view details)

Uploaded Source

pymongo-3.12.0-cp39-cp39-win_amd64.whl (397.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-3.12.0-cp39-cp39-win32.whl (391.8 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-3.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-3.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (534.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-3.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-3.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-3.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (514.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (498.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (525.1 kB view details)

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

pymongo-3.12.0-cp39-cp39-manylinux2014_x86_64.whl (531.9 kB view details)

Uploaded CPython 3.9

pymongo-3.12.0-cp39-cp39-manylinux2014_s390x.whl (534.8 kB view details)

Uploaded CPython 3.9

pymongo-3.12.0-cp39-cp39-manylinux2014_ppc64le.whl (539.7 kB view details)

Uploaded CPython 3.9

pymongo-3.12.0-cp39-cp39-manylinux2014_i686.whl (525.1 kB view details)

Uploaded CPython 3.9

pymongo-3.12.0-cp39-cp39-manylinux2014_aarch64.whl (531.8 kB view details)

Uploaded CPython 3.9

pymongo-3.12.0-cp39-cp39-manylinux1_x86_64.whl (514.1 kB view details)

Uploaded CPython 3.9

pymongo-3.12.0-cp39-cp39-manylinux1_i686.whl (525.1 kB view details)

Uploaded CPython 3.9

pymongo-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl (394.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-3.12.0-cp38-cp38-win_amd64.whl (397.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-3.12.0-cp38-cp38-win32.whl (391.7 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-3.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (545.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-3.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (548.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-3.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (553.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-3.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (543.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-3.12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (524.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (515.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (534.9 kB view details)

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

pymongo-3.12.0-cp38-cp38-manylinux2014_x86_64.whl (545.5 kB view details)

Uploaded CPython 3.8

pymongo-3.12.0-cp38-cp38-manylinux2014_s390x.whl (548.1 kB view details)

Uploaded CPython 3.8

pymongo-3.12.0-cp38-cp38-manylinux2014_ppc64le.whl (553.4 kB view details)

Uploaded CPython 3.8

pymongo-3.12.0-cp38-cp38-manylinux2014_i686.whl (535.0 kB view details)

Uploaded CPython 3.8

pymongo-3.12.0-cp38-cp38-manylinux2014_aarch64.whl (543.9 kB view details)

Uploaded CPython 3.8

pymongo-3.12.0-cp38-cp38-manylinux1_x86_64.whl (524.9 kB view details)

Uploaded CPython 3.8

pymongo-3.12.0-cp38-cp38-manylinux1_i686.whl (535.0 kB view details)

Uploaded CPython 3.8

pymongo-3.12.0-cp38-cp38-macosx_10_9_x86_64.whl (394.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-3.12.0-cp37-cp37m-win_amd64.whl (396.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-3.12.0-cp37-cp37m-win32.whl (391.1 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.4 kB view details)

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

pymongo-3.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (527.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-3.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (534.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-3.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-3.12.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (507.9 kB view details)

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

pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (498.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (514.8 kB view details)

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

pymongo-3.12.0-cp37-cp37m-manylinux2014_x86_64.whl (526.5 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.0-cp37-cp37m-manylinux2014_s390x.whl (527.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.0-cp37-cp37m-manylinux2014_ppc64le.whl (534.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.0-cp37-cp37m-manylinux2014_i686.whl (514.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.0-cp37-cp37m-manylinux2014_aarch64.whl (525.7 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.0-cp37-cp37m-manylinux1_x86_64.whl (508.0 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.0-cp37-cp37m-manylinux1_i686.whl (514.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.0-cp37-cp37m-macosx_10_6_intel.whl (428.5 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

pymongo-3.12.0-cp36-cp36m-win_amd64.whl (396.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.12.0-cp36-cp36m-win32.whl (391.1 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (523.3 kB view details)

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

pymongo-3.12.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (524.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

pymongo-3.12.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (531.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

pymongo-3.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pymongo-3.12.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (506.7 kB view details)

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

pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (497.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (513.3 kB view details)

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

pymongo-3.12.0-cp36-cp36m-manylinux2014_x86_64.whl (523.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.0-cp36-cp36m-manylinux2014_s390x.whl (524.7 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.0-cp36-cp36m-manylinux2014_ppc64le.whl (531.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.0-cp36-cp36m-manylinux2014_i686.whl (513.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.0-cp36-cp36m-manylinux2014_aarch64.whl (522.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.0-cp36-cp36m-manylinux1_x86_64.whl (506.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.0-cp36-cp36m-manylinux1_i686.whl (513.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.0-cp36-cp36m-macosx_10_6_intel.whl (425.7 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.12.0-cp35-cp35m-win_amd64.whl (396.8 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.12.0-cp35-cp35m-win32.whl (391.0 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.12.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (506.5 kB view details)

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

pymongo-3.12.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl (497.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.5+ i686

pymongo-3.12.0-cp35-cp35m-manylinux2014_x86_64.whl (522.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.0-cp35-cp35m-manylinux2014_s390x.whl (523.8 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.0-cp35-cp35m-manylinux2014_ppc64le.whl (531.0 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.0-cp35-cp35m-manylinux2014_i686.whl (512.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.0-cp35-cp35m-manylinux2014_aarch64.whl (521.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.0-cp35-cp35m-manylinux1_x86_64.whl (506.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.0-cp35-cp35m-manylinux1_i686.whl (512.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.0-cp35-cp35m-macosx_10_6_intel.whl (425.7 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.12.0-cp34-cp34m-win_amd64.whl (392.4 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.12.0-cp34-cp34m-win32.whl (389.2 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.12.0-cp34-cp34m-manylinux1_x86_64.whl (502.6 kB view details)

Uploaded CPython 3.4m

pymongo-3.12.0-cp34-cp34m-manylinux1_i686.whl (494.1 kB view details)

Uploaded CPython 3.4m

pymongo-3.12.0-cp34-cp34m-macosx_10_6_intel.whl (425.4 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl (502.6 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ x86-64

pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl (493.9 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ i686

pymongo-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl (502.6 kB view details)

Uploaded CPython 2.7mu

pymongo-3.12.0-cp27-cp27mu-manylinux1_i686.whl (493.9 kB view details)

Uploaded CPython 2.7mu

pymongo-3.12.0-cp27-cp27m-win_amd64.whl (392.8 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.12.0-cp27-cp27m-win32.whl (388.9 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.12.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (502.6 kB view details)

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

pymongo-3.12.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl (493.9 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.5+ i686

pymongo-3.12.0-cp27-cp27m-manylinux1_x86_64.whl (502.6 kB view details)

Uploaded CPython 2.7m

pymongo-3.12.0-cp27-cp27m-manylinux1_i686.whl (493.9 kB view details)

Uploaded CPython 2.7m

pymongo-3.12.0-cp27-cp27m-macosx_10_14_intel.whl (389.8 kB view details)

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

  • Download URL: pymongo-3.12.0.tar.gz
  • Upload date:
  • Size: 818.6 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.0

File hashes

Hashes for pymongo-3.12.0.tar.gz
Algorithm Hash digest
SHA256 b88d1742159bc93a078733f9789f563cef26f5e370eba810476a71aa98e5fbc2
MD5 f6d63edb3f1d92b5da8b46e7baa4d234
BLAKE2b-256 38f2f3e8be03c9994354a5e6c542b6cd76550127f202fcc3a328e1324ee68317

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-py2.7-macosx-10.14-intel.egg.

File metadata

  • Download URL: pymongo-3.12.0-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 804.0 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.0

File hashes

Hashes for pymongo-3.12.0-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 d1740776b70367277323fafb76bcf09753a5cc9824f5d705bac22a34ff3668ea
MD5 5775245b35dc0466a62dbca54e87e54c
BLAKE2b-256 855d587e1fd93b928998eccb40b303ce15a00811d95ec5f5f02c4bbdd1c371b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 397.4 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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3ce83f17f641a62a4dfb0ba1b8a3c1ced7c842f511b5450d90c030c7828e3693
MD5 ecd510e95e9158e0ea249a8babd37da3
BLAKE2b-256 739d2ab0027be0b5202e7f9264f1c47748f6a0b74752f66a64efc3710ade0b0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 391.8 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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2e92aa32300a0b5e4175caec7769f482b292769807024a86d674b3f19b8e3755
MD5 85f8ff056eb8e96ff70c56eae11b7a67
BLAKE2b-256 babb1d2ba81c687519684a3e46efbd0982eda42a76a2e32baafb3e3b83bf4c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19d4bd0fc29aa405bb1781456c9cfff9fceabb68543741eb17234952dbc2bbb0
MD5 cfdcc577abc2d99a025f56f83e946ced
BLAKE2b-256 678a3fa2090762a48a5f3544d188db456b93e23a16d177cf18434de9a246f216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd6ff2192f34bd622883c745a56f492b1c9ccd44e14953e8051c33024a2947d5
MD5 501f7b9818320c87f875ab7ed52ac71c
BLAKE2b-256 770f8167521f94401d2d211a8996725d0057bd708c1626bf8615f9fbd1b8280e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6d055f01b83b1a4df8bb0c61983d3bdffa913764488910af3620e5c2450bf83
MD5 fe6ed97840d8f3bee2bec7046b0ded30
BLAKE2b-256 0d0d3c212a95ae980065a018d5fc0fd512e9b3598cddf5ae8db0cf6bf9aacb9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd1f49f949a658c4e8f81ed73f9aad25fcc7d4f62f767f591e749e30038c4e1d
MD5 dd020bd419a92be93cd000db439a662a
BLAKE2b-256 d1fa719bb07efa8b7c9646ffaecc98576682f48a0604a24530dc6f8dc6a94f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6261bee7c5abadeac7497f8f1c43e521da78dd13b0a2439f526a7b0fc3788824
MD5 dddfcf54a24cb5fcec7bf88d73470908
BLAKE2b-256 cbd4fbab1bae1e90338b659a3452215f7c46a25ef5bae208d7758d9034f2d443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 498.5 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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b6055e0ef451ff73c93d0348d122a0750dddf323b9361de5835dac2f6cf7fc1
MD5 1c3563020f9571f70cba3ad3834bd31b
BLAKE2b-256 439e7f2fdfe86f1d59df51dad850cff821a67f4f780f4f9d8e85127507889ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24f8aeec4d6b894a6128844e50ff423dd02462ee83addf503c598ee3a80ddf3d
MD5 4985723c18282cd09a1098c3d1672be8
BLAKE2b-256 af325c679f7eddbded86bdcef2f1aabded2413c1ed54ad74bffeda5f9f6015b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 531.9 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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7a33322e08021c37e89cae8ff06327503e8a1719e97c69f32c31cbf6c30d72c
MD5 85518e5566c62ace8ef58f2abbc762de
BLAKE2b-256 9e21f1b17db80e9eaf2bcfe65b51755b1108444f2001e9db90c5643ab261ec62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 534.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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 701e08457183da70ed96b35a6b43e6ba1df0b47c837b063cde39a1fbe1aeda81
MD5 eabdfbc4a58f3ec0e1465e80bf788be2
BLAKE2b-256 de1ee6c8dea43864ff5ff6010b5db06af19b43a36612ebbe598f1a0ab1b6bbff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 539.7 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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b89dc51206e4971c5568c797991eaaef5dc2a6118d67165858ad11752dba055
MD5 20219cff5a7e804e3394f4015b0ddb75
BLAKE2b-256 30db68da4336b04fef94acbbf45781264c11ede6ee8143a300e98d85c6c877d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 525.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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a13661681d17e43009bb3e85e837aa1ec5feeea1e3654682a01b8821940f8b3
MD5 4c154a9e7e349fe67ab6ec4e601b2d8d
BLAKE2b-256 26e69a087a30e3aeb6935036e9cfe6bb2c63229cdb06405ce9f732f5de6e38bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 531.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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9ba2a63777027b06b116e1ea8248e66fd1bedc2c644f93124b81a91ddbf6d88
MD5 a61113f0ff192f5b16232121ad1a7c9a
BLAKE2b-256 525df99d7d51953b68ee6f31db5f2314573ec9f33ae0334333b6b0e344ed0eab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 514.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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 da8288bc4a7807c6715416deed1c57d94d5e03e93537889e002bf985be503f1a
MD5 4be734a49d06c674f50daa6df8ca5c30
BLAKE2b-256 8cc02a0c64581c0d3c20dae1ae4cd453b7afd28e80e9dd32ad97a9bb9eba7f2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 525.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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 845a8b83798b2fb11b09928413cb32692866bfbc28830a433d9fa4c8c3720dd0
MD5 89a112ed607fcb19cf6f0ec79a958844
BLAKE2b-256 0f32142ad030303d37dafe94bbbc3261cb02aca3d2d0f9cc4ecbdf04cc52b0ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 394.1 kB
  • Tags: CPython 3.9, 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.0

File hashes

Hashes for pymongo-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cda9e628b1315beec8341e8c04aac9a0b910650b05e0751e42e399d5694aeacb
MD5 6de54e756480768c688b3a8455dc2223
BLAKE2b-256 36ce57eaf6c7f93b15a13776680c07416076c0a672624181818050c02ec3f855

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 397.5 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a2239556ff7241584ce57be1facf25081669bb457a9e5cbe68cce4aae6567aa1
MD5 b48ee1e6811240f078a446e9909477d9
BLAKE2b-256 796afd8e6293a99c008ce138d99ff31c91994ce5ed672f92cd87ac8b0a9b8381

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 391.7 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5af390fa9faf56c93252dab09ea57cd020c9123aa921b63a0ed51832fdb492e7
MD5 1bf696f1d55b052f50359d124179051a
BLAKE2b-256 c78f68a9dc45b48ae001d49402ef09d573d41877fdc54dc005ea2ca620a59cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e66780f14c2efaf989cd3ac613b03ee6a8e3a0ba7b96c0bb14adca71a427e55
MD5 e8c97e0b7f994dd65442887dd33eba60
BLAKE2b-256 c42feaac72d21a47bf7ac9539f9faeb75c1b0e9941e94ce285c1b4cf688c1a98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2399a85b54f68008e483b2871f4a458b4c980469c7fe921595ede073e4844f1e
MD5 86d0210761b8adbca5addd452e1cceb8
BLAKE2b-256 3966ca8eee458bc21203af346aa84414c5699ea885256005447ab6763336bd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b772bab31cbd9cb911e41e1a611ebc9497f9a32a7348e2747c38210f75c00f41
MD5 580a3e79e63c9f456ce3acba36273b2d
BLAKE2b-256 883f1e1c34d2653b2d1fb4dd5f0af691ad2c383fa645aa2091d6bbf3bb81473c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 657ad80de8ec9ed656f28844efc801a0802961e8c6a85038d97ff6f555ef4919
MD5 035d448e7ec0ca4002681eb10c4cd4d5
BLAKE2b-256 2fcd32eb84949f5cfc3c080b7989e7f9012004b27e88d500b135c5501d613243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 db93608a246da44d728842b8fa9e45aa9782db76955f634a707739a8d53ff544
MD5 a01384c03f4a6f1473c7394659710b56
BLAKE2b-256 184b2a4f620bdf5cf1b8015db4e23b7dc46d731e0329d6283a2dbfe81812e262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 515.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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 070a4ef689c9438a999ec3830e69b208ff0d12251846e064d947f97d819d1d05
MD5 5e1fef3e984ea617ec892c0ec2cc8a8a
BLAKE2b-256 2374fb6f9aad10d6e5d1f68beea291c82fd23c8f1f4ee2da13555a124a3f70a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02dc0b0f48ed3cd06c13b7e31b066bf91e00dac5f8147b0a0a45f9009bfab857
MD5 c12cfca4c286eb84a7c6e2d2c8b5193e
BLAKE2b-256 078958c54eca4b119a216d4d335421c807d534cbf04c971e8f08861ad60a0e39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 545.5 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18290649759f9db660972442aa606f845c368db9b08c4c73770f6da14113569b
MD5 85903dc9c99ae33f0b97b6b2d3011726
BLAKE2b-256 a7368a46ee30616e2d789bb9bf552fc1d4675dd16afbf45dd52eaa49c6fac6ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 548.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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 208debdcf76ed39ebf24f38509f50dc1c100e31e8653817fedb8e1f867850a13
MD5 5cc0d6786a1362c6e8d3c4537d95087a
BLAKE2b-256 2736dcc898f6966cae74d05e9324e90a827d54741f24a4df1700b28ae11d20f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 553.4 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 246ec420e4c8744fceb4e259f906211b9c198e1f345e6158dcd7cbad3737e11e
MD5 0e0372484a902539e576eac69c7d690f
BLAKE2b-256 d05ddd98dcdaf2b152cda836bddf95ddce0fe531dbab4ed80720df769d096718

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 535.0 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39dafa2eaf577d1969f289dc9a44501859a1897eb45bd589e93ce843fc610800
MD5 65bf0da2945b9f3d5a8bae80a6074d9b
BLAKE2b-256 d9d4b293c3ce9ceaff1d3e22d2ca18dbd2818c217097929d0d12411d93c90299

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 543.9 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 053b4ebf91c7395d1fcd2ce6a9edff0024575b7b2de6781554a4114448a8adc9
MD5 eda73a53a681d6f4fe13cb775efe8d48
BLAKE2b-256 b0f5ea10de31e389f8bb024062e683830140ef1dd04b4fd095e95ac00b1c0be0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 524.9 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cc2894fe91f31a513860238ede69fe47fada21f9e7ddfe73f7f9fef93a971e41
MD5 6b3cc5d2ea166c0206e2b9907c15b3c4
BLAKE2b-256 ba3aea837307e36f8d182341b2cb21196b777f19681473040188cf9299721623

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 535.0 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9faf8d4712d5ea301d74abfcf6dafe4b7f4af7936e91f283b0ad7bf69ed3e3a
MD5 4012f16e99820ffa508d6d34e60cccd4
BLAKE2b-256 64441b558f24701b78689b1d06adb8fcde1e3260151c36e1f0632f42d839b496

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 394.4 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.0

File hashes

Hashes for pymongo-3.12.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c6a9948916a7bbcc6d3a9f6fb75db1acb5546078023bfb3db6efabcd5a67527
MD5 8d43422fc4b4363c546b66ce8e246166
BLAKE2b-256 2b912f0229cbdf99797dd054ad06001f50ec710fcc8122ac8cf653bd4dd73e77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 396.9 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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e018a4921657c2d3f89c720b7b90b9182e277178a04a7e9542cc79d7d787ca51
MD5 2000523482bf4d5e459427863a6f37e0
BLAKE2b-256 f0f673614cad83e38099d3464107660f2038497d24ba0b76de5a21fee9ef85ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 391.1 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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 94d38eba4d1b5eb3e6bfece0651b855a35c44f32fd91f512ab4ba41b8c0d3e66
MD5 1af60625231cc6546c027dff71474633
BLAKE2b-256 22bda7e23459337ca081acaeb2f8bcc16f5d60dce87ec1467195b271e852ee60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46d5ec90276f71af3a29917b30f2aec2315a2759b5f8d45b3b63a07ca8a070a3
MD5 3d6ad4910b5cea85da50f39e973e4405
BLAKE2b-256 53e0b1f1deabb4980b8901521e64f53b158a72409372045306db465b264a674a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6ea08758b6673610b3c5bdf47189286cf9c58b1077558706a2f6f8744922527
MD5 2e065bf434f299d9794afcea77643fe6
BLAKE2b-256 2005c8eca00a1776e8b2fe43fc968799dfc330f4333ef867275ca7c9e2132249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c72d08acdf573455b2b9d2b75b8237654841d63a48bc2327dc102c6ee89b75a
MD5 9434a6853eca9a6e9665ae6273593732
BLAKE2b-256 b459995b249c66af21ae46ddfc66ce2fa5d5fe95f5551d56e8b8f48b5b88dfd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec5ca7c0007ce268048bbe0ffc6846ed1616cf3d8628b136e81d5e64ff3f52a2
MD5 f1ba208bed14b321abe3b408637c98c8
BLAKE2b-256 764b217628b917b603f21d3bd9e6382f973fb5ef4089e03aa81b946652afa3ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eee42a1cc06565f6b21caa1f504ec15e07de7ebfd520ab57f8cb3308bc118e22
MD5 7aebcb3bd3a721ac1108ec26d3e205a3
BLAKE2b-256 4ce02d59464fccd9ee6f4e6183d8319862dacf3e91285a95030fc528fbbd263a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 498.8 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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1131562ddc2ea8a446f66c2648d7dabec2b3816fc818528eb978a75a6d23b2e
MD5 9c389ed199990a1dd20ec71c26074240
BLAKE2b-256 7bb859ebcaf8b0c78369c7cbf30a55bac33037a5597ce15e38f5307cf6cfe5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 625befa3bc9b40746a749115cc6a15bf20b9bd7597ca55d646205b479a2c99c7
MD5 d6bd2f254d3a6f6e1bddb2d53324b18c
BLAKE2b-256 f5f7d062a742be339b9dce52a0a4897d76f9ea340cd2b668787cc2c3d6029787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 526.5 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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f94c7d22fb36b184734dded7345a04ec5f95130421c775b8b0c65044ef073f34
MD5 de8af78953feaf4d2ec8064bf6b192dc
BLAKE2b-256 6ab92e3381b48a5eb90d5bacdc200e1b0b6c4e3b297907bff4c33b80022bad09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 527.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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1bab889ae7640eba739f67fcbf8eff252dddc60d4495e6ddd3a87cd9a95fdb52
MD5 ee3196378582c167df78a4f65a9e8c6a
BLAKE2b-256 5739ead5b8d55d7112bb2196e7d87998a858b87164b6dbc6c756a2befa814377

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 534.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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a752ecd1a26000a6d67be7c9a2e93801994a8b3f866ac95b672fbc00225ca91a
MD5 57c1b168570ad7ee3ecbb8cf9b25e778
BLAKE2b-256 be2c6f080d28447d20f6434b8c193e8731897098e74a073b1da86dc397878f46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 514.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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dbfbbded947a83a3dffc2bd1ec4750c17e40904692186e2c55a3ad314ca0222
MD5 1df6b843040539e41de3952378877920
BLAKE2b-256 e91f90e6c29d32d531a121a1f3c5cb7c8bb554104a4c2c95f2625109fd864118

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 525.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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6977a520bd96e097c8a37a8cbb9faa1ea99d21bf84190195056e25f688af73d
MD5 a7d640b9a86a839c3a0a2f4d0bbd752e
BLAKE2b-256 f059b1023bb62b215c69a238d6f5fe3abcff407d2627580d9e8e44d0c9dada5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 508.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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fe5872ce6f9627deac8314bdffd3862624227c3de4c17ef0cc78bbf0402999eb
MD5 46260989fffef7aa3b3cd8ca96a03bf8
BLAKE2b-256 f1e6ce8678199eb2922e15197a05555839f95d303a43cde8355ca4df7772a464

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 514.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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 af586e85144023686fb0af09c8cdf672484ea182f352e7ceead3d832de381e1b
MD5 a9612b308aaf05fd598e07a105514fac
BLAKE2b-256 68d3190f4142e7bc1d9f5d6de59759fa9b71967af3f53f285b03fdf50575c2f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 428.5 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b754240daafecd9d5fce426b0fbaaed03f4ebb130745c8a4ae9231fffb8d75e5
MD5 1bc25f6d33ecc636add15927b3f6d660
BLAKE2b-256 62d6bb6a12a05303a881c8d28106d2a9cf8ec1cc48f1a73cdc5448b001bbaa3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 396.9 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f2acf9bbcd514e901f82c4ca6926bbd2ae61716728f110b4343eb0a69612d018
MD5 73c4f72ed9442c3f3c16a3a334e92a1d
BLAKE2b-256 b82a929b73de5ef886bb9b62c3611cc4f9a10728b22a78661dd417399b84254f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 391.1 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d04ca462cb99077e6c059e97c072957caf2918e6e4191e3161c01c439e0193de
MD5 16dd94775e371902ebec78859784043c
BLAKE2b-256 868f8c3747c669129a9c99f07384033da1818b8fce1aed0c3a73bc02c8012507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78ecb8d42f50d393af912bfb1fb1dcc9aabe9967973efb49ee577e8f1cea494c
MD5 20ba601a7f9eae72b7a78ef4c7123ca5
BLAKE2b-256 46fe0d739f8c692893d6a4cb7346a36b6f36d19433e55e8b8fd1c865ff33380a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ced944dcdd561476deef7cb7bfd4987c69fffbfeff6d02ca4d5d4fd592d559b7
MD5 f663956bfbf670dc77a8cf4bef7c87f5
BLAKE2b-256 602731f354c68badf274210eff2ef916bbaf9b4139b995d5cd5062eb947a4ecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f55c1ddcc1f6050b07d468ce594f55dbf6107b459e16f735d26818d7be1e9538
MD5 fc3434572e96f26ab44d374a8c5bbb20
BLAKE2b-256 68081e74ea02e3ee948f129cd2aa5022b13966b5a2853edd8da646bdaabd5231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd3854148005c808c485c754a184c71116372263709958b42aefbef2e5dd373a
MD5 e104744cb0d5dd2d8269cb0150343fa6
BLAKE2b-256 ea1c1e8d65ca1dc0adce98a7d3bfa97f177f2053dff1c1a89462e9764c737591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bc9ac81e73573516070d24ce15da91281922811f385645df32bd3c8a45ab4684
MD5 ec4030e272b14a7208415df8ffaf4003
BLAKE2b-256 4eb0d523e7472203d2e415937bb7930471ff42a32854d1ee5b6057ffd2fd75b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 497.9 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8bf42d3b32f586f4c9e37541769993783a534ad35531ce8a4379f6fa664fba9
MD5 658eb240db409242c017a365474e4a7d
BLAKE2b-256 49b7d78e452f41ed9541f10825aa44e659dd2c708f6c972095fa1b56a4cf391e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1970cfe2aec1bf74b40cf30c130ad10cd968941694630386db33e1d044c22a2e
MD5 a392bea4d0edf8cfeab6059a42acdaa4
BLAKE2b-256 275c7f5232b52a69fcad26bff917e40fadfa09263bf413a6610c41bfdbca6767

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 523.3 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3b5b3cbc3fdf4fcfa292529df2a85b5d9c7053913a739d3069af1e12e12219f
MD5 d17f941a20c067a81c15f0645dc3e342
BLAKE2b-256 e4f2b642ead4654530a005cdc5fc7a6ca39cd431df2d7cbe97f30f96ec2b75a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 524.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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3566acfbcde46911c52810374ecc0354fdb841284a3efef6ff7105bc007e9a8
MD5 23c1d77a0c805d1f45c82713269081de
BLAKE2b-256 4f7c4abbfc75a845cc50e43ad7d2193b9bc499434d455cdd3ece87550455091d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 531.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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1c4874331ab960429caca81acb9d2932170d66d6d6f87e65dc4507a85aca152
MD5 5a62b12163e2763cb49e2a48b8baa756
BLAKE2b-256 e27e0598bbee72e11d74a8dbb187eed8481f90b0ffad6ca5e4ea648a80d68dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 513.3 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d73e10772152605f6648ba4410318594f1043bbfe36d2fadee7c4b8912eff7c5
MD5 a1354620f33257557896e77179ab0d20
BLAKE2b-256 00f5756d2a7bca3d51e3fb390274710772154eddbb78f07b3361a2e35732531c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 522.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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5cab230e7cabdae9ff23c12271231283efefb944c1b79bed79a91beb65ba547
MD5 ef45d698bf8369cd2ad053fec6b44c2f
BLAKE2b-256 9c51cfbcb092322554e9869a61fb82c5ebda7f81db24d2b56768e07204c1b704

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 506.8 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 48d5bc80ab0af6b60c4163c5617f5cd23f2f880d7600940870ea5055816af024
MD5 ddb56b42c9677f1e205b4816307262a2
BLAKE2b-256 859af6e9a047d8b03a246c7a6fbf6bccd060dc4b2fe44a961e0f5f51ce9e4cbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 513.3 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a325600c83e61e3c9cebc0c2b1c8c4140fa887f789085075e8f44c8ff2547eb9
MD5 ead3d48e2c3950eb30442f81d292c8a1
BLAKE2b-256 a64b771e614151bd609bdadfd6e7e2faf9db93555902cab6bcb3741f1501a852

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 425.7 kB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b542d56ed1b8d5cf3bb36326f814bd2fbe8812dfd2582b80a15689ea433c0e35
MD5 d1f7c80a2d6dc7a762e025d512517103
BLAKE2b-256 e9acd9a7bf24f67735c1a91748d359f4b91327eb31541af372c5d675ddde1413

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 396.8 kB
  • Tags: CPython 3.5m, 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a0e5dff6701fa615f165306e642709e1c1550d5b237c5a7a6ea299886828bd50
MD5 95e1e5367b5d7869eda825fb4420e100
BLAKE2b-256 2869cbbb7ebe668f955489274a72bd44423518602475641550d11253b588b57c

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 391.0 kB
  • Tags: CPython 3.5m, 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4ba0def4abef058c0e5101e05e3d5266e6fffb9795bbf8be0fe912a7361a0209
MD5 100a9398df97204b0ee3fcec03d09bd6
BLAKE2b-256 141e9dd72b0eca412277d7b2fe452c3fe9c50e4050cde42a1f50e7d13839a060

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fa8957e9a1b202cb45e6b839c241cd986c897be1e722b81d2f32e9c6aeee80b0
MD5 742e5b3920481272e72c480b2e84a160
BLAKE2b-256 a48a9e74246254e7e06363ee94f4f6faa106d9f2bd0273782966cf08895eadb8

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 497.7 kB
  • Tags: CPython 3.5m, 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 333bfad77aa9cd11711febfb75eed0bb537a1d022e1c252714dad38993590240
MD5 5bce833167fb3dd3df382c32330d43cd
BLAKE2b-256 47fc93675cd8186a062f1d135f511dbfd389d9eeeb9a625f05c907a87558f9e9

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 522.4 kB
  • Tags: CPython 3.5m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70761fd3c576b027eec882b43ee0a8e5b22ff9c20cdf4d0400e104bc29e53e34
MD5 116c4c4009789289d88f10f15d13ef2d
BLAKE2b-256 74058fbd6f397572d1552af41d9b96d692db03c776de2c926c0db0a2badab819

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux2014_s390x.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 523.8 kB
  • Tags: CPython 3.5m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 186104a94d39b8412f8e3de385acd990a628346a4402d4f3a288a82b8660bd22
MD5 156516d019bd339a61485da1aba74581
BLAKE2b-256 af8cfe94c4393748c8a41ffa74d5574c001bb919d0b69ad3bcbfe2d52f7cd6fc

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 531.0 kB
  • Tags: CPython 3.5m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11f9e0cfc84ade088a38df2708d0b958bb76360181df1b2e1e1a41beaa57952b
MD5 ffce50856164f9cbf30795bcdb778052
BLAKE2b-256 e00c1eb787e270e9a6d4076f6578a9952db555371d36a99f9806db9eb97ea083

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 512.4 kB
  • Tags: CPython 3.5m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c55782a55f4a013a78ac5b6ee4b8731a192dea7ab09f1b6b3044c96d5128edd4
MD5 6d8fe3b1bc5a126bd957943a035d5d6a
BLAKE2b-256 4262b8b8ca3824e9e7b17bf59cd37a9eb45ae7aec0cf85bc5159aab47be36e0c

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.6 kB
  • Tags: CPython 3.5m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a634a4730ce0b0934ed75e45beba730968e12b4dafbb22f69b3b2f616d9e644e
MD5 f67ea507499945ed1d2d05fc68c9a0f9
BLAKE2b-256 b57f2812643c0b52640285bf8ae76c5b99eaaf78b96b5a918e731f0fefca064a

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 506.6 kB
  • Tags: CPython 3.5m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cbf8672edeb7b7128c4a939274801f0e32bbf5159987815e3d1eace625264a46
MD5 ccf4bc8b4e3c98b7e566c661c65e738e
BLAKE2b-256 905f6a094d8f4fc3c743e6abb4680835a0e971e934f8fcd03f55e090fc6522d0

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 512.4 kB
  • Tags: CPython 3.5m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 73b400fdc22de84bae0dbf1a22613928a41612ec0a3d6ed47caf7ad4d3d0f2ff
MD5 f454954b5e4d821646ebc131def2cd3b
BLAKE2b-256 684d2058e486d01378f939aaf2bfddd2db5de4012dc17403dfc77dbdc33dd6dc

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 425.7 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 5e574664f1468872cd40f74e4811e22b1aa4de9399d6bcfdf1ee6ea94c017fcf
MD5 f56d01006c23d89d44a8d640e83c2988
BLAKE2b-256 17a9753724b6c38dde3a79763760e611839cc6f4f1a74e61d6a7040304346c95

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 392.4 kB
  • Tags: CPython 3.4m, 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.0

File hashes

Hashes for pymongo-3.12.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 ceae3ab9e11a27aaab42878f1d203600dfd24f0e43678b47298219a0f10c0d30
MD5 f1541b0052913176e7e9cdb88837801f
BLAKE2b-256 ac42b9a552ee4548272b706ea118c81856bff5d33cbb383e8d6c2a1c588e1cec

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp34-cp34m-win32.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 389.2 kB
  • Tags: CPython 3.4m, 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.0

File hashes

Hashes for pymongo-3.12.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 b0a0cf39f589e52d801fdef418305562bc030cdf8929217463c8433c65fd5c2f
MD5 d659c36594607f7f13b8d9ee3131206c
BLAKE2b-256 9dbfe3ce581f4a2cd67bb1ad73339b23fefcffda9a66858618684be727c540fd

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 502.6 kB
  • Tags: CPython 3.4m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d98ce3c42921bb91566121b658e0d9d59a9082a9bd6f473190607ff25ab637f
MD5 9045da56d1ed7f20a27a92090b85a9db
BLAKE2b-256 55a815aa1e90ae167ed025b035fe9cd7794e79f1d98096e6c82ab4c79a595927

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 494.1 kB
  • Tags: CPython 3.4m
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aaa038eafb7186a4abbb311fcf20724be9363645882bbce540bef4797e812a7a
MD5 adfcc6e15f6b39cee88e40123d46ba2b
BLAKE2b-256 023192d2ca39bd33c0889ad4c474bfd3bea141463bf5c9de18b7c6310f93195d

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp34-cp34m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 425.4 kB
  • Tags: CPython 3.4m, macOS 10.6+ intel
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6fb3f85870ae26896bb44e67db94045f2ebf00c5d41e6b66cdcbb5afd644fc18
MD5 f63d2709d767e4f9c1293a77ffdd0e9b
BLAKE2b-256 16ea4bcd562c40fbdd077a11bf5515e87dc870386640f2585df27cce5608ee04

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c188db6cf9e14dbbb42f5254292be96f05374a35e7dfa087cc2140f0ff4f10f6
MD5 f0c15e7cf6e7876c643736b798834046
BLAKE2b-256 a8f41ebad4860018e7d121aca7aa8e600ad2715b2ee3cb8be99a9ee57e80e2b1

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 2.7mu, 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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffbae429ba9e42d0582d3ac63fdb410338892468a2107d8ff68228ec9a39a0ed
MD5 09c4f95e5e8fb71c465e1ca2560c0916
BLAKE2b-256 a5fa8aa672de470893ea93e94abacdc887e60fe70d2f70d97bc763bcb768595e

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 502.6 kB
  • Tags: CPython 2.7mu
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 255a35bf29185f44b412e31a927d9dcedda7c2c380127ecc4fbf2f61b72fa978
MD5 92764764ddbfbb1a59b28910bb78b894
BLAKE2b-256 6a045fb5a4380978bf098880e7403a3e7b20679b05c4263b9ea040bd373a7834

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 2.7mu
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 316c1b8723afa9870567cd6dff35d440b2afeda53aa13da6c5ab85f98ed6f5ca
MD5 656d50ac637325c598bbc920be1f3661
BLAKE2b-256 d72fb37e324d2fa492b4d57684f5890b6a71d385e1713f707b7bb9e3d7ae0fdc

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 392.8 kB
  • Tags: CPython 2.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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e2b7670c0c8c6b501464150dd49dd0d6be6cb7f049e064124911cec5514fa19e
MD5 f667165d07ef424fea9f9c9cec02b0bc
BLAKE2b-256 03194382661087d250e6d16d94e63c22e95956bee61eb905dc43b56a9786bb66

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 388.9 kB
  • Tags: CPython 2.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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1bc6fe7279ff40c6818db002bf5284aa03ec181ea1b1ceaeee33c289d412afa7
MD5 d52a8734dad7e4b8c66a659a22cb5397
BLAKE2b-256 1136c83fe13583e309e5023e447125c96fdaee4736d7a6d80a14474bccb395d2

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.12.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dcd3d0009fbb6e454d729f8b22d0063bd9171c31a55e0f0271119bd4f2700023
MD5 edc692a68882c2637f733cde2e82b5b2
BLAKE2b-256 04bda884ee42672400cde6fdcfbfa7605fabb0cbdf5d2502225298289738ef5a

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 2.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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8a82e35d52ad6f867e88096a1a2b9bdc7ec4d5e65c7b4976a248bf2d1a32a93
MD5 dcf1cf9f66944ea07fdc7374107821ef
BLAKE2b-256 49a3b6792248d7cd0a1171cf307f4207f639d724b76856481486f89ae47145bc

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 502.6 kB
  • Tags: CPython 2.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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7412a36798966624dc4c57d64aa43c2d1100b348abd98daaac8e99e57d87e1d7
MD5 31a40e20c3ce76b6e399e7bf017ffa5f
BLAKE2b-256 d171a4a134c19783a52743aa71bf72eb7825e5f3bea5aaa15df952dd632df882

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 2.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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6e11ffd43184d529d6752d6dcb62b994f903038a17ea2168ef1910c96324d26
MD5 fa47d39c779a3b25422bd4e0c6c46b8d
BLAKE2b-256 0805ff5ee7fd55880e639e35621044004f8e884b063f39109e30812a05712106

See more details on using hashes here.

File details

Details for the file pymongo-3.12.0-cp27-cp27m-macosx_10_14_intel.whl.

File metadata

  • Download URL: pymongo-3.12.0-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 389.8 kB
  • Tags: CPython 2.7m, macOS 10.14+ intel
  • 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.0

File hashes

Hashes for pymongo-3.12.0-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 072ba7cb65c8aa4d5c5659bf6722ee85781c9d7816dc00679b8b6f3dff1ddafc
MD5 54c62879d4d2f55ff592e6a3c7bbd46f
BLAKE2b-256 75330380b94674bc321b3d16404f1e5e2218f568999e2cae81568cde7dad7968

See more details on using hashes here.

Supported by

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