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

Uploaded Source

Built Distributions

pymongo-3.12.2-py2.7-macosx-10.14-intel.egg (805.9 kB view details)

Uploaded Source

pymongo-3.12.2-cp310-cp310-win_amd64.whl (398.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-3.12.2-cp310-cp310-win32.whl (392.9 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-3.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-3.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-3.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (525.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-3.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-3.12.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (508.4 kB view details)

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

pymongo-3.12.2-cp310-cp310-manylinux2014_x86_64.whl (533.7 kB view details)

Uploaded CPython 3.10

pymongo-3.12.2-cp310-cp310-manylinux2014_s390x.whl (536.3 kB view details)

Uploaded CPython 3.10

pymongo-3.12.2-cp310-cp310-manylinux2014_ppc64le.whl (541.4 kB view details)

Uploaded CPython 3.10

pymongo-3.12.2-cp310-cp310-manylinux2014_i686.whl (526.9 kB view details)

Uploaded CPython 3.10

pymongo-3.12.2-cp310-cp310-manylinux2014_aarch64.whl (533.5 kB view details)

Uploaded CPython 3.10

pymongo-3.12.2-cp310-cp310-manylinux1_i686.whl (526.9 kB view details)

Uploaded CPython 3.10

pymongo-3.12.2-cp310-cp310-macosx_10_9_universal2.whl (395.2 kB view details)

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

pymongo-3.12.2-cp39-cp39-win_amd64.whl (398.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-3.12.2-cp39-cp39-win32.whl (392.9 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-3.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-3.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-3.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (524.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-3.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-3.12.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (515.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-3.12.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (500.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-3.12.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (507.7 kB view details)

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

pymongo-3.12.2-cp39-cp39-manylinux2014_x86_64.whl (532.9 kB view details)

Uploaded CPython 3.9

pymongo-3.12.2-cp39-cp39-manylinux2014_s390x.whl (535.8 kB view details)

Uploaded CPython 3.9

pymongo-3.12.2-cp39-cp39-manylinux2014_ppc64le.whl (540.7 kB view details)

Uploaded CPython 3.9

pymongo-3.12.2-cp39-cp39-manylinux2014_i686.whl (526.1 kB view details)

Uploaded CPython 3.9

pymongo-3.12.2-cp39-cp39-manylinux2014_aarch64.whl (532.8 kB view details)

Uploaded CPython 3.9

pymongo-3.12.2-cp39-cp39-manylinux1_x86_64.whl (515.1 kB view details)

Uploaded CPython 3.9

pymongo-3.12.2-cp39-cp39-manylinux1_i686.whl (526.1 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-3.12.2-cp38-cp38-win_amd64.whl (398.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-3.12.2-cp38-cp38-win32.whl (392.8 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-3.12.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (528.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-3.12.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (532.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-3.12.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-3.12.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-3.12.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (526.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-3.12.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (516.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-3.12.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (517.6 kB view details)

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

pymongo-3.12.2-cp38-cp38-manylinux2014_x86_64.whl (546.5 kB view details)

Uploaded CPython 3.8

pymongo-3.12.2-cp38-cp38-manylinux2014_s390x.whl (549.0 kB view details)

Uploaded CPython 3.8

pymongo-3.12.2-cp38-cp38-manylinux2014_ppc64le.whl (554.4 kB view details)

Uploaded CPython 3.8

pymongo-3.12.2-cp38-cp38-manylinux2014_i686.whl (535.9 kB view details)

Uploaded CPython 3.8

pymongo-3.12.2-cp38-cp38-manylinux2014_aarch64.whl (544.9 kB view details)

Uploaded CPython 3.8

pymongo-3.12.2-cp38-cp38-manylinux1_x86_64.whl (525.8 kB view details)

Uploaded CPython 3.8

pymongo-3.12.2-cp38-cp38-manylinux1_i686.whl (535.9 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-3.12.2-cp37-cp37m-win_amd64.whl (397.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-3.12.2-cp37-cp37m-win32.whl (392.1 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.12.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.1 kB view details)

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

pymongo-3.12.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (512.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-3.12.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (516.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-3.12.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-3.12.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (509.5 kB view details)

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

pymongo-3.12.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (500.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-3.12.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (498.5 kB view details)

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

pymongo-3.12.2-cp37-cp37m-manylinux2014_x86_64.whl (527.4 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.2-cp37-cp37m-manylinux2014_s390x.whl (528.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.2-cp37-cp37m-manylinux2014_ppc64le.whl (535.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.2-cp37-cp37m-manylinux2014_i686.whl (515.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.2-cp37-cp37m-manylinux2014_aarch64.whl (526.7 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.2-cp37-cp37m-manylinux1_x86_64.whl (508.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.2-cp37-cp37m-manylinux1_i686.whl (515.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.12.2-cp37-cp37m-macosx_10_6_intel.whl (429.6 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

pymongo-3.12.2-cp36-cp36m-win_amd64.whl (397.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.12.2-cp36-cp36m-win32.whl (392.1 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.12.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.9 kB view details)

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

pymongo-3.12.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

pymongo-3.12.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

pymongo-3.12.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pymongo-3.12.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (508.2 kB view details)

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

pymongo-3.12.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (499.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

pymongo-3.12.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (497.4 kB view details)

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

pymongo-3.12.2-cp36-cp36m-manylinux2014_x86_64.whl (524.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.2-cp36-cp36m-manylinux2014_s390x.whl (525.7 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.2-cp36-cp36m-manylinux2014_ppc64le.whl (532.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.2-cp36-cp36m-manylinux2014_i686.whl (514.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.2-cp36-cp36m-manylinux2014_aarch64.whl (523.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.2-cp36-cp36m-manylinux1_x86_64.whl (507.7 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.2-cp36-cp36m-manylinux1_i686.whl (514.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.12.2-cp36-cp36m-macosx_10_6_intel.whl (426.7 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.12.2-cp35-cp35m-win_amd64.whl (397.8 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.12.2-cp35-cp35m-win32.whl (392.1 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.12.2-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (508.0 kB view details)

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

pymongo-3.12.2-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl (499.2 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.5+ i686

pymongo-3.12.2-cp35-cp35m-manylinux1_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.2-cp35-cp35m-manylinux1_i686.whl (498.7 kB view details)

Uploaded CPython 3.5m

pymongo-3.12.2-cp35-cp35m-macosx_10_6_intel.whl (426.7 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.12.2-cp34-cp34m-win_amd64.whl (393.4 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.12.2-cp34-cp34m-win32.whl (390.2 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.12.2-cp34-cp34m-manylinux1_x86_64.whl (503.6 kB view details)

Uploaded CPython 3.4m

pymongo-3.12.2-cp34-cp34m-manylinux1_i686.whl (495.1 kB view details)

Uploaded CPython 3.4m

pymongo-3.12.2-cp34-cp34m-macosx_10_6_intel.whl (426.4 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.12.2-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl (504.1 kB view details)

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

pymongo-3.12.2-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl (495.4 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ i686

pymongo-3.12.2-cp27-cp27mu-manylinux1_x86_64.whl (503.6 kB view details)

Uploaded CPython 2.7mu

pymongo-3.12.2-cp27-cp27mu-manylinux1_i686.whl (494.9 kB view details)

Uploaded CPython 2.7mu

pymongo-3.12.2-cp27-cp27m-win_amd64.whl (393.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.12.2-cp27-cp27m-win32.whl (389.9 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.12.2-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (504.1 kB view details)

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

pymongo-3.12.2-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl (495.4 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.5+ i686

pymongo-3.12.2-cp27-cp27m-manylinux1_x86_64.whl (503.6 kB view details)

Uploaded CPython 2.7m

pymongo-3.12.2-cp27-cp27m-manylinux1_i686.whl (494.9 kB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

  • Download URL: pymongo-3.12.2.tar.gz
  • Upload date:
  • Size: 806.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.2.tar.gz
Algorithm Hash digest
SHA256 64ea5e97fca1a37f83df9f3460bf63640bc0d725e12f3471e6acbf3a6040dd37
MD5 44c8d9756fb16f4bb0a54705b768a50e
BLAKE2b-256 f02f510ac3c37b514af106a132991bad4ae8c63e0661bf07509455be6516a937

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 805.9 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.2-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 409edd79362f93e39a7c8ee5ac174a0054012f7eb84cdd31185f22d25377f624
MD5 fe1a868aca142dc9a9ced309e3018ec4
BLAKE2b-256 ad328f4e5e1deed74c8510aa398079f3dafb4c9d0c35fb25757b409e1ed11466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 398.4 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 53be412acb3d673a95f31a212ce2d5dd654dc763b81a1b28563d996812ad03af
MD5 2b7a63bcbb0be77c11cb88829c12c619
BLAKE2b-256 5b657b80b588918759215a78914b6449dbc52051e9bb295382d72ecfdc31ecba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 392.9 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9ed835835a4d14f675f2ecff584effd2f16e98be65340eb0b2b321296fc9d2f6
MD5 500c85a102b34b683da55364d6118602
BLAKE2b-256 106cddd46c1aecd0c6295ed2fed3e2a698d3f197441f7d362c63adfdbcc2358a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db647a5045db322de36eed0605056f3b010c24d896edabfc48fed2c37031ab1a
MD5 2d5e42b70bcaecc6e129bb7a13db02dc
BLAKE2b-256 4252ea9141fcd66d52a50a869967838f3d63a3a73d8cc9a04e291b722ec3b990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40e970b7ceeef09ee96d31b35e294eef79ab3683c9211eb7854df9391cddb0c3
MD5 7cac9d9aa808bce7492aa2f083187a74
BLAKE2b-256 4c41b0eb54fbae7c1df782d4f5edb05c46a2e43b449b850b86a83cd56472eb39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eebe7b44d6481e09614e2726dd494a591af66063e360168264edb5ed22986303
MD5 38fbece902329165bad5d711b88f1198
BLAKE2b-256 7e9feee2bd597eba0bd3ab2628033536cc1b6e779be4cf947f0a2502bc049374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6877b9dafcc1f87ebbd861b510392d8d2cc409e9716e56a35bbc8b3ae3a9002
MD5 93b153ec5aa39b2368f52dd41f0ddd0a
BLAKE2b-256 5afe36d3237c3ac90b534d53c8cc3ea1be9652e71c6c91dc3c9194561ef01572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68965c7065c71f9a6202b677c0831a5e76f021ee195cb347475392b9b8e5008f
MD5 57b69fc11dc922d108eb1e2b1a01fcb6
BLAKE2b-256 87f54846ca22243eeb8011b02cb72f76c6db9207126eff4176f18c5230d78437

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.2-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c59c45644890150873665634466f8864d62a78979579758727897f9fa98570a
MD5 6796b7c3ca50800e7180f6d703660f6b
BLAKE2b-256 c7c758114e7af78811bb7e6f9c9813cdccb454abd7d1cb7b197673e2ec514509

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp310-cp310-manylinux2014_s390x.whl
  • Upload date:
  • Size: 536.3 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.2-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 622090f65a74a53d99f1d04b66d5ec371fd5c69ee1e4cb1a91963a7915e48456
MD5 599e28d4e0306db09935d6751ae8cb81
BLAKE2b-256 619bce586ce785af63678d50f96c038e85c1f83657768abb31b7c2a525c95cc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp310-cp310-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 541.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.2-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dcacb05cc8f831e2137ff9fbbd1ac0e37964d0bb11f3b411945e55e42d794b2
MD5 7d302be7d979c712f8cd256431038d45
BLAKE2b-256 0db12d96bdfa098f1767a553169b76037d74340d0562d18d588e1303558a88f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp310-cp310-manylinux2014_i686.whl
  • Upload date:
  • Size: 526.9 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.2-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47c674f40595b92bdffd6e2de127cec86e13418f05fcab51cc567430c3b2712f
MD5 1721aa028ea862cb6456cb23afae4c48
BLAKE2b-256 cd23ff65535fde6863a47b2c6bafcb4c7a9f9cb2a2d0a45a9baea0e712cc3ddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp310-cp310-manylinux2014_aarch64.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.2-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e061b6049f912dc64811031afdb8e7b7bc279b43893c877d29c092dd09345e5
MD5 0f96fa268d5ef9bc627292a2cd603ddc
BLAKE2b-256 e780ccfad33ef68b74d15267653d8d119045cb103633caf376ceefd3cd5f235b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp310-cp310-manylinux1_i686.whl
  • Upload date:
  • Size: 526.9 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.2-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3615d47a1e7f700df1f8772dddab1d2014b521d59026c782edce465ffecf9d40
MD5 440bcc4d9192000f42ffbc7a693d7548
BLAKE2b-256 18d6760a4825c18fbcad7298fc2b306d3196c92963d37e64d10fd97bb29cd96e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 117cd5416fe2b327f9ad717675d14ac60c41a4ef1e996b9b4bedbcea7d529711
MD5 b6c1a5c1ffcd147c342f1480cf9d9f32
BLAKE2b-256 bd9fef9605908618471b4a26382a2a3f91a3d513018a867d4528ebda40cb6544

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 398.4 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c214bf8ff2a7dc75c2fcdf7a203f5e392fa1a823adcd0168e5b8e2aca8480c7a
MD5 82af5190804c86936ecec35ad12327c2
BLAKE2b-256 a90bd0ef385524fda12d07d1b03cb5c3fe605b10b6050a0789780cc08bfdcf47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 392.9 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb1d60798a7b3c67cc38ad9bbad9c2954490ab76373ad8c162ec31699ce18946
MD5 a73bcbac33398efae9da5afd95399615
BLAKE2b-256 8cc1c90974056de790d21aeefee1d692faee85facfee01409f38ff0546b94562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2479d5986ca3267b19249c3c63fc5c4dcc84024062f9f19338ed458f8bfcd91
MD5 2cc70bc9d78519b6f3a10bce1367aeb4
BLAKE2b-256 4c4b84ecbe515844184a7c6b3395ce211271418b05c53a543e3c90cdea815a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b15898447d967e6b3d3e09946bf4f93ee576cd12fc853bd6bf927e255717616a
MD5 2baa6017cc54836a559fdac04f3c4de3
BLAKE2b-256 9920a15b895a8f0380954b8f51f531e06a0bad5cc770d98e78cab5d4911ed75e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ca48d0f92523d894d7dfa1d4f197a60f7bb363d23108809a67df1a9a61ffc18
MD5 e208bea79e4384e0e237597dc2db67e0
BLAKE2b-256 cdbe6cda5ff1b20423b8aa15d6c069410cb59eff16838d91a75716d8f7d6c9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b87c10e72f01f0b2ca7cdb8be087fb858f8046e97f3fafac36629bf896b6436d
MD5 22a1bc2c1ccb84da5efc62d36b511094
BLAKE2b-256 d96d36628054c6ff0738de109e5eb3ed7ff0603f17d4edc243835af1618f7632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5337638862eb892582a1d199023cf7961168f8b4c2f3f5cd000114b4dee36de4
MD5 4480d077668bfdaa77023842c40fde76
BLAKE2b-256 0de598b1a8e5878999e6234cf622e0e882a9ddc1641f844366ed7578c9a85863

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 500.0 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.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3ec5d3147b969d8092b6d129fa03de0a9538e243e07eb1f3b2d8e5f6e4edea0
MD5 93a6d381da8042efccec9088ad2d7670
BLAKE2b-256 49f0fbf3acbe9a1ee07ef083d016e5ee078d3851b99524e48cced1746be9e9ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3873c8191efe2227ecd19e36bbe7dd5f9c3381524ea8ed6c3609e31054bfdb61
MD5 c2a07cdbd6ec68f19e0e1914d9fd1b00
BLAKE2b-256 eb7529243d9aed694cf31c5beb5009ee5f9f8d103678b59470508b7671cbbecf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 532.9 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.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 196bf22e2a659bd295eb3fea291cd0af889790d623cfe3fbbe73d61042101f1c
MD5 44d92e579ee68a79eec56d10cc0ac40f
BLAKE2b-256 2fb2be74c91e7eb56e2377764a42a48eb68cf51c3f3b6e5e76f62e35b76f39c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 535.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.2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0407a985a052477127fbb94132508a3d14296ec026b1e6570695b99e88046dc0
MD5 186572bb3af8e8da421d36456b7c6caa
BLAKE2b-256 1f86b174b0146762f8594199e556dfd4a5b562e62055922b43bfef5b1b06145c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 540.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.2-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cccf25559fec7c492e48a89a788ab27652904958ede2aacca2249c2990aa3ff0
MD5 bb9085241226100991a4d69a8cb83fa7
BLAKE2b-256 60796238aa5386b99a110ace70569e7828b6cdd93b291b20cff66b39a9d2c595

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 526.1 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.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e731b263dca5293c6b16e9e7f1deec2039cc7ab31ed55fde632ac264b9a8c16
MD5 83dc8ea1dcf973674e17817cc90360ce
BLAKE2b-256 aacae4149796f3ed1ff858d2ce80f83dc25e8c3020fd7b4e0623d525ed73fdd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux2014_aarch64.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.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0631a6f2208d20adf78b0b3b92e4cfd18bd6ced0bcceebaf5e60905da3b3fb63
MD5 f107611d72631f7486fc236b0ad2b0db
BLAKE2b-256 4ea86d1942d250b7f62e56c1926f63262dba24bb2d66d6b4116684e30a347c4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 515.1 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.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d2989e7de67f757ae271bee68104e6e51c5a34b0a34249f0a17914e13717579e
MD5 8a5e12ab257b747cf59f8ecabbdad2f3
BLAKE2b-256 135b472a80d3e1465c8daa6fce37006512b7bed93b925a51d593cea77f4f2b67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 526.1 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.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 92283813990ba873b1b1ed655985586fcb9f756b4998ca2fb216d2d0ffa6f3b1
MD5 a2dab5f17262af17722d417386bbc293
BLAKE2b-256 31201a899395f2c019011e3f9e88fd07e58d49cdd7ce8ff84a42fe313bfbbe03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55230225157c2c730cb76f6863b18954464e44a0b50e9619f7fa930c8658721c
MD5 29226787f9c6eb7da895458fcbbdff63
BLAKE2b-256 1375f5cd65a6b5acc69c095cdb70d57d4f4643f6c24932d551019479b153b09d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 398.4 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b74430d01e03dc5fb530302d3ae86da4bdca1fa8f8fc6389bf167b44f882c34
MD5 01d66eb34e73a250347184dec956d446
BLAKE2b-256 1e413abe1d2d73846661e1a49bf7b09fc74f528508308f304548bd20619bcf31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 392.8 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 cf30e08447cd879b381b8f60a9e88505a7aa107618504cbcd79eb4f0cab2b01e
MD5 a60152fc1bfe1cac354c7111352cad1a
BLAKE2b-256 78dd94dcd3933cbc4c4509add5408441f451591309d8cbb6f73d41a560e0cf31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df951114fad5ff0eefc2b3cd221eeeb0ed0b2be8b8c6309a0387bb8e1db7739a
MD5 1aedbbff9c37663ba98224418142094a
BLAKE2b-256 8f57bc631b431885d1e79061e2eba81ad3a9bb37a2af4bc6733268651ca331c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9705ff2e2d97de98dd6ffa836305a8f29d343f81c2fa77b692e0fe14f30ea29c
MD5 234112902932733149e43dcb0804c909
BLAKE2b-256 e4fa9617ba7852180b4fae35b8eecd8a1d705f9e1fd4d0d30a446c9a0e5a3738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a181ba186cf20cbadc19a7e1b31d28b4b8e8804e7f31ec826b6fdc896a5ccd6
MD5 f36ba4a599035e524d6c4f1cdf51e8c4
BLAKE2b-256 6741fcbb430f03576cf0904422aa956e262db7b3c8f362990aeeb719021b27dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46e8beba730c11549007bb6ae2794dbd449ef8dea547bff594b683cdd05e5757
MD5 8b5b8e0a4c570341b6cd193c9b047cb3
BLAKE2b-256 5e2e0a65f81fc23b62d9000dd30f7522848c83fbeadd837a56a653568797cf55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 502557a0af2a9fbc062426fb585f5af0c27ed905601b698b14d868b6ec193639
MD5 c9737e5339b5fe9a95fb154aa4f14629
BLAKE2b-256 e6ae23d0b200d999b9ad867557d97e63213d5882ffafaeea06ffb0eef65aa514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 516.8 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.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff568200b3447a3d85c06212f225135f5fca3bb65f582fcac1a7a6aeeac6aa38
MD5 b84fae4020b96caa836ae9b81aa41b69
BLAKE2b-256 3afcc9876aac2132f31d483e5e3f4336c722831fd2293f73246899446e396679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dd91e8c14057530a9445a4f905312603b1d5141d4eb2630c9b7b6e1405357f5
MD5 019050ec68b7aefa686c4e797b6d0095
BLAKE2b-256 1fd35f81aa2bad9710e83337a2b60cb14a17ef8fc0215e239ea57c41f416ce63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 546.5 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.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 047355718484e35c72bb64781b36b6a88259597b6746da3f6d705fb1e689105b
MD5 992b5bbc9695da0f4db20cec84c3a5f1
BLAKE2b-256 431c5bd799d85157fa380a5e4408d417a633614a51b1478b0b787e23d4a33fac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe22e7ed10241f22241a641434fb9ffef99c1d1f2c66a4d725f4b01bc26ca08d
MD5 05d8c97748d659b473c1b1285e13dbd4
BLAKE2b-256 d5bc7fb1df6a6e7b087e9925dd7c5156f9e5740192de95534083da2c1e8e8c57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 554.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.2-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 745bf27a7cd33ecf857430dee6f6f7b8ec13c9d61c1c599a76e61343f7a60417
MD5 df053ea4b28656d59b2963f5d3178f7f
BLAKE2b-256 2706f1cb2413b12808b7641cc4d15970a4e4b633fadf7463843c13f05db99880

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 535.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.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c6a9b81ebac524e31fab03f2096362bb9dce34af2cecda008f16b5c921abf03
MD5 df50b34971f092108929f9acaedd5988
BLAKE2b-256 79baa71ab2edeb6f7bd699ab33ee091e4f861a406717c8f5686193930a5fd9ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 544.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.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9c6851832e25339eaa79c521ee54b81c20cd51ab3f18dab2ebd0500eaa17a79
MD5 99fce8825611a6d31a902cb22f13cb8d
BLAKE2b-256 f6d13ac23da2d4b9967e4b5d0a2c7b66cf98e202a3f26565b757a0502c72a91f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 525.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.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9542f748e1c2d0b014b62347e4a1fe13b7ee0103462d810ab84c6857be5fcb41
MD5 86772e5227a9f7c4aa4e016bdb5a416b
BLAKE2b-256 39b284b1da3e8c4659efac559088214f7b8e616440e74ac41fb4eefa72f32da6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 535.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.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3dd383c930aaee1bd3e467cff8628c156b8390fea99c2f9af658b9bbdf7b905
MD5 853eef336e601fe1b545b5d761bf9fd7
BLAKE2b-256 fd56aba23fb6b32594185637d5ba121f5c337906e2920b1bc6760e7e796911b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42d4a5a4babb174d4e3106c90d98e8a457a9ade0af7f4f2a6fdb37282fec5dcc
MD5 ec4ef781315cb2fe451e14d1c2dffcdc
BLAKE2b-256 478db2c07061212dfddf836b0aa3a902117331dfc449397ac9e78c7286d8acd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 397.8 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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 83c0cf43921b50126d66d02b708fc35a3e682eba77cb69bf66d5be1fadf8270a
MD5 d74656c1c80ccc046119e7396ad0064c
BLAKE2b-256 601175adbeb8b126b1f857ddd3fb619a51bebfe3a4ac1494f5abebe8f1648760

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 392.1 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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9cceec1120d86d81c5870294ebf1a611a1bc3da883322bad14aa9f30eb549bae
MD5 88dad7e17e857a11a4fa6ca02d66255f
BLAKE2b-256 74d80f47cc5ead3a628c8fc1a4aab02b31f4d08f1265215020b82e3c2242fd9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16a1d13d4af356f97d0944d7a081686f4498f8a6641ef5f28e3c4731ecbeb723
MD5 a0e227430cc3a4600a245f75d71e806a
BLAKE2b-256 df0e7231bf94435b55e7bd2f74723912fb169b41a7a7a644e256d31de38c3468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57015275e8c2d71c445aacfc6597692eef3c7aa43677d4fca0638190061f1360
MD5 ce80f9bbf870e6c0899ce2d51ac4bce8
BLAKE2b-256 560bb45508ab3fce1277800676fef86e8914b2dc48f38405ddb5b81c0366605c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d86b980bb5a9217c6d35da31f0a0c0e02064afb8d7423dc2a2ab68cc2aab6f7
MD5 94edb1dc45afd2da83e6189c50c9e97a
BLAKE2b-256 d99391d25b24347c2a81bdc1546507e158f2b65a1a11a9fcba0fd3ba40406ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ede4710dee74a55df8caeda3ab93efe5999c2b37f84d27905d780487ff4ad99f
MD5 4541086a68bd6da42f8b1ebffef81e32
BLAKE2b-256 104387e19b9d6c3420665d56ca9916fcff1fd53e537539132648b476abede233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f1e42595ace57e863a4e935e316d02ec17f14aa54c171fc9f53f6e2def659bef
MD5 efbeebe05f80b8510b306c14f07e86fb
BLAKE2b-256 baf525a10b87e02ba2cf17f001ba5831fb49580fca3516387b1a64efebbac0d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 500.3 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.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ffe1cee551d8ca5849c3ee98a08294687ab2339ac7a8e5bd4da4731b398b1e9
MD5 673c5da70a0770a1a56e6a853c40338b
BLAKE2b-256 d6593fe602557b1a3d401cf3684557717e20d036d8010bff959d585757fe16bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f8406991e2d4559e2949d4f6ff0b4b6c0015589921087e3406733c693ccc415
MD5 9ce6f903be4547c6fbf9bc8fe581fb60
BLAKE2b-256 d1af1107d3df7f5f57da624bed1e12f3fcff061cd4ee22b37164de8af19284d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54423a3e15852cb5ae013c875132fabc87fef4c40ca956f97ee8eee2bb14576e
MD5 09f00c1f0992598970be9d9113646cc0
BLAKE2b-256 b884b060cf444175cf1bec643953bbc73fc2f649cda82b02c2ea4cffe636af7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 528.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.2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbe82e361b8c4e0290c03ccdbd17163d197804467d6b29813495d09d6f36b4b3
MD5 08871e4e7e830239e3f02b24ba71aa18
BLAKE2b-256 876887a8b0a7cd5de08f35148ed876b4d79655dd5e0995c6dc8e2673b154f3e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 535.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.2-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5c02f79825311f7c30ce59b0a01051504b5ba3eea4d3f0bf4c141b274a04f0d
MD5 9e973a19d8e658c2b84e0003a490b316
BLAKE2b-256 5bc1a93d0dba8442b4ac903c679ee7d6c672e1cf6a66b529e7e9f6c094b6ff34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 515.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.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fd2e44011ff7cd4a72ce81e6950e608c00f96f9a7a24260311e3d590e6be361
MD5 55f466b5adcde3ea14303e15439cf7b8
BLAKE2b-256 a2f03f8e0640e60737c97e5c0c274f513497460f9bdec3c98ab3110b742b5bd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 526.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.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86561901835a4294cf13616a828726c847a0c3ea57c4d8b2f3b85b0ebcd14737
MD5 5d10b79fe81e0bb5f2bf0857163e88f3
BLAKE2b-256 f31b4de86c7a1ca96e14b3a672132215a5c182439e07269eaaf5e1397f1b0177

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 508.9 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.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e039c7b2c185eddbd2ac4844f5d0ab802b2a1b77f3e426d0623d8f1cc140fd9e
MD5 75fa8b517ef493a77e693ccccda6c514
BLAKE2b-256 bfb713fe3c5e0921bdffcfab9fa9c8a9380ca960c61f3af9c5e98ecac0339dd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 515.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.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 786b7d3ab9abc992e67eef358cf875c2334a8cfc02592c80062bd982742e4129
MD5 ddad99b6da517fd700f68ee9d637dc7c
BLAKE2b-256 0d2e84759f6ec691fdc66c73353d796cbb327524a7edca2859025824a2759716

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 429.6 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • 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.2-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 54e9a0063a50c56ceb32c20a34c0cd403a502368c6d7fc79d928a479e7b18d1f
MD5 a26bf07e246f2340428f46645355caac
BLAKE2b-256 931e327d2625924bcd4b4b4ab3ba9c71e6bb517f45864ce027dcf6cd38502fc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 397.8 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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 caa9d91a7b6d444659eb6d23bd0ee863f850193598577f9c242437edeac21039
MD5 081cc01dc35f76fe8765153fe6cde11b
BLAKE2b-256 9fe51692a93b0979b53fec2131e0d1e3b5da22dc757b88ced176cad63bdb1286

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 392.1 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.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7592841a4dd74041d0875ae0420bf0af8bc170d65cd135a1c837069e9c1a52a5
MD5 9ca1ebd2dabc2800acebdea53435516c
BLAKE2b-256 caef5eea77af2aa20ce203bc0486af317d109ffc17a386c1404bdd8c7da6e0a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b0832a1df13a103d0a54f8627decebd42c83218929bce8818202e8f3ac4acad
MD5 358d643b7047d34bf3f9fe0557a3cce0
BLAKE2b-256 55bcd56f43e21fa47a9f74fce7779ca9b2dc7ad84a813acfff3e4b7fe4a23dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 477149f3df6fac400f368b850544a7dcc4c2fc5268adcc2dbb78144de1cbfac7
MD5 756aec202f51a3801e4ba519f40e074d
BLAKE2b-256 2297f91dc9f3bad01fe505ef415e634ea2b349707d818d523103ae58757b3310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13889d7e92404a176ceb62a27b41122bf88a47ce25d34e51e2561597f0d5b1fc
MD5 1174f61f660c6495c4deb208facec931
BLAKE2b-256 a3eb0d26b03d4f49ced230612aa6d60a025d359e7eb81b06f8907fcae81f0941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8e9cf0e10c1f547ac226bfa016b526e5cc3b2655911e5f957a9c804dd217371
MD5 1aa0904ace1a9795efcc27f9afee3876
BLAKE2b-256 98167c5aa2be4f214cdca43ca13898d41f481278da7682a25a0e8aa827f731f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a6d4da81ace0fffdeef54a84ff9b9464b568e2ecde5808bed608198d575edbd3
MD5 98cff1dbbbb8cb3a54e28d8a8e555e1e
BLAKE2b-256 25360287289374333476759e838a2b96bf8f704dbef888738a69ca3cd05cc0c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 499.4 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.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6645aa9e5297e7bdd40d5f7e4821290e1011e0dff3829ba0737666ea16ac7654
MD5 bc27f64ccded8a529fd02b5fb07fa86e
BLAKE2b-256 25df7bb7b996fa18baffdc8aafdb40d71a51097394babd624f9a34d62d26b80c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6110d6ef86717928aa1179da81fc98633171c9c81afc348cb2745c11d2365b6e
MD5 d628a6ed795df86a1e915bc4c95883ac
BLAKE2b-256 345f17cd50bc41e7c693d5bed24c5fb771e9f47eb916b61b72ee5d099cf9307f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 524.3 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.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 042cae6b624fef2514afedd6ad769ebe7dc043a5bc6abd23b563761efbdee1d1
MD5 a34c7c2ab77baf602029fb7c1d508bd1
BLAKE2b-256 f785289a28fc8b906e23a9d92727e07ef385ee04a1003f8507151ff40e66ea52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f8fc6b060175eaf61637f6e4f2f2c89c9e99de6c58a389179afd21d65c9a497b
MD5 72c114662ada8263eae6f5c4e1e34670
BLAKE2b-256 f150fba0b7a25a6adf967908c98c0db122cc56f50ee7fc1b761bbad02ee3165a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81c1eb7a2f19711023c82fdf9d1c5d94cd14e51af0b5d979d47d921a7719ac3e
MD5 a765e03947b6c532c4fdd6e4985a3fca
BLAKE2b-256 b686d582c1f05caabe46dfa9b4a07d73f50af364576ca48db29bf3a59d0f458a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 514.3 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.2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9e78c737991a693e07175d47bf2845a61d360fbdf45ac1c62f4567836c3d871
MD5 da8fd802207b34576e34ea7e51b15977
BLAKE2b-256 0788f0d366c17c07b780127088d645b043e5deffa795e82f7d0031803975086a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 523.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.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 312217fe8a390980137b87b93d8bb44b83893c59839ada9bbaa493c15287fed6
MD5 e1f5d4cd085d34109cb53b29c265e656
BLAKE2b-256 51b7b61cf2dea6d4eb5f139c9901db661b031e0d5240c3bfc95a635903bc0460

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8570798dfd047dbee179f8567b431fcf03544f30748cb2a40c7fb638b3247f78
MD5 df95e5b1f9c07ef40b0d211c3b851027
BLAKE2b-256 88aa2dcfe36f3122e8613e6ebbe3f96aa100a2edf00779638ca28d338a981b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 514.3 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.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd30468648d8bf45a371dff0824908675bcf35d0015f23fe5cbb64031e0f1182
MD5 ae4a74e3bbd2c0d2022add46c7b109e7
BLAKE2b-256 16275dd487b69c9dc7482da817c03c57b244adf0f3138ce52caae953ef0927e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 426.7 kB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • 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.2-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 7bfb0512efaf066ad373d9dbd06af0478060b5f0a2528ab015d81426bab0dc38
MD5 a7e0de5635159f75b2df76121d007b1e
BLAKE2b-256 b6a207b75c89ff838a722c567cc9c7d05b5f8cebd4a41d898672c066a25bfb43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 397.8 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.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 471960f8c9f55e1518d0124d326b6952c69ed7ddd114f8bf200ed571d7486901
MD5 e1ce0df88885600cde14a0bd6fa8599b
BLAKE2b-256 d18a448a3e6f6f0a9469d752911b3064d12e3627f699e9717d18cd53be14519b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 392.1 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.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8966cb9f2b201dfbabdda17e1c1fe4d088f4b22fa4b74a2b19437babd0357b0d
MD5 3edc79ad69e9afec48cb2836ea309786
BLAKE2b-256 a75fba01cdc179065903e3609acc5f3d885be279e45f6e6caa6fa92016af2fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8096336e567bd9e8a32a038f4efac5f2b3207d910f15832b01e6be8fb7faff26
MD5 d4ec0d5efa6050f1dcd904809c6586a1
BLAKE2b-256 5370805c540ed1e5ba13545303a80c9bbcdeeedf024590a6f7bd00d42cbb7926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 499.2 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.2-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12c9c72e7e709592cf7a426b72560f7e93b21c2a7ae006c78f67b0589650b803
MD5 51204a753f7506d1c4077fce6b67a523
BLAKE2b-256 ae8d59eb83fdb27ccb015b8adc40cf3792bc1f9c318e75c2698cd8e68448acc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 507.5 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.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1cc38077c2c6ed4bc5008b22d87e10d7485292f8f839ff5b43399bfc97b4c0b8
MD5 4c5032ce75cdfb1385cb86e04795e087
BLAKE2b-256 c9bdf474cfe091b7d351e3607390b240074435e30af18d9eaf362dee88850baf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 498.7 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.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c3b932989fa84b01c37fb5d2c958050a3502f8506fb5449e4a1600e55e30414
MD5 edd21beacadb54c7f8d116e41969161e
BLAKE2b-256 ac2961e737d24fc43da032ae9d0c17843c9372939980e98118924814ab501954

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 426.7 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • 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.2-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f9cb5fff99c3ffe111dbc4509681b239272b0764e54537a3727d8b37fb9755de
MD5 cb01e49a75e6613bb6a732a95f3324e8
BLAKE2b-256 6395b1afda4e422afce10ffb0be1272c15cb68bdf9bfeb3da80a25937cdcd393

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 393.4 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.2-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 e826c174bbd5426974defe4ce76065e48e52aa0933be37dee84f84b8d23609e8
MD5 df500155c2c70f7dee09630d9b1572eb
BLAKE2b-256 cf4aa1f67b298115b2d4cb0434b7d75130ecf54837bbebc323b69150a90bd0ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 390.2 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.2-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 387c435dc5575907f4a752d3c863d8beb1f57aa792d074c64f3c8c152a2120c2
MD5 c2bd8b7f7c57eb0ec045855ad1a7fcf3
BLAKE2b-256 da81f819d2ffc012b17d28c11bd4b86eac5cd97a653f7f21f09e52e78fdd157f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 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.2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4e22e02923962c18718bf35bd9d76d5fedf42346f7f9522cd96754be3fba4ea4
MD5 3d052b6de1a83af775ba76f29e53680d
BLAKE2b-256 a2e9e7c1f92d3d81f1cab3ea883ea9f74d95c15f22c116c476f4536845a2d922

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 495.1 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.2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b5dd978a9ac399a1789f57818e8cf5187ee2a71886d7843ba33c29743b193be
MD5 d1a72a984b3586a3602472a83cf4e54e
BLAKE2b-256 4087fa681400b94ae5811dbf9fad1e223ab32357f08eedf42fd8765e3fbcd0c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 426.4 kB
  • Tags: CPython 3.4m, macOS 10.6+ intel
  • 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.2-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1e5f7b8ca288cb9fec03be1e2ccb392272458bf4a25d2cdf821968caed4ff29a
MD5 45d22bee123a6cff6624e96acf16fdae
BLAKE2b-256 98ee1875543fceecbca765c4c72d67a74324e9abb8fe44247a254296268d6769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f6d43a27ac95144c67017aa7517b88ed5f022a2fb2b7f5986ad43ffad0064993
MD5 7b3f9d140f98fc030e140ae1228e3be8
BLAKE2b-256 5a2e6d30ffaa5e326bf12cda36be8c58c452d610af0d06bc97c57855c5badbf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48b785a12d8c767ac63f3b1bd412fffb76c1daf6a89f712a3f68eb2845735163
MD5 2348ddfd865000d7e5c98b2417fa2376
BLAKE2b-256 b7fcbd3c27fda4698b3891d99ed0f7aa1fadb3eb55f7b34a2f6120c17ac35cb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 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.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 33e0800518d562936f8e9b0d76cb6614450ea157034245ab6a3a4afc45064a65
MD5 a91c4ec2c468b8755735479e144e8c2c
BLAKE2b-256 ad3fff07d2acc69bd4bae5840ff6c512edf69da3414df4fc02b55cbae6a89fa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 494.9 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.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b948da6912f794ce15837c6b43f8fad1954e66a1fe84b81fbb8cf612d733bfdc
MD5 144a83be4139d91f079b1072bc62d479
BLAKE2b-256 7c0e511387757a9f7f983f24fb2f1a2a45b76dcafb597c4ff9938d1da5bc949e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 393.9 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.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3de57fbb829555cae99a90fbbb3abc22aadecf0c2b7939afebb4eb909c0d72f5
MD5 452a302fc7b6c41011611c3bf5d17812
BLAKE2b-256 567850919ec91718b79dc72a0c8555de1d2691a5aea364dc9d30ee35c311d534

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 389.9 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.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1db1c610656436514e7809f9cb36050fc7a86cc6c3246d72c1e272108ebf0fc6
MD5 16e54870095d7780e25e0bcf42b09c6f
BLAKE2b-256 e6679ffa9ef01a1cbc2659ce1a807f404e32cb44081d59185c67fe636bafec74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.2-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e2bfee898b430437b8db7a7ccc5b922db7268019a1b30eff51df16cd31c78aa
MD5 40ba251ebd8559397820321ca97fa5da
BLAKE2b-256 b6f60bfa0bf43468e783c6ee715395ec485e27e5b1e547c78910e49f1a0c92fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 495.4 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.2-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b844acd05deff9d131f09211e18a2503d7e8beecf24923210afdf11c4299abb
MD5 486ddc5a423be2e1b4e1434d4c95326d
BLAKE2b-256 f24db104499c4b5b6ccafee32ed2faf93a617d2790f031aef6c76580bb6d8f97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 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.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f4a10454ca78467356c3b94dc7719bb31c01d9ea91aa7afed92f1e6aa6b77a1
MD5 215689fc6dd93581c00010e03219010f
BLAKE2b-256 209448d27384cab5e85b45b0b000ec7a7cf05847498a0f77e65e25d68ffe10f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 494.9 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.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e41254b18271bf290a4bed31a289390889ec87fba7dd7d14afb6382293dad060
MD5 704e739c714c519fc29216b6dfc02002
BLAKE2b-256 9accab3b0526f74579e2203a4a54251f54a8fa85825b8a32a500f9c76defbb18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.2-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 390.8 kB
  • Tags: CPython 2.7m, macOS 10.14+ intel
  • 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.2-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 2aae55a1eb7ede1a409e7f5705db03d2c8ff15a11da7fc32db0e6de4c395cfba
MD5 ebefc4929648fa1180c144a015cf7d29
BLAKE2b-256 bcc2052a0e4ca726a65132917f79af38efef05544568928dc0682bcef08a5f52

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