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

Uploaded Source

Built Distributions

pymongo-3.12.3-py2.7-macosx-10.14-intel.egg (805.5 kB view details)

Uploaded Source

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pymongo-3.12.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.whl (533.7 kB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10

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

Uploaded CPython 3.10

pymongo-3.12.3-cp310-cp310-manylinux2014_i686.whl (527.0 kB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10

pymongo-3.12.3-cp310-cp310-manylinux1_i686.whl (527.0 kB view details)

Uploaded CPython 3.10

pymongo-3.12.3-cp310-cp310-macosx_10_15_universal2.whl (431.0 kB view details)

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

pymongo-3.12.3-cp310-cp310-macosx_10_9_universal2.whl (395.4 kB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pymongo-3.12.3-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.3-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.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (524.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-3.12.3-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.3-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.3-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.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (507.8 kB view details)

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

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pymongo-3.12.3-cp39-cp39-macosx_10_9_x86_64.whl (395.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pymongo-3.12.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp38-cp38-manylinux2014_x86_64.whl (546.5 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pymongo-3.12.3-cp38-cp38-manylinux1_x86_64.whl (525.9 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pymongo-3.12.3-cp38-cp38-macosx_10_9_x86_64.whl (395.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

pymongo-3.12.3-cp37-cp37m-win32.whl (392.2 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.12.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp37-cp37m-manylinux2014_x86_64.whl (527.5 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-3.12.3-cp37-cp37m-macosx_10_6_intel.whl (429.5 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

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

Uploaded CPython 3.6m Windows x86-64

pymongo-3.12.3-cp36-cp36m-win32.whl (392.2 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.12.3-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.3-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.3-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.3-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.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (508.3 kB view details)

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

pymongo-3.12.3-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.3-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.3-cp36-cp36m-manylinux2014_x86_64.whl (524.3 kB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.6+ intel

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

pymongo-3.12.3-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.3-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.3-cp35-cp35m-manylinux1_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.6+ intel

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.12.3-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.3-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.3-cp27-cp27mu-manylinux1_x86_64.whl (503.6 kB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

pymongo-3.12.3-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.3-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.3-cp27-cp27m-manylinux1_x86_64.whl (503.6 kB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

pymongo-3.12.3-cp27-cp27m-macosx_10_14_intel.whl (390.9 kB view details)

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3.tar.gz
Algorithm Hash digest
SHA256 0a89cadc0062a5e53664dde043f6c097172b8c1c5f0094490095282ff9995a5f
MD5 6b0c69fe4cb4b6814931549cd8c8ccb4
BLAKE2b-256 97799382c00183979e6cedfb82d7c8d9667a121c19bb2ed66334da930b6f4ef2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 805.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 d81299f63dc33cc172c26faf59cc54dd795fc6dd5821a7676cca112a5ee8bbd6
MD5 0bca1f61a0076d6acd3a848aa63e2791
BLAKE2b-256 2b142932ccb837a947233b2a0c55af2bcfbdd1d426c7909269022f2287aef38f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c7e8221278e5f9e2b6d3893cfc3a3e46c017161a57bb0e6f244826e4cee97916
MD5 be08d251be0a72e2c67fa305589f09c6
BLAKE2b-256 9ef98f7bc89fbbeb2c98f0dec6cf8ebff1a65f3f5facfca95b75ca9b4b9664e7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2301051701b27aff2cbdf83fae22b7ca883c9563dfd088033267291b46196643
MD5 63858fd224efe9a3f2befb50df79a228
BLAKE2b-256 99ababaab1c4d1833b489600481a4c6a0133ccd40db0f6b5c45304b172a05d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed7d11330e443aeecab23866055e08a5a536c95d2c25333aeb441af2dbac38d2
MD5 f96fc0e5af23427f2d050152dbd98db5
BLAKE2b-256 9c66c84840c863578e03f43150abbd24a694a8532386a9d654cf7df3e029a241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27e5ea64332385385b75414888ce9d1a9806be8616d7cef4ef409f4f256c6d06
MD5 16c3374ffb8ba7901615e92b05dbfd70
BLAKE2b-256 a8d2c904ed342a6f291eb3dc675896de148dbb46433d620bf431c24026f9e4a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e099b79ccf7c40f18b149a64d3d10639980035f9ceb223169dd806ff1bb0d9cc
MD5 3fe83b7a24b171497bca25c4a0a488a8
BLAKE2b-256 5ff6df2a5eb613f6a5c10258893a07316c00b72e7b869b6b5611cb1dc737b518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 463b974b7f49d65a16ca1435bc1c25a681bb7d630509dd23b2e819ed36da0b7f
MD5 9d600447133fe67c099652123c85ee49
BLAKE2b-256 f08a3be73e456170e9c63c557591660fbe8eb21f76dc9a7a33b9233687bee355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93111fd4e08fa889c126aa8baf5c009a941880a539c87672e04583286517450a
MD5 7fc374a3d4a13121fd8d1a5b5caed425
BLAKE2b-256 1c4e5c24af7bdd098101b15ccdf8fdd7161977a3f114c27e82d7b708079ebc29

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51d1d061df3995c2332ae78f036492cc188cb3da8ef122caeab3631a67bb477e
MD5 93b3774eb4f8be95b08a886b7b6f353c
BLAKE2b-256 ee515460ecb24cb8ccd2973ec297454ae093a155a2ac516611deac8755f26d06

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5296e5e69243ffd76bd919854c4da6630ae52e46175c804bc4c0e050d937b705
MD5 a0e717d94c54f3f7e3f784f0e33f24c2
BLAKE2b-256 999357f3145d95f84d061d0e421a267d85af824b64854242af3e7008464666e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58db209da08a502ce6948841d522dcec80921d714024354153d00b054571993c
MD5 0ff5e87b5ba2397d6631c7ab1e075b00
BLAKE2b-256 6ec4005ad73b9857405314b32b4d17d9679eb3efd8a2d0963b84aec66fdc133a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1b5be40ebf52c3c67ee547e2c4435ed5bc6352f38d23e394520b686641a6be4
MD5 769350f035ec197c90217b97fcc30754
BLAKE2b-256 895235d5ee34c597bfa162e0bb9528fbbd55e82e6e311f7876bab026aa48d03c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 514e78d20d8382d5b97f32b20c83d1d0452c302c9a135f0a9022236eb9940fda
MD5 307bff0bea988a90545c2ae9e0ac6a12
BLAKE2b-256 8466d86f2623c500b88dc3a53bf0c2363e0249323e67c534af0e068341e50f22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3082e5c4d7b388792124f5e805b469109e58f1ab1eb1fbd8b998e8ab766ffb7
MD5 fa74166d20095eef8ecad2c84a1a4fe5
BLAKE2b-256 2bdbdf0e56a11240c231da00670a1a610c2d61e0d86758c794c1d1fe72aa494e

See more details on using hashes here.

File details

Details for the file pymongo-3.12.3-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 858af7c2ab98f21ed06b642578b769ecfcabe4754648b033168a91536f7beef9
MD5 c1b479609a113814852795e00c055edb
BLAKE2b-256 459459660766491e730721986e7b94e6aa28930fb1eefd70abab849f993797a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0a02313e71b7c370c43056f6b16c45effbb2d29a44d24403a3d5ba6ed322fa3f
MD5 61bdb849d9bc138277456901f1edbccc
BLAKE2b-256 6c8fe7c0c609388eb4aefb6167e7a113fb2323d4f1e86b2834d4d01f4a4ed505

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dfa217bf8cf3ff6b30c8e6a89014e0c0e7b50941af787b970060ae5ba04a4ce5
MD5 39ef438c38d4471596ee05616819b559
BLAKE2b-256 f2d419f06d35317eede30703b88fb4869ac3b78f542df6b9edff14ab5c1178fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2157d68f85c28688e8b723bbe70c8013e0aba5570e08c48b3562f74d33fc05c4
MD5 1d994fedcc8166585a36bd69111ccff7
BLAKE2b-256 a47f6e1554d8f771559f4c6293ac0558acd6d7065f07a074dcd127a8f5330b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf254a1a95e95fdf4eaa25faa1ea450a6533ed7a997f9f8e49ab971b61ea514d
MD5 3c4ce8a7b5394714522973e46d032577
BLAKE2b-256 c39a101b17a28da73b170a21b24e11d05365c4a98e8fc8ab8ba0e51f1440607c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8455176fd1b86de97d859fed4ae0ef867bf998581f584c7a1a591246dfec330f
MD5 604d104abd199b41bd9e8992c075f4a5
BLAKE2b-256 b80576e0e5809d7798011ce541ed2f2447c1f9c77522bb227333cd9f604a8c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b4c535f524c9d8c86c3afd71d199025daa070859a2bdaf94a298120b0de16db
MD5 c907128b2f56f789fcc9d271b2bcddf3
BLAKE2b-256 413c2f7979ca86ee88ede3b6733dab55181e35754c19c8a349dbe9fdee960dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f340a2a908644ea6cccd399be0fb308c66e05d2800107345f9f0f0d59e1731c4
MD5 b19154ba33d10b185de5782fa534421b
BLAKE2b-256 ea84c558b19e8e8d3442e8394f313d74ffad4919dca963f1923567629f7dba09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0be605bfb8461384a4cb81e80f51eb5ca1b89851f2d0e69a75458c788a7263a4
MD5 c6c665161080e6c0fe2bbaa3011a0c46
BLAKE2b-256 a36c10b9cc7baa860ae72467344ffb6a2b6ce06181894dfdc6bc7abd34237f00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e7a5d0b9077e8c3e57727f797ee8adf12e1d5e7534642230d98980d160d1320
MD5 a8ac28e6d627351f92fe742576b43233
BLAKE2b-256 9e6d059656d398305f5dd16bce0465f89602c0ed75489b3db87ded90dfa055d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8a3540e21213cb8ce232e68a7d0ee49cdd35194856c50b8bd87eeb572fadd42
MD5 d9f3fe50c3a6da038eecbd8a5d6a44f1
BLAKE2b-256 bafa95bc121e929671e3a492c317170f84d0d71b3030d7bb1e6ba3a22bf0a029

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14dee106a10b77224bba5efeeb6aee025aabe88eb87a2b850c46d3ee55bdab4a
MD5 2ab0ac33f764487c61fc1ce41f03cee9
BLAKE2b-256 970d0c6c458751c418b35b7199f1dfaaa78df2900494373ae02ed8d91eb1f071

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71c5c200fd37a5322706080b09c3ec8907cf01c377a7187f354fc9e9e13abc73
MD5 85da7d7464f9d129840b1cc83f0b83f9
BLAKE2b-256 e98711ccaf5cd991f7a7406ed947f6c8f1f85a356f074a439bce48d303206baf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2567885ff0c8c7c0887ba6cefe4ae4af96364a66a7069f924ce0cd12eb971d04
MD5 b653b3fc510302029a78f3d9d2bdcc47
BLAKE2b-256 c314e7e7127961b231794bb89039a1cea3b8825e4a1d0b195c4e2b874629d236

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 517b09b1dd842390a965a896d1327c55dfe78199c9f5840595d40facbcd81854
MD5 c9f87bf106454952bd9705c63169db48
BLAKE2b-256 1b63c3023c7fd6bee4f79ce3d24b6a63b59baed2d4abec25c017183ef7805dca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2577b8161eeae4dd376d13100b2137d883c10bb457dd08935f60c9f9d4b5c5f6
MD5 baea9385f76ae3f3222ad527e5e73566
BLAKE2b-256 66fd450ca78ed199ddbe76d3f398d124d86d8925582fef500f9baf13aabb1c52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a283425e6a474facd73072d8968812d1d9058490a5781e022ccf8895500b83ce
MD5 acf3cab7babc8957ca8d59fb0dbf8f08
BLAKE2b-256 9ec098d2c2214d882f0639bc4e9f9ba15f82b6ae57a902948534de3a81182173

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7df0d99e189b7027d417d4bfd9b8c53c9c7ed5a0a1495d26a6f547d820eca88
MD5 4d37e9d094d886ce0f83d06667186e1f
BLAKE2b-256 72b3142dd8a64b12d7b101f9f4b6b32609b13ac6358b57f04f44192b40843c09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07398d8a03545b98282f459f2603a6bb271f4448d484ed7f411121a519a7ea48
MD5 fa3403edce0d3d57a17ffe4eb68ee6df
BLAKE2b-256 9c12193a4455db2f149b65943a1eff80f5bc2eb680659b6505ae2fb41256458d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d81047341ab56061aa4b6823c54d4632579c3b16e675089e8f520e9b918a133b
MD5 54f4be096c9c69a6a4a2bee900f15b0c
BLAKE2b-256 c288901da8b6f2518b8872062ec1c23b3cf06c3f57fa929913874267dffd8906

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b0db9a4691074c347f5d7ee830ab3529bc5ad860939de21c1f9c403daf1eda9a
MD5 dfdf1dec760c97f2830265a754dc8d3d
BLAKE2b-256 6d989eaa77f82be2dedb8500587bcbebf745c80a08b2e5203c683f2e1e2cf7c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a6e4dccae8ef5dd76052647d78f02d5d0ffaff1856277d951666c54aeba3ad2
MD5 5a4071285f5353a3151e867e103537f2
BLAKE2b-256 24830f16452e3f8a8b4fa016b065899eb48683cc792b510a231a1981c251b480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfc2d763d05ec7211313a06e8571236017d3e61d5fef97fcf34ec4b36c0b6556
MD5 7365ff890bece6bc0f4cedb945f92c0f
BLAKE2b-256 651fb0df4f763ba6aa56aa12d63b08b2f87391adf85e84e55772f9721bdbb8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 602284e652bb56ca8760f8e88a5280636c5b63d7946fca1c2fe0f83c37dffc64
MD5 26f4f541c2752abacedc9284eed8071f
BLAKE2b-256 b316fb0a9bd6d1b5a9158924b7b998f4aa8afbc063825716a23472daed05626d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89d7baa847383b9814de640c6f1a8553d125ec65e2761ad146ea2e75a7ad197c
MD5 5acbf0f6bc164c67ef9f17311b43a4c3
BLAKE2b-256 1a038105130d1b1d3d3dd2c5915b712a096fadaeb3d472e59a84f1127e982d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d92c6bb9174d47c2257528f64645a00bbc6324a9ff45a626192797aff01dc14
MD5 080f6382a2e4415ba398a490c90ffcd1
BLAKE2b-256 72359c79295df4efb913eb921bd706806404a3fbaadec69cba05bde47f474f3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4e5d163e6644c2bc84dd9f67bfa89288c23af26983d08fefcc2cbc22f6e57e6
MD5 25e25a56c11480015fe0e94abb87600c
BLAKE2b-256 5280934ed944cda7414405ffd7dc47d2b2767be5032a1eb61c2282e709358771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1fc4d3985868860b6585376e511bb32403c5ffb58b0ed913496c27fd791deea
MD5 7379d2fc60f5a35e21ada5048611ff40
BLAKE2b-256 180447c3546228ee303ad28306b1f53b1cbfaac537d4e514c715cb6877827edb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80710d7591d579442c67a3bc7ae9dcba9ff95ea8414ac98001198d894fc4ff46
MD5 03b74781163a8d0046cac979861fad63
BLAKE2b-256 28f901f3ae759b4176ffbf7d71767433c2154f7f140e2465ad886dfaecd652f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cebb3d8bcac4a6b48be65ebbc5c9881ed4a738e27bb96c86d9d7580a1fb09e05
MD5 ea1c4308a0dde8e90a9a0abc3e5437de
BLAKE2b-256 53cc0a58955ec937d61e4cba830df2ec1c909cf8c7e1cf850f7043360e3769db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f38b35ecd2628bf0267761ed659e48af7e620a7fcccfccf5774e7308fb18325c
MD5 637ca58137d555f92a0d3dda7d300527
BLAKE2b-256 d850e6b9f16ec031cdf6a11d31347ada3be4a581337ebd9d3ad644e2cb9e12d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28bfd5244d32faf3e49b5a8d1fab0631e922c26e8add089312e4be19fb05af50
MD5 762534dd2c36a4195282436fe75a6ef1
BLAKE2b-256 2efea44602e61ee23ef6ae64150bb2bf86cac9241c4d668791c8e6255b598aa1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 176fdca18391e1206c32fb1d8265628a84d28333c20ad19468d91e3e98312cd1
MD5 754a0655e8cd0fe40090d25e9294633e
BLAKE2b-256 f04eb2f5dc8584bc11ff871aab182ba15ab2c3d4d9f39cbd8c7749f0fd1275ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 845b178bd127bb074835d2eac635b980c58ec5e700ebadc8355062df708d5a71
MD5 8548a89732bffad5a315d0f9930a79cd
BLAKE2b-256 f70e8185c5b8968cc3db6176d5a2f79f245da1bf963a629fda88640441cea90f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4294f2c1cd069b793e31c2e6d7ac44b121cf7cedccd03ebcc30f3fc3417b314a
MD5 c0ee0582bd018553977cc56e37cf1145
BLAKE2b-256 9e9d75b82308fa1f7759f79758102f911ff4171708a4f24000ad47ffd224519d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1ba93be779a9b8e5e44f5c133dc1db4313661cead8a2fd27661e6cb8d942ee9
MD5 775a86fc1161eb8d9c09983dab444151
BLAKE2b-256 3b330852648d70775d288608346887f77f96b5121faa45ebd67d6ad8c717a20c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 320a1fe403dd83a35709fcf01083d14bc1462e9789b711201349a9158db3a87e
MD5 843778a93637b53169de82f49b1251cb
BLAKE2b-256 861cfc143970687e5847d9bee7f4d42621d6d943deb01ddd43d68cbae44f91c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c9d212e2af72d5c8d082775a43eb726520e95bf1c84826440f74225843975136
MD5 deb9d6a88bdc760f55dcd07702d6391c
BLAKE2b-256 176d28258a56531f2ea966286e79a6ee4451383fdb87ed75393fc70932c93fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 145d78c345a38011497e55aff22c0f8edd40ee676a6810f7e69563d68a125e83
MD5 3795559178c6ce8ebb60c9a9658209cb
BLAKE2b-256 c4803eed97756187d10a1367899fc67096b0f2279c074b26d1ef2f584619e3a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9252c991e8176b5a2fa574c5ab9a841679e315f6e576eb7cf0bd958f3e39b0ad
MD5 74827faa9297d3b6cd70850744af4a43
BLAKE2b-256 41393719e577d35540aba3e9577c554932bf703353a990837ef85f437ff135ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d52a70350ec3dfc39b513df12b03b7f4c8f8ec6873bbf958299999db7b05eb1
MD5 935c6e52bfe4d0232693f5f10ba4e2a3
BLAKE2b-256 a9bd4d359f36ace20c6b9c5955c20c8806fafc74b5cc49814f667b7d60b0450d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95d15cf81cd2fb926f2a6151a9f94c7aacc102b415e72bc0e040e29332b6731c
MD5 8309268782055c063e4d7cd7ea65a109
BLAKE2b-256 7fc75beb99023d013b7c69a3e9fef3e65e211861c672cdabc16ecb334fda1afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f93dbfa5a461107bc3f5026e0d5180499e13379e9404f07a9f79eb5e9e1303d
MD5 8da777b763ea6055b48a1b23ca6c10cf
BLAKE2b-256 7b5ad771749296d332a7793523eb12e9dba273446ea6b090e5d116c7aa08f3a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6d5443104f89a840250087863c91484a72f254574848e951d1bdd7d8b2ce7c9
MD5 347d7b3c48d7c997e7a2f0161c5f18f7
BLAKE2b-256 a136ab3df022950cc7c3b25276ff3960a82be6a606414ee897829159c726e238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8e0a086dbbee406cc6f603931dfe54d1cb2fba585758e06a2de01037784b737
MD5 ec2d781e4745ee516a10e08bf68fb2f6
BLAKE2b-256 6a9c618a15d9e89e152c161f12005f83310ff01a23dee8529af9c7fddc673da1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6526933760ee1e6090db808f1690a111ec409699c1990efc96f134d26925c37f
MD5 5d2b848feb6877983a4d95632c56bb84
BLAKE2b-256 8e60d8c65291d1739203092ce269e18c8bf0f55de62a8397f8a121317217ed88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f530f35e1a57d4360eddcbed6945aecdaee2a491cd3f17025e7b5f2eea88ee7
MD5 2a0e89e83de5f415b8b0dd247b3118dc
BLAKE2b-256 0610575152ed3226b4c868d919083d8aa7c58b6ac8865e9672a1ecc5e088fe1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c46a0afef69d61938a6fe32c3afd75b91dec3ab3056085dc72abbeedcc94166
MD5 e9fcbd6d3620c78e246cc9a30b88b499
BLAKE2b-256 dcfa5b7325494f71a6e90e85084ecc8e045d27b2cec67614dd4b41febfc24ab4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d20072d81cbfdd8e15e6a0c91fc7e3a4948c71e0adebfc67d3b4bcbe8602711
MD5 9c005ab4a2f79d2d37ff620a75662493
BLAKE2b-256 bd09e62e33ace3915d8d799033cafbe3ed18a8ce48a4908b0cfc29c2ee759e31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 320f8734553c50cffe8a8e1ae36dfc7d7be1941c047489db20a814d2a170d7b5
MD5 25a940a881bc27c596786cabd720d03f
BLAKE2b-256 0f32f37887bf45d1a94af582567a5717d9a79da69cc81f8039ea111e5829bac9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 295a5beaecb7bf054c1c6a28749ed72b19f4d4b61edcd8a0815d892424baf780
MD5 77ddf407fff99b12c4e7e6c2719923ec
BLAKE2b-256 e41b5f942eefb9674dce4c5b205e23da4a3251be8b84704a62feaec61cfc7a7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 be1f10145f7ea76e3e836fdc5c8429c605675bdcddb0bca9725ee6e26874c00c
MD5 0312f22ec8abf6bd10da33fe7053767b
BLAKE2b-256 c8872030eefb7e5f471f27043d73d4abc15ce08b0220a5a8b94935ba17f257a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 429.5 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 7738147cd9dbd6d18d5593b3491b4620e13b61de975fd737283e4ad6c255c273
MD5 5d37473cf0987ba0a7b98c3482d086cb
BLAKE2b-256 3c7da4063c415f252c5b7cb0b2ec001fad6dcb0d3a0a06c3e148a03f10a5b452

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c22591cff80188dd8543be0b559d0c807f7288bd353dc0bcfe539b4588b3a5cd
MD5 17cf6bfe7413b246749ca2c4b2451796
BLAKE2b-256 7725383fb7abaff00d57e480c6a79d21be121b2cb4a9a542e1e6a7b899841230

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dfec57f15f53d677b8e4535695ff3f37df7f8fe431f2efa8c3c8c4025b53d1eb
MD5 c5b647b4750ee63d60fb0d263896327a
BLAKE2b-256 582882ae00421ff5d11d6f7bfd45c80e0c3969d6f5b63dc6a22e64067ecce855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c6c71e198b36f0f0dfe354f06d3655ecfa30d69493a1da125a9a54668aad652
MD5 9bdf955b57cd83f3f6631b09669278a0
BLAKE2b-256 43efbcbbe51b5ee555fbf4abb942675d4485fc14bd827d47e69a114bed5e4275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64b9122be1c404ce4eb367ad609b590394587a676d84bfed8e03c3ce76d70560
MD5 86f0dff35722e2c63e9229354ede7dbf
BLAKE2b-256 b06bbfbe7aec18e98cf730df40cbfa55765be752fd81a45f9eaeb68ee3e55713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cf113a46d81cff0559d57aa66ffa473d57d1a9496f97426318b6b5b14fdec1c
MD5 d4569170b3b2f7095dcc1d4de182de67
BLAKE2b-256 bc661076807b4a69bc158eb550e5d3456afff12f6d68917059f980da3dd8b19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81a3ebc33b1367f301d1c8eda57eec4868e951504986d5d3fe437479dcdac5b2
MD5 c4b12e8968ce79e5c1ea3ae733afd35a
BLAKE2b-256 c6f61c1b05577591c672ae2c6e733d654ea3cf0f87b20436939b2cf89e9e4e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4e0a3ea7fd01cf0a36509f320226bd8491e0f448f00b8cb89f601c109f6874e1
MD5 bb183eb9caa818957ecaf1bc738250e8
BLAKE2b-256 aa0052722c84577884688020e937a2e9c67981952934526fafff81ace4e42979

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2b4c95c47fb81b19ea77dc1c50d23af3eba87c9628fcc2e03d44124a3d336ea
MD5 2aee3c8d6e94f5948ab9414145ea66df
BLAKE2b-256 861c6a3332885e670116cae4a81f407cf4e072f1f0e173500442214a36907f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33ab8c031f788609924e329003088831045f683931932a52a361d4a955b7dce2
MD5 064657d8e35494a97aa93ac85969cc76
BLAKE2b-256 a8c087520c824d2d3d746d1cd8cece29e571067cd4b756220bac2aba20ef6134

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c771f1a8b3cd2d697baaf57e9cfa4ae42371cacfbea42ea01d9577c06d92f96
MD5 8b41b01c6e0c2339022fd401ad238fc0
BLAKE2b-256 f507a147e49caa35c08265c34b832ff3bc356a047c2291b76401af4374122973

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d5b66d457d2c5739c184a777455c8fde7ab3600a56d8bbebecf64f7c55169e1
MD5 a86b2d6f23bf3b8741c7662b6dbd9dd3
BLAKE2b-256 e4511cbc8834af1930a65c3d1e31a808a2684728e22fab17a41fceef67b76d92

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5296669bff390135528001b4e48d33a7acaffcd361d98659628ece7f282f11aa
MD5 6a61c8dd53152554a9ab6fb94585bee9
BLAKE2b-256 28800ecf8c4cbfbb0cbe39f532dfaf4a2cdaec2ea6ea03d68bfd2b1c4943f689

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a351986d6c9006308f163c359ced40f80b6cffb42069f3e569b979829951038d
MD5 ea62d220065cfbd35ba3d625f2685ebb
BLAKE2b-256 7ceea56f1d01fba5ba75e0a77ea96049a2d30efb62fa00e55f12d8fd8a17080b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d67dbc8da2dac1644d71c1839d12d12aa333e266a9964d5b1a49feed036bc94
MD5 1eaf52d606faf9363b3046b3e0288c92
BLAKE2b-256 7f6e999f8a3828c2de29561a799747b2b49b92766cea7f24cf768c897edef001

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e66b3c9f8b89d4fd58a59c04fdbf10602a17c914fbaaa5e6ea593f1d54b06362
MD5 b809aebf126c1a0088f58aa685ef889c
BLAKE2b-256 3b60a9d60e6d12c3d7a8ab955dc4da98922441e9b6d36ccab4a32d75f25ab1d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3e08aef4ea05afbc0a70cd23c13684e7f5e074f02450964ec5cfa1c759d33d2
MD5 3690aab61119c61f7b668fcc9854eccb
BLAKE2b-256 c3047250c5f3ae28e76e5ffa08c1c5d791876726f95ca4be35a000020db3a107

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 87e18f29bac4a6be76a30e74de9c9005475e27100acf0830679420ce1fd9a6fd
MD5 fc89a23723c3a62f50cb08142d43de36
BLAKE2b-256 d9cbc656be8f48076b799cd9e8edd4882b6aeb42468589dbf45c54b89aa63410

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3492ae1f97209c66af70e863e6420e6301cecb0a51a5efa701058aa73a8ca29e
MD5 732ad8b0638c7d7187df1554348042cf
BLAKE2b-256 466a4fb1962c9c92d7a7edd7caa81fc367841ec8d58b19446a6858d3a2150dbf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 3100a2352bdded6232b385ceda0c0a4624598c517d52c2d8cf014b7abbebd84d
MD5 00457cdad5818e43a0ca281a7205a1af
BLAKE2b-256 788cb9a40af9c2d5e96d8501315179a80e5e1b30c50cd13e231572128e11a8d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 208a61db8b8b647fb5b1ff3b52b4ed6dbced01eac3b61009958adb203596ee99
MD5 0072dea275f86ca577162e7f87862b3c
BLAKE2b-256 aaeaca5732c05b18764cb0edb6779ed4c89f1fdb6c14dfa97a105726e0d90069

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3fedad05147b40ff8a93fcd016c421e6c159f149a2a481cfa0b94bfa3e473bab
MD5 494e50c42dbb43790140ad2446233836
BLAKE2b-256 8caaef56abeabff094082c887226611543bc76c44721fa3da5815f4ec74e31da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 507.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6632b1c63d58cddc72f43ab9f17267354ddce563dd5e11eadabd222dcc808808
MD5 99e6890bb702456d4fb3507d8d64cd89
BLAKE2b-256 ddb1cb4839336e1293b50480adf93883b439f32ce6265dc77842ed3283f503be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 498.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5f83bb59d0ff60c6fdb1f8a7b0288fbc4640b1f0fd56f5ae2387749c35d34e3
MD5 7311505eb99b40c49b5929d0648c5ae3
BLAKE2b-256 a3ec0c8deda9a905f1443b0cd6d772b2a5623a516da6186e5dd7e5283b4516a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 fc2048d13ff427605fea328cbe5369dce549b8c7657b0e22051a5b8831170af6
MD5 2fdec1de0faae237525c5a2bcd3f942e
BLAKE2b-256 ca4a059cc1b198a6f21916b8cb62f82066d552c2c474127ea7eb25acf6ffe975

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 1b5cb75d2642ff7db823f509641f143f752c0d1ab03166cafea1e42e50469834
MD5 a644675b65c43d97f47c8152bbc29d47
BLAKE2b-256 683390e9192a5012196d08f6532d114b56ad26727dfc4da4dd140bbad008500d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 ab23b0545ec71ea346bf50a5d376d674f56205b729980eaa62cdb7871805014b
MD5 57aed4a00f1cf2ebfc98af3d19829ffb
BLAKE2b-256 58c282ace15389f0d03cd125cb84b8d59d49f358a580733906612c63937f2051

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8f7dd025cb0bf19e2f60a64dfc24b513c8330e0cfe4a34ccf941eafd6194d9e
MD5 f42352e7f3c6916915d4431920d02708
BLAKE2b-256 3e998138ef4518a63e6691c036c3d44b97693d0ccd12c37a31c15463c191ef7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 495.1 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 06b64cdf5121f86b78a84e61b8f899b6988732a8d304b503ea1f94a676221c06
MD5 97a5f2d318b065e876c9dd30cddf8337
BLAKE2b-256 70776d463f65d412658be5edf3930470cd77a0aedcdae5b2a1e6636c9fe24698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 7b4a9fcd95e978cd3c96cdc2096aa54705266551422cf0883c12a4044def31c6
MD5 c23ce6f5e52e3e29031ea8441f7bedd6
BLAKE2b-256 1cad63caee5a961ba614733b88d9d3a2621e687ade77340f18a6022f478e3061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 351a2efe1c9566c348ad0076f4bf541f4905a0ebe2d271f112f60852575f3c16
MD5 32a19bd68c572b1674f80b04cc402bf2
BLAKE2b-256 084de56df0a52379ebc2adc7470af8ef13dd5df79862ef017be78817968f9a1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b779e87300635b8075e8d5cfd4fdf7f46078cd7610c381d956bca5556bb8f97
MD5 430c4a39aeef63ee21fb44f28246ab8c
BLAKE2b-256 f4990b39f61c53cb72adb015f5704d0263950866ccf1a4ef9c5880eee3c389b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71c0db2c313ea8a80825fb61b7826b8015874aec29ee6364ade5cb774fe4511b
MD5 b3886e243c42eadc5c2bce9ff99d4b88
BLAKE2b-256 fcc7fdcd1e724029f6d053856e4ce2fef3fd7b6a9e962585177a56da3a5829fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 494.9 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f0ac6e0203bd88863649e6ed9c7cfe53afab304bc8225f2597c4c0a74e4d1f0
MD5 b44e4d7dba742f947bad0f625561e693
BLAKE2b-256 cf266d606432fcdef39f5ec5076045dabf34a39bb9bbdc7aeeba0379a564224e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 648fcfd8e019b122b7be0e26830a3a2224d57c3e934f19c1e53a77b8380e6675
MD5 95ec996a4b1e417717227c3896906efc
BLAKE2b-256 60372b47d177f54da9f9662e2ac13f8841089da1d41ff6efe115cc4c3711cf56

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.12.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 5fdffb0cfeb4dc8646a5381d32ec981ae8472f29c695bf09e8f7a8edb2db12ca
MD5 8cd2cb8c13152c7a9c929e073bcaa83e
BLAKE2b-256 26fa8a0768c31cf60e05a42078446c9ddb10d176c1753dfc5357954b15a2e063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.12.3-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8d6bf6fcd42cde2f02efb8126812a010c297eacefcd090a609639d2aeda6185
MD5 d3285293b213efe197ecacefb538f2ca
BLAKE2b-256 de4861345851ea982e68582963b8b7cb26de6d25c2ef8cf32638d091d6a9e2e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-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/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a766157b195a897c64945d4ff87b050bb0e763bb78f3964e996378621c703b00
MD5 2ad510dd71a9b8317418d9f2dff43570
BLAKE2b-256 5beecff4fbaf2c573a557eab5b44bab924935fe203902b361aa19a22e1cb7bb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c7ad5cab282f53b9d78d51504330d1c88c83fbe187e472c07e6908a0293142e
MD5 260ada3e17583317a9a43da8c55c7cd4
BLAKE2b-256 7345041d628bc4cc3fac13eff1c7d388db58d7b38fab581fc4692481f40f6809

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 494.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a055d29f1302892a9389a382bed10a3f77708bcf3e49bfb76f7712fa5f391cc6
MD5 421cbeabdea32f736cdf8474780964a5
BLAKE2b-256 b513732a84302f30475c804fb1bcb1f61a6eb56c92f5f1cef67fe6e6708bbc21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.12.3-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 390.9 kB
  • Tags: CPython 2.7m, macOS 10.14+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.8

File hashes

Hashes for pymongo-3.12.3-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 c164eda0be9048f83c24b9b2656900041e069ddf72de81c17d874d0c32f6079f
MD5 4368b01f5cb09c2710268cf3478ce663
BLAKE2b-256 32f2caa94e88e9351a34d18ab622e426f432f918da3f5a412a2a8c52660b9f2d

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