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

Uploaded Source

Built Distributions

pymongo-3.12.1-py2.7-macosx-10.14-intel.egg (805.0 kB view details)

Uploaded Egg

pymongo-3.12.1-cp310-cp310-win_amd64.whl (398.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-3.12.1-cp310-cp310-win32.whl (392.8 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-3.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pymongo-3.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pymongo-3.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (525.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pymongo-3.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-3.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (508.3 kB view details)

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

pymongo-3.12.1-cp310-cp310-manylinux2014_x86_64.whl (533.5 kB view details)

Uploaded CPython 3.10

pymongo-3.12.1-cp310-cp310-manylinux2014_s390x.whl (536.2 kB view details)

Uploaded CPython 3.10

pymongo-3.12.1-cp310-cp310-manylinux2014_ppc64le.whl (541.2 kB view details)

Uploaded CPython 3.10

pymongo-3.12.1-cp310-cp310-manylinux2014_i686.whl (526.8 kB view details)

Uploaded CPython 3.10

pymongo-3.12.1-cp310-cp310-manylinux2014_aarch64.whl (533.4 kB view details)

Uploaded CPython 3.10

pymongo-3.12.1-cp310-cp310-manylinux1_i686.whl (526.8 kB view details)

Uploaded CPython 3.10

pymongo-3.12.1-cp310-cp310-macosx_10_9_universal2.whl (395.3 kB view details)

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

pymongo-3.12.1-cp39-cp39-win_amd64.whl (398.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-3.12.1-cp39-cp39-win32.whl (392.7 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-3.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-3.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-3.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (524.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-3.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-3.12.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (515.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-3.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (499.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-3.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (507.6 kB view details)

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

pymongo-3.12.1-cp39-cp39-manylinux2014_x86_64.whl (532.8 kB view details)

Uploaded CPython 3.9

pymongo-3.12.1-cp39-cp39-manylinux2014_s390x.whl (535.6 kB view details)

Uploaded CPython 3.9

pymongo-3.12.1-cp39-cp39-manylinux2014_ppc64le.whl (540.6 kB view details)

Uploaded CPython 3.9

pymongo-3.12.1-cp39-cp39-manylinux2014_i686.whl (526.0 kB view details)

Uploaded CPython 3.9

pymongo-3.12.1-cp39-cp39-manylinux2014_aarch64.whl (532.7 kB view details)

Uploaded CPython 3.9

pymongo-3.12.1-cp39-cp39-manylinux1_x86_64.whl (515.0 kB view details)

Uploaded CPython 3.9

pymongo-3.12.1-cp39-cp39-manylinux1_i686.whl (526.0 kB view details)

Uploaded CPython 3.9

pymongo-3.12.1-cp39-cp39-macosx_10_9_x86_64.whl (395.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pymongo-3.12.1-cp38-cp38-win_amd64.whl (398.3 kB view details)

Uploaded CPython 3.8Windows x86-64

pymongo-3.12.1-cp38-cp38-win32.whl (392.7 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-3.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (527.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pymongo-3.12.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (532.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pymongo-3.12.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pymongo-3.12.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pymongo-3.12.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (526.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

pymongo-3.12.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (516.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pymongo-3.12.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (517.5 kB view details)

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

pymongo-3.12.1-cp38-cp38-manylinux2014_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.8

pymongo-3.12.1-cp38-cp38-manylinux2014_s390x.whl (548.9 kB view details)

Uploaded CPython 3.8

pymongo-3.12.1-cp38-cp38-manylinux2014_ppc64le.whl (554.3 kB view details)

Uploaded CPython 3.8

pymongo-3.12.1-cp38-cp38-manylinux2014_i686.whl (535.8 kB view details)

Uploaded CPython 3.8

pymongo-3.12.1-cp38-cp38-manylinux2014_aarch64.whl (544.8 kB view details)

Uploaded CPython 3.8

pymongo-3.12.1-cp38-cp38-manylinux1_x86_64.whl (525.7 kB view details)

Uploaded CPython 3.8

pymongo-3.12.1-cp38-cp38-manylinux1_i686.whl (535.8 kB view details)

Uploaded CPython 3.8

pymongo-3.12.1-cp38-cp38-macosx_10_9_x86_64.whl (395.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pymongo-3.12.1-cp37-cp37m-win_amd64.whl (397.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymongo-3.12.1-cp37-cp37m-win32.whl (392.0 kB view details)

Uploaded CPython 3.7mWindows x86

pymongo-3.12.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pymongo-3.12.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (512.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pymongo-3.12.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (516.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pymongo-3.12.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pymongo-3.12.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (509.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

pymongo-3.12.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (500.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pymongo-3.12.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (498.4 kB view details)

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

pymongo-3.12.1-cp37-cp37m-manylinux2014_x86_64.whl (527.3 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.1-cp37-cp37m-manylinux2014_s390x.whl (528.7 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.1-cp37-cp37m-manylinux2014_ppc64le.whl (535.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.1-cp37-cp37m-manylinux2014_i686.whl (515.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.1-cp37-cp37m-manylinux2014_aarch64.whl (526.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.1-cp37-cp37m-manylinux1_x86_64.whl (508.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.1-cp37-cp37m-manylinux1_i686.whl (515.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.1-cp37-cp37m-macosx_10_6_intel.whl (429.4 kB view details)

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

pymongo-3.12.1-cp36-cp36m-win_amd64.whl (397.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymongo-3.12.1-cp36-cp36m-win32.whl (392.0 kB view details)

Uploaded CPython 3.6mWindows x86

pymongo-3.12.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pymongo-3.12.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

pymongo-3.12.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

pymongo-3.12.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pymongo-3.12.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (508.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.5+ x86-64

pymongo-3.12.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (499.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.5+ i686

pymongo-3.12.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (497.3 kB view details)

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

pymongo-3.12.1-cp36-cp36m-manylinux2014_x86_64.whl (524.2 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.1-cp36-cp36m-manylinux2014_s390x.whl (525.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.1-cp36-cp36m-manylinux2014_ppc64le.whl (532.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.1-cp36-cp36m-manylinux2014_i686.whl (514.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.1-cp36-cp36m-manylinux2014_aarch64.whl (523.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.1-cp36-cp36m-manylinux1_x86_64.whl (507.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.1-cp36-cp36m-manylinux1_i686.whl (514.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.1-cp36-cp36m-macosx_10_6_intel.whl (426.6 kB view details)

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

pymongo-3.12.1-cp35-cp35m-win_amd64.whl (397.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

pymongo-3.12.1-cp35-cp35m-win32.whl (392.0 kB view details)

Uploaded CPython 3.5mWindows x86

pymongo-3.12.1-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (507.9 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.5+ x86-64

pymongo-3.12.1-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl (499.1 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.5+ i686

pymongo-3.12.1-cp35-cp35m-manylinux1_x86_64.whl (507.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.1-cp35-cp35m-manylinux1_i686.whl (498.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.1-cp35-cp35m-macosx_10_6_intel.whl (426.6 kB view details)

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

pymongo-3.12.1-cp34-cp34m-win_amd64.whl (393.3 kB view details)

Uploaded CPython 3.4mWindows x86-64

pymongo-3.12.1-cp34-cp34m-win32.whl (390.0 kB view details)

Uploaded CPython 3.4mWindows x86

pymongo-3.12.1-cp34-cp34m-manylinux1_x86_64.whl (503.5 kB view details)

Uploaded CPython 3.4m

pymongo-3.12.1-cp34-cp34m-manylinux1_i686.whl (494.9 kB view details)

Uploaded CPython 3.4m

pymongo-3.12.1-cp34-cp34m-macosx_10_6_intel.whl (426.2 kB view details)

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

pymongo-3.12.1-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl (503.9 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.5+ x86-64

pymongo-3.12.1-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl (495.3 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.5+ i686

pymongo-3.12.1-cp27-cp27mu-manylinux1_x86_64.whl (503.4 kB view details)

Uploaded CPython 2.7mu

pymongo-3.12.1-cp27-cp27mu-manylinux1_i686.whl (494.8 kB view details)

Uploaded CPython 2.7mu

pymongo-3.12.1-cp27-cp27m-win_amd64.whl (393.7 kB view details)

Uploaded CPython 2.7mWindows x86-64

pymongo-3.12.1-cp27-cp27m-win32.whl (389.8 kB view details)

Uploaded CPython 2.7mWindows x86

pymongo-3.12.1-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (503.9 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.5+ x86-64

pymongo-3.12.1-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl (495.3 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.5+ i686

pymongo-3.12.1-cp27-cp27m-manylinux1_x86_64.whl (503.4 kB view details)

Uploaded CPython 2.7m

pymongo-3.12.1-cp27-cp27m-manylinux1_i686.whl (494.8 kB view details)

Uploaded CPython 2.7m

pymongo-3.12.1-cp27-cp27m-macosx_10_14_intel.whl (390.8 kB view details)

Uploaded CPython 2.7mmacOS 10.14+ Intel (x86-64, i386)

File details

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

File metadata

  • Download URL: pymongo-3.12.1.tar.gz
  • Upload date:
  • Size: 820.6 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-3.12.1.tar.gz
Algorithm Hash digest
SHA256 704879b6a54c45ad76cea7c6789c1ae7185050acea7afd15b58318fa1932ed45
MD5 63c41520ca455bc579367032ed780d0e
BLAKE2b-256 5f95de771196bfc9449097e2d03aedc117d0f7a67a93be7e69b34d7b5e3e9bb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 805.0 kB
  • Tags: Egg
  • 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-3.12.1-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 c04e84ccf590933a266180286d8b6a5fc844078a5d934432628301bd8b5f9ca7
MD5 e0633c42842200da4c26c65a84f0b261
BLAKE2b-256 ecf0e38002a9218c973b777d34ee50fc20b7ed70cfa673f4ebda8f7bcbc1bb93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 398.3 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-3.12.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f87f53c9cd89010ae45490ec2c963ff18b31f5f290dc08b04151709589fe8d9
MD5 d8a55a781011a130c6e3eda93a2405fc
BLAKE2b-256 fac389ce60a3e70d71c6d09e1b7c3f63e436c14f37f411a36fb770cf1f448095

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 392.8 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-3.12.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4f4bc64fe9cbd70d46f519f1e88c9e4677f7af18ab9cd4942abce2bcfa7549c3
MD5 d85331efd208d703076a9a138e895f9f
BLAKE2b-256 a5da3c1890d5c3b6d24cd2d7d56b9aa4030e0ead3699b56f24abeaa11f2b202a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f5fe59328838fa28958cc06ecf94be585726b97d637012f168bc3c7abe4fd81
MD5 b7eb6cd861bb9f8441ee5f769d8b95d5
BLAKE2b-256 f933107e590ec0f680ee56c8d52d4ad197bf5ea14765f599bb5ce1706051d0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 adb37bf22d25a51b84d989a2a5c770d4514ac590201eea1cb50ce8c9c5257f1d
MD5 4c43dd4615ac6ff081a9fd511bd1755d
BLAKE2b-256 e8cfe0ee3ba544fd3842d4e1352acba6967925d3fd90bebf754252a6e72e0d7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0947d7be30335cb4c3d5d0983d8ebc8294ae52503cf1d596c926f7e7183900b
MD5 814ceda842bf9d9187ab9da9d3b59f2a
BLAKE2b-256 c06911b64dd0283394f858b314cf906a7a3b978d082078dd1044f094b384a9de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe16517b275031d61261a4e3941c411fb7c46a9cd012f02381b56e7907cc9e06
MD5 03e5f0dddb674dc32c25dfcacc82d5d3
BLAKE2b-256 ab8bb5f3fac417fb19187bad19b53588fd35fb62fb26a511100c467a17646947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87114b995506e7584cf3daf891e419b5f6e7e383e7df6267494da3a76312aa22
MD5 dacf7296847fdbcd38c1482521128c74
BLAKE2b-256 59bd99311b598e25033fbfa92b77cd5d28681bb947f14791a1543e02a12bc987

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 533.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-3.12.1-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a472ca3d43d33e596ff5836c6cc71c3e61be33f44fe1cfdab4a1100f4af60333
MD5 56441a30468588850d6b31d85e372a5d
BLAKE2b-256 bd333646d003c80b5bbeaf58ce54e03713714eb436111d901f6272b41011598f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-manylinux2014_s390x.whl
  • Upload date:
  • Size: 536.2 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-3.12.1-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 180b405e17b90a877ea5dbc5efe7f4c171af4c89323148e100c0f12cedb86f12
MD5 7feb393dc309792e0258b8e61f5722e4
BLAKE2b-256 c07bdfaaaf62ba78703b8d7c67c9c42b2be4c5a4cee0aa8877b0eb2f02b92b10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 541.2 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-3.12.1-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa434534cc91f51a85e3099dc257ee8034b3d2be77f2ca58fb335a686e3a681f
MD5 b5b3f1f2f73f2108cbf49b1bf4de8039
BLAKE2b-256 d46dd46ca9588001e9fc9ef8efd83ce3fa78d481038ba2474d0ef97805ac66c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-manylinux2014_i686.whl
  • Upload date:
  • Size: 526.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-3.12.1-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc4749c230a71b34db50ac2481d9008bb17b67c92671c443c3b40e192fbea78e
MD5 2aa684794db1d44f4b765888c48e2ffa
BLAKE2b-256 c95c60e02f73555b8d0e4403cec35dcfa3e56246f7b927b547636522c185bc7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 533.4 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-3.12.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 891f541c7ed29b95799da0cd249ae1db1842777b564e8205a197b038c5df6135
MD5 347ad15b933ee7d80c88aa39e2b64c2e
BLAKE2b-256 420770cc089d00d4dac2bb7d9b4cf1d40659c3b963a81b3c21a8590aa69c474c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-manylinux1_i686.whl
  • Upload date:
  • Size: 526.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-3.12.1-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 45d6b47d70ed44e3c40bef618ed61866c48176e7e5dff80d06d8b1a6192e8584
MD5 20b340047ef1b20a7373f681cdd27d1d
BLAKE2b-256 1c23fc8602e2021c25af5caed3a0d237d33ba061b8e133bb49eede84709d5caa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 395.3 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-3.12.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 02e0c088f189ca69fac094cb5f851b43bbbd7cec42114495777d4d8f297f7f8a
MD5 965562202f90bcbaff24501642a43f63
BLAKE2b-256 cbb9a2ee4253bea1864b71dd658406c735d340054d7ee75fc56157e57f130a12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 398.2 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-3.12.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 979e34db4f3dc5710c18db437aaf282f691092b352e708cb2afd4df287698c76
MD5 bba529f1af5c4929f10c5ba243818b1d
BLAKE2b-256 beb6c3317723a1945e3602d2b027c86a5e84fda8c4ab2be9e8de42b62ec37399

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 392.7 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-3.12.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 77dddf596fb065de29fb39992fbc81301f7fd0003be649b7fa7448c77ca53bed
MD5 a9cccb00d1a5e7af9a48d83522ca6d09
BLAKE2b-256 720a7c3a9748da8da8ac98f1eaea33b0cd03c4d8846ad9bc3f84cb251e9529e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1e6d1cf4bd6552b5f519432cce1530c09e6b0aab98d44803b991f7e880bd332
MD5 709dba5e257d3b7b941d24ff21925fd6
BLAKE2b-256 d0c5e2ca665d150fd670dc65a46033d2f29473331fa7c22132c7738e91a99867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5d6428b8b422ba5205140e8be11722fa7292a0bedaa8bc80fb34c92eb19ba45
MD5 aa423dea1a367288caa41818d5c4d496
BLAKE2b-256 ef78f5a4b22b5ff8d81b3b26bbe7f92192886aeeecc50d926606e3df943bdd0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6235bf2157aa46e53568ed79b70603aa8874baa202d5d1de82fa0eb917696e73
MD5 e52d5ac35f9d0aad104c754f07991050
BLAKE2b-256 426c8d699a8a5349a50d7feae89ae0c4cdac9c10e9f9ba5ad7eca1de1e471a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fda3b3fb5c0d159195ab834b322a23808f1b059bcc7e475765abeddee6a2529
MD5 d85b6b77d910f7eba0549e76f781d6b8
BLAKE2b-256 3c3a361095635b308fc43316bc342b81110463ce2e213b2c6ff5273a6319dae6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 515.5 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-3.12.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f07888e3b73c0dfa46f12d098760494f5f23fd66923a6615edfe486e6a7649c
MD5 c08338c5e5ef9e3c612c52d16c756614
BLAKE2b-256 5000633aeaf48cc87651e4e3da1eaf0034cc6b06adcc357f9a174bf1082e22e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 499.9 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-3.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a2d73a9281faefb273a5448f6d25f44ebd311ada9eb79b6801ae890508fe231
MD5 e65d4bdc6afb3ac77a357aa0c26c158a
BLAKE2b-256 cc8a66754f4276694ce797c8c16dd6b87c9d3d58df3950bfafba7d754bd85b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 287c2a0063267c1458c4ddf528b44063ce7f376a6436eea5bccd7f625bbc3b5e
MD5 39d54573d7fce3b9ccd0dc368732a1fb
BLAKE2b-256 2cace41cebd481123386a2d94e6ae5d211b41bd72f7989464e216aa82a35f09f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 532.8 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-3.12.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17238115e6d37f5423b046cb829f1ca02c4ea7edb163f5b8b88e0c975dc3fec9
MD5 97a7880795a9e5cf432d87dc2979c7e4
BLAKE2b-256 3074ecfe4570ef644b6de30bac0f058554431769c2993b2915d602fb36a828e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 535.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-3.12.1-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed751a20840a31242e7bea566fcf93ba75bc11b33afe2777bbf46069c1af5094
MD5 192e2956fef4136f0569dbbcf54d6b33
BLAKE2b-256 0327119f3b98535d3e78c1c42dc0110e2171789b8f4228fd842e55acfd438a5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 540.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-3.12.1-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb65ec0255a0fccc47c87d44e505ef5180bfd71690bd5f84161b1f23949fb209
MD5 fb99af24cb45935f83cfcf699d0323d2
BLAKE2b-256 86b25282e02baba2faa75f55bb80365e22db023d6f2d348e7a855ff728f4ac11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 526.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-3.12.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2fa101bb23619120673899694a65b094364269e597f551a87c4bdae3a474d726
MD5 f31df8b87a538e3ac9aecb4e21f8144d
BLAKE2b-256 8171c0b1764a9ba6e2d78a15cd2c15090fdb99275914d1bb1626257e1751c559

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 532.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-3.12.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c4e51a3b69789b6f468a8e881a13f2d1e8f5e99e41f80fd44845e6ec0f701e1
MD5 4d80653a8c86da03e8089a9780755c65
BLAKE2b-256 2e81cb32ba31bdd672e74901b4648ddbbb1f81eb539e7de8f523def9291f82a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 515.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-3.12.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5067c04d3b19c820faac6342854d887ade58e8d38c3db79b68c2a102bbb100e7
MD5 d68578cd11b488ac802fe3b97469a9bf
BLAKE2b-256 6bc5c1808bbf3007ffba0db043a1229e45b3627a5954f9d8b214e3f2d9e1999c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 526.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-3.12.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bfd073fea04061019a103a288847846b5ef40dfa2f73b940ed61e399ca95314f
MD5 86a13bd0db8e4744405ae54b0c0e41c9
BLAKE2b-256 454ef93ee2573240f3d639bef57d4d5dd42ac06ace9eeb3123a8cd63384bd73c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 395.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-3.12.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db3efec9dcecd96555d752215797816da40315d61878f90ca39c8e269791bf17
MD5 4bfd6a06983d394ac1a396808e2ccf72
BLAKE2b-256 01ee79c8ad172623e0635fbfd44443a347feab5d13f9e7e3398c60c3f48102e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 398.3 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-3.12.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 58a67b3800476232f9989e533d0244060309451b436d46670a53e6d189f1a7e7
MD5 b33f1497ed23b6fa1a91e6df54593bca
BLAKE2b-256 665fa15565e6ee9c1832575121935ce5915d5d024f052d8f919d065c9f7aabc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 392.7 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-3.12.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3b40e36d3036bfe69ba63ec8e746a390721f75467085a0384b528e1dda532c69
MD5 b059f27a1d2792d88db2129b4881d207
BLAKE2b-256 14281edf16b5db8492a9e8d139513ebf8eb6255a465ccf7b2c302c290be49feb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13d74bf3435c1e58d8fafccc0d5e87f246ae2c6e9cbef4b35e32a1c3759e354f
MD5 fbc99571d6d7db5f52d18d5117b6d678
BLAKE2b-256 3f9808832cab7285bbc8142a1293505a9edf3eeb92929079c8b6e14804b4efbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68409171ab2aa7ccd6e8e839233e4b8ddeec246383c9a3698614e814739356f9
MD5 2f2430b8342f399493ba3bd69b6e4fa8
BLAKE2b-256 1257f5337d985d5acbe36fa5eb483f9c5dde944dc98b45ab80298fd516ecce02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb48ff6cc6109190e1ccf8ea1fc71cc244c9185813ce7d1c415dce991cfb8709
MD5 0a9289ed4773a0467fad6b08060f7044
BLAKE2b-256 a742b0267b7c9a54338aaec07d7526f82a461ba8cce0a2262e5604b4a530b536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7430f3987d232e782304c109be1d0e6fff46ca6405cb2479e4d8d08cd29541e
MD5 d9571193a828c6e2255789381480b65d
BLAKE2b-256 1cb34f8286fa0b3f064342e75516c2da366399d81df43fd7761a4ea8e7513728

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 526.2 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-3.12.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 65f159c445761cab04b665fc448b3fc008aebc98e54fdcbfd1aff195ef1b1408
MD5 9ca181bd222e0117861ba3fa0022bb08
BLAKE2b-256 9b96f3d2755edf68786577d0965fd8adec3bc3fd722927f4059f3a5be76e6602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 516.7 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-3.12.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5183b698d6542219e4135de583b57bc6286bd37df7f645b688278eb919bfa785
MD5 5ed76328a8ecf04bac675e6fce1ffe1e
BLAKE2b-256 89ae14133967fb89664680922075b7ee6c68c9eb2b3ba888aa629703285a1350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 849e641cfed05c75d772f9e9018f42c5fbd00655d43d52da1b9c56346fd3e4cc
MD5 fb9177f685b715147f13a4875a6a12e2
BLAKE2b-256 950460b291c76b3f8d9a2c333c508dd7720afed173fb5c56a645ff3322bc8e33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 546.4 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-3.12.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7abc87e45b572eb6d17a50422e69a9e5d6f13e691e821fe2312df512500faa50
MD5 c86848fb4881c65a83ffd460f55d6caf
BLAKE2b-256 41bd27f65c55a76266932a33bbf31374ae9ab6b2b839f5a79b7422561835eddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 548.9 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-3.12.1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 138248c542051eb462f88b50b0267bd5286d6661064bab06faa0ef6ac30cdb4b
MD5 a425db75454665588459e923d50765da
BLAKE2b-256 3b91724904c37f2621dea7e1e0eb21b5255271a85aa948b12935424a9404e0f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 554.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-3.12.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6eb6789f26c398c383225e1313c8e75a7d290d323b8eaf65f3f3ddd0eb8a5a3c
MD5 8867863e0f99d5816456fd9a5556c77a
BLAKE2b-256 39b205605bdaeb7fe6521e28c58969115c4ff7b7236065b2c1338240db2af1c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 535.8 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-3.12.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7117bfd8827cfe550f65a3c399dcd6e02226197a91c6d11a3540c3e8efc686d6
MD5 bd5ad865cbf20c5dc33648285b4f05e2
BLAKE2b-256 92c25824b04ac9412caf772d7e3ccddafbef770a458c4e1a23fa4bb1b36f4d18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 544.8 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-3.12.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 573e2387d0686976642142c50740dfc4d3494cc627e2a7d22782b99f70879055
MD5 efe7efb7ce8339dbc4860e129411e7c0
BLAKE2b-256 d7b6c69b1b70612654890eb13f652c704997572b97d7589b13091269d61b6c9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 525.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-3.12.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6c6989c10008ac70c2bb2ad2b940fcfe883712746c89f7e3308c14c213a70d7
MD5 bfa8e4f76b0ca2d77c7b0268ecba55ae
BLAKE2b-256 a548c5e2467e6864cd455f457bd35689eb4786cac91b5b0ae28d9df50e4b415d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 535.8 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-3.12.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 48722e91981bb22a16b0431ea01da3e1cc5b96805634d3b8d3c2a5315c1ce7f1
MD5 1829bcfd6f07f71fea5ea841f375de33
BLAKE2b-256 20180fd74a428e9549ff8072cda32eb137dc68f0223f5d4726c2869ec95d127f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 395.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-3.12.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b62d84478f471fdb0dcea3876acff38f146bd23cbdbed15074fb4622064ec2e
MD5 b94d39e7919f22a9f3feccd01b6cc160
BLAKE2b-256 0707eb4d31571a211fc9d5e62d254f6b4659ce16b792dc9fb0e1fbc3d9dd9513

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 397.7 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-3.12.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dcf906c1f7a33e4222e4bff18da1554d69323bc4dd95fe867a6fa80709ee5f93
MD5 15c2afe8155e68766af1a07713e01d58
BLAKE2b-256 d73e22347ad4df285e8c72c0b1c1d0629b9fdbe2fb311b538fc15a6c5e0269d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 392.0 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-3.12.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 afb16330ab6efbbf995375ad94e970fa2f89bb46bd10d854b7047620fdb0d67d
MD5 039b39ad0265bd9a1a4b2d7ef81ddba6
BLAKE2b-256 99a8eca097f872f761a90cfaa2885d07bab000bebd8701def099f211be787588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15dae01341571d0af51526b7a21648ca575e9375e16ba045c9860848dfa8952f
MD5 cd64649391fbeff8bea100fd25a05450
BLAKE2b-256 109061c9859c7740493a43b91a24e8009534eb7821d0bae5bf02f0171778792c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1821ce4e5a293313947fd017bbd2d2535aa6309680fa29b33d0442d15da296ec
MD5 2054f0bc88f6191fa5678afb7e5d77ff
BLAKE2b-256 4bc88f252ffdb06be9d811b2ff83fab8fa24941de0cf7434b9df0e447ff360f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 303531649fa45f96b694054c1aa02f79bda32ef57affe42c5c339336717eed74
MD5 c97a63da3c257ca86186b46f0674cd95
BLAKE2b-256 21bc6f77482929dc5cfcf7f8f0c59ab12e04ef73227131e09883fcb960ae2f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2174d3279b8e2b6d7613b338f684cd78ff7adf1e7ec5b7b7bde5609a129c9898
MD5 1534cf226e24834a2bcbd1bba8454440
BLAKE2b-256 4701f884c16aac2ae7c88f02fddae6c0220c466a0b4f537fff9f03fd54a8942b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f0f0a10f128ea0898e607d351ebfabf70941494fc94e87f12c76e2894d8e6c4
MD5 ccb36c16e535650327ecf55284ca059a
BLAKE2b-256 73abd2890e632559fca7686cad394dff5119ee5b9e87d38f92ed7b12a34aa634

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 500.1 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-3.12.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f44bea60fd2178d7153deef9621c4b526a93939da30010bba24d3408a98b0f79
MD5 5d23c379ef1b1859a0fc1d44424d09f9
BLAKE2b-256 80754af0e76cf2ad84e966fc0c22f440067e5a2c55d49fcee68a0a1e475d88e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fcc021530b7c71069132fe4846d95a3cdd74d143adc2f7e398d5fabf610f111c
MD5 432ad4ea6b3b3f6ea24b12ea68fe9725
BLAKE2b-256 3b755f9d3bc3c574df1d3a4a41f03f89865221b7edfdbeda739056838de4525b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 527.3 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-3.12.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 837cdef094f39c6f4a2967abc646a412999c2540fbf5d3cce1dd3b671f4b876c
MD5 9ba71afd2e5c10cb503878c073a360b9
BLAKE2b-256 eda3eb6f1fe5299ba556be2c7d3d79bd6a387c6a8adf7246967eabf7eada9287

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 528.7 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-3.12.1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81ce5f871f5d8e82615c8bd0b34b68a9650204c8b1a04ce7890d58c98eb66e39
MD5 0d07a05b47e3feb55f65f32ada567817
BLAKE2b-256 2efd31b5fb87cfaa1b43f61e97ed05c74af40f693ae1e700ac70490d0b0e39a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 535.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-3.12.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 444c00ebc20f2f9dc62e34f7dc9453dc2f5f5a72419c8dccad6e26d546c35712
MD5 0dc4720598472efe3b43dd7913a2997a
BLAKE2b-256 fc8a9f9ce0a2c7e812ebebb4661de205643225a1bbda8cfa3a34905ba31c3514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 515.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-3.12.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a7b138a04fdd17849930dc8bf664002e17db38448850bfb96d200c9c5a8b3a1
MD5 a96323f0722916a39ce365928484a6bf
BLAKE2b-256 8dac85c17971e0a91cb462118579fe58b32b721e11927e2f0e23ccfa0c1b71ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 526.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-3.12.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f43cacda46fc188f998e6d308afe1c61ff41dcb300949f4cbf731e9a0a5eb2d3
MD5 4b92f4103b27f0dd076693959651458d
BLAKE2b-256 df86a895f8c69090ae906fecdf3d5b18f68f9cf82819faebef67d5874b28463f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 508.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-3.12.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 51437c77030bed72d57d8a61e22758e3c389b13fea7787c808030002bb05ca39
MD5 36ff2406c37bd0b4a6864f0b3e1aece6
BLAKE2b-256 6b62771485a41ce87c884096b6290ed359bf0e99cd7242c830b889684daced4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 515.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-3.12.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d8cdd2f070c71366e64990653522cce84b08dc26ab0d1fa19aa8d14ee0cf9ba
MD5 41dbdeac0906d786901c07a0f527061e
BLAKE2b-256 1859a0afeaec9683d5e0f4bfa4dd90aa44f0c1178d3d2843f4ab26f5709ea7f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 429.4 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-3.12.1-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8851544168703fb519e95556e3b463fca4beeef7ed3f731d81a68c8268515d9d
MD5 67c9c7ad96aea2277dbd99b676789281
BLAKE2b-256 58279f3edfa4861335106cbc4cfce47babb3b21c9ff76d430dc35b21fea58c39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 397.6 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-3.12.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 87db421c9eb915b8d9a9a13c5b2ee338350e36ee83e26ff0adfc48abc5db3ac3
MD5 70892bb3760ac117c815494606a5420a
BLAKE2b-256 7deba06748b1438339326843793fa2d293d150ec9fca1a32c330a1cb5327b4c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 392.0 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-3.12.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a5dbeeea6a375fbd79448b48a54c46fc9351611a03ef8398d2a40b684ce46194
MD5 a22d6d754e4c74e51a9f41085f4a8df5
BLAKE2b-256 157f23e55b01bf4837b4aa0faae4be1a48f4bf41b998c8efce88a4ed2798fd1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13a7c6d055af58a1e9c505e736da8b6a2e95ccc8cec10b008143f7a536e5de8a
MD5 d4fde00f2ba0f24db8570f5f7db07bf0
BLAKE2b-256 b25ca639ff376e538d1d55ea2d3c7f83c54318767d2e4615f5e55e07d2737645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9641be893ccce7d192a0094efd0a0d9f1783a1ebf314b4128f8a27bfadb8a77c
MD5 f0d85b548583f9ccf85fa67f31549665
BLAKE2b-256 28aae31bb50cabd96eb59831856dd0e61efda5211c69a28fd2d1e6673fb86dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe3ae4294d593da54862f0140fdcc89d1aeeb94258ca97f094119ed7f0e5882d
MD5 be6fa2e935c6dd9ba43f869800d15721
BLAKE2b-256 335476988c075b4c1e3d0f31391d42070d5d25359ebee3fda52d23fcd915c8a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e30cce3cc86d6082c8596b3fbee0d4f54bc4d337a4fa1bf536920e2e319e24f0
MD5 ea4be3005886d0f3494db3ba422379c8
BLAKE2b-256 2dd179084c72a0598b080b6fd07db4c2e0c5986cca987fd6fb59b0f16e0dab79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ead0126fb4424c6c6a4fdc603d699a9db7c03cdb8eac374c352a75fec8a820a
MD5 cb28514e8881b27bf8b32ce674713986
BLAKE2b-256 36781288853711697f259867bc06c19ecccdff960fa9abc13d68fd7e204f2dc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 499.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-3.12.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e841695b5dbea38909ab2dbf17e91e9a823412d8d88d1ef77f1b94a7bc551c0f
MD5 9695364d8224f6a4672b82bd70ea324a
BLAKE2b-256 72e518701ea2985982fb1aea20b899f8490f7e655ec5118d0073709aa2c541c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25fd76deabe9ea37c8360c362b32f702cc095a208dd1c5328189938ca7685847
MD5 414fde9054706abb82548910dcd6cdd8
BLAKE2b-256 b0aec529a0450eda486214ae414b7008aeb8ea736c319ee0622bf36840c8575f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 524.2 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-3.12.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d3abe548a280b49269c7907d5b71199882510c484d680a5ea7860f30c4a695f
MD5 bac0dcc15eb45f3a054e471cd436aa60
BLAKE2b-256 08a2af9e9352a5e3e9cb1c27ee352c4279d51b606ed7214b011f7439e877054b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 525.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-3.12.1-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef8b927813c27c3bdfc82c55682d7767403bcdadfd9f9c0fc49f4be4553a877b
MD5 afd8acc6bada1d2ce555f1a2f09681c9
BLAKE2b-256 4d1d8e9c36520be94d23bd8d532cef4e511eb8f400dcf9a763d1d8aca5b6238e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 532.8 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-3.12.1-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2bccadbe313b11704160aaba5eec95d2da1aa663f02f41d2d1520d02bbbdcd5
MD5 4dede45b6155ff30c6b4d2e8eca8b7ba
BLAKE2b-256 9ed997bb749df2362ae2daa2477cc67a23b79d7d377105f0bdafd44700f3dcbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 514.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-3.12.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed20ec5a01c43254f6047c5d8124b70d28e39f128c8ad960b437644fe94e1827
MD5 34329c36e630360fea545b1f0ea7252b
BLAKE2b-256 a79362775fa551f31e179c85b386edeee54d21e107f5695779939ce418911dcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 523.4 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-3.12.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 515e4708d6567901ffc06476a38abe2c9093733f52638235d9f149579c1d3de0
MD5 940edc3220dff3a47f5f375b2cc6fb02
BLAKE2b-256 823f411b6ce48d6b15d8f9c18575a81268dedf65bb97744406a5c9afec6dec56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 507.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-3.12.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 67e0b2ad3692f6d0335ae231a40de55ec395b6c2e971ad6f55b162244d1ec542
MD5 9ffcf0f4b46cc6d2fbebd68db6adfeba
BLAKE2b-256 397351d739c0c7fa238ab79269b5ce413e6ac60ce0bbae0ed8afed261d52861a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 514.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-3.12.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d55982e5335925c55e2b87467043866ce72bd30ea7e7e3eeed6ec3d95a806d4
MD5 87b05a5fdee37803cf32fb3fbcf0c41a
BLAKE2b-256 8fb87b8c7d8d1f5cf8596d669baf3d74c6b900bc14dcded916f2f73555b2a750

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 426.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-3.12.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 460bdaa3f65ddb5b7474ae08589a1763b5da1a78b8348351b9ba1c63b459d67d
MD5 139f150f6b977cad808515d67aad94de
BLAKE2b-256 b8f7b4f6c48b64a3bd01a0827939a15cc8d66f47630961236aebc44a638a15be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 397.6 kB
  • Tags: CPython 3.5m, 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-3.12.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c660fd1e4a4b52f79f7d134a3d31d452948477b7f46ff5061074a534c5805ba6
MD5 13eb4c04ca775e01b1b9edc9f2d95864
BLAKE2b-256 8404209a21a4ba1a8d85c5a3d5491949d9e092c00ee6d0404bab69d028c93608

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 392.0 kB
  • Tags: CPython 3.5m, 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-3.12.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d1b98539b0de822b6f717498e59ae3e5ae2e7f564370ab513e6d0c060753e447
MD5 63baafa656e012154f8d20fece588185
BLAKE2b-256 d504c009f9e2cbd85cb2db1f8ff2d6a6996a05c36d54e713c569c70cd581c895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a2fcbd04273a509fa85285d9eccf17ab65ce440bd4f5e5a58c978e563cd9e9a
MD5 3f71c11b1b932fd1b0d45a6e181a195a
BLAKE2b-256 62df4fafa5fbfff89cf4dd45606f1968bb5b2ca0c985ea49333dc29cf68aece7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 499.1 kB
  • Tags: CPython 3.5m, 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-3.12.1-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1fa6f08ddb6975371777f97592d35c771e713ee2250e55618148a5e57e260aff
MD5 5959a074452bee8c92c856cf68e1f936
BLAKE2b-256 fa595d72eeca1a4bea14eb8ea73b0747ce232b4ad56147f9ff0f5f706dfc28f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 3.5m
  • 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-3.12.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47ed77f62c8417a86f9ad158b803f3459a636386cb9d3d4e9e7d6a82d051f907
MD5 74fd011bdb3abf827dc64d612a94cb7f
BLAKE2b-256 d4d3b53c3d13cedf7f498a796320a6eccc0c76a1b2860e1559e7472285bc5e4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 498.6 kB
  • Tags: CPython 3.5m
  • 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-3.12.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 712de1876608fd5d76abc3fc8ec55077278dd5044073fbe9492631c9a2c58351
MD5 ae6df2f93741cf410b685c40c5d54185
BLAKE2b-256 36cfd538b252dc061750e34580c680ac13c30d6d9ebe6a2ef22de477aee12cc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 426.6 kB
  • Tags: CPython 3.5m, 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-3.12.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a81e52dbf95f236a0c89a5abcd2b6e1331da0c0312f471c73fae76c79d2acf6b
MD5 a1e005255b0fdac1e5b8e2d4aef3c164
BLAKE2b-256 b07ab1c8525811763b102fc2db632f2e960b68f1423742dffc9ccaf0c74dbcb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 393.3 kB
  • Tags: CPython 3.4m, 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-3.12.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 56feb80ea1f5334ccab9bd16a5161571ab70392e51fcc752fb8a1dc67125f663
MD5 01794efad5f3a0987adc0eb5a0e2c636
BLAKE2b-256 ecefd61ca63f4cecf18b639c7935415507564ffd830098c41263586daf7cfc23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 390.0 kB
  • Tags: CPython 3.4m, 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-3.12.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 63be03f7ae1e15e72a234637ec7941ef229c7ab252c9ff6af48bba1e5418961c
MD5 6629f1a9bbd39e58d7d5753f0082b668
BLAKE2b-256 1b2e01a386e1501c1d8df98b88c099ff01693591c058349ba12db7cb1f016154

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.5 kB
  • Tags: CPython 3.4m
  • 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-3.12.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab27d6d7d41a66d9e54269a290d27cd5c74f08e9add0054a754b4821026c4f42
MD5 bb1d0c3a3ec3c588d03f89b2709a795c
BLAKE2b-256 9f45137c0989941efb41a0c3fa1b0c803fd708e3efca1a09c74b0eb63dc8d258

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 494.9 kB
  • Tags: CPython 3.4m
  • 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-3.12.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1b06038c9940a49c73db0aeb0f6809b308e198da1326171768cf68d843af521
MD5 1154ec58886ed32b8b8fe1587dd1733f
BLAKE2b-256 e83ab859a9583bc70fcaf8a421c1ab1e86dd28461993cffe228bda12427591d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 426.2 kB
  • Tags: CPython 3.4m, 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-3.12.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 37a63da5ee623acdf98e6d511171c8a5827a6106b0712c18af4441ef4f11e6be
MD5 54b14bd2e25399b8e415478d24131a30
BLAKE2b-256 f587b05b1bed0bbbf123d2897e92b9ba04c844388217826e7c590bd590ac9427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c2a17752f97a942bdb4ff4a0516a67c5ade1658ebe1ab2edacdec0b42e39fa75
MD5 d3bf0361b3e057ec40dc351fdf7b037f
BLAKE2b-256 436464a282fc0331b803e4fc620843c14263c482c2d8cacbbc23c03c69ce188b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 495.3 kB
  • Tags: CPython 2.7mu, 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-3.12.1-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a96c04ce39d66df60d9ce89f4c254c4967bc7d9e2e2c52adc58f47be826ee96
MD5 feeb97144eeaccc8d4b6673a28bc41b6
BLAKE2b-256 a1f701c1607fe746c631c26394d6662331e5260f435a092d0d78fdb8de6be7da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.4 kB
  • Tags: CPython 2.7mu
  • 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-3.12.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5e3833c001a04aa06a28c6fd9628256862a654c09b0f81c07734b5629bc014ab
MD5 27300866dfebb33aa0a8db3a30c723fe
BLAKE2b-256 037dce52df6f521f6fb26a13a6f2ee6b0d0cabd7708b3518fe951fe7697c9384

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 494.8 kB
  • Tags: CPython 2.7mu
  • 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-3.12.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cef2675004d85d85a4ccc24730b73a99931547368d18ceeed1259a2d9fcddbc1
MD5 28bd9bc5077d5002f8af138acf7c5388
BLAKE2b-256 4b8b13aa6c61dd98ff4e00bf442d47b17d7926e13caee16f9271760b99ff076e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 393.7 kB
  • Tags: CPython 2.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-3.12.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 49b0d92724d3fce1174fd30b0b428595072d5c6b14d6203e46a9ea347ae7b439
MD5 e10edba1e8a9de5526fe8bfb08621180
BLAKE2b-256 cf3478bdba6d784a663a4b0d9d2994f366ae60b86048aac36a918771d5ce42b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 389.8 kB
  • Tags: CPython 2.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-3.12.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 75c7ef67b4b8ec070e7a4740764f6c03ec9246b59d95e2ae45c029d41cb9efa1
MD5 4429180a4435562d18bf883f845e87fe
BLAKE2b-256 b3061cca6a124798a6bc1b6f56a3dcaa420365d31a82b9e2fb8647a23a455ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.1-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bf2d9d62178bb5c05e77d40becf89c309b1966fbcfb5c306238f81bf1ec2d6a2
MD5 bb05ee513e528d6c923e5b423923fd52
BLAKE2b-256 03735b0217ac079aa3641937783bacaa9fa171b0a0523ca75138992327b1b585

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 495.3 kB
  • Tags: CPython 2.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-3.12.1-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36806ee53a85c3ba73939652f2ced2961e6a77cfbae385cd83f2e24cd97964b7
MD5 726f8980896c99e4413e05fb343e22ed
BLAKE2b-256 e4f98e7acd5114b00736a30b7663ec633e219b824f94c4f2cf4732084a318da4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.4 kB
  • Tags: CPython 2.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-3.12.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4168b6c425d783e81723fc3dc382d374a228ff29530436a472a36d9f27593e73
MD5 a966a97d71e76cbdfd428cc9ed3aeab9
BLAKE2b-256 0253cd981467e1a4544b4ebe6b7a7020ee819988073ad439a6674d2fe9706fad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 494.8 kB
  • Tags: CPython 2.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-3.12.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2462a68f6675da548e333fa299d8e9807e00f95a4d198cfe9194d7be69f40c9b
MD5 c1069c57f01abc6c45011e57d309a9c8
BLAKE2b-256 f982116eb60a80022bb3ed6a9dac543f5f6dd67c34a216a8eabdcc86109d246c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.1-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 390.8 kB
  • Tags: CPython 2.7m, macOS 10.14+ 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-3.12.1-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 c4653830375ab019b86d218c749ad38908b74182b2863d09936aa8d7f990d30e
MD5 482d8caae8080e55ff1ca64f6332e78f
BLAKE2b-256 aec42e4c2c26cd494cd53d128494e53bd5440a83491395c45e7a2dbea8965bf9

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