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, and 4.4.

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+.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymongo-3.11.2-py2.7-macosx-10.14-intel.egg (774.7 kB view details)

Uploaded Egg

pymongo-3.11.2-cp39-cp39-win_amd64.whl (383.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-3.11.2-cp39-cp39-win32.whl (377.9 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-3.11.2-cp39-cp39-manylinux2014_x86_64.whl (518.1 kB view details)

Uploaded CPython 3.9

pymongo-3.11.2-cp39-cp39-manylinux2014_s390x.whl (520.9 kB view details)

Uploaded CPython 3.9

pymongo-3.11.2-cp39-cp39-manylinux2014_ppc64le.whl (525.9 kB view details)

Uploaded CPython 3.9

pymongo-3.11.2-cp39-cp39-manylinux2014_i686.whl (511.2 kB view details)

Uploaded CPython 3.9

pymongo-3.11.2-cp39-cp39-manylinux2014_aarch64.whl (518.0 kB view details)

Uploaded CPython 3.9

pymongo-3.11.2-cp39-cp39-manylinux1_x86_64.whl (500.0 kB view details)

Uploaded CPython 3.9

pymongo-3.11.2-cp39-cp39-manylinux1_i686.whl (511.2 kB view details)

Uploaded CPython 3.9

pymongo-3.11.2-cp39-cp39-macosx_10_9_x86_64.whl (380.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pymongo-3.11.2-cp38-cp38-win_amd64.whl (383.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pymongo-3.11.2-cp38-cp38-win32.whl (377.8 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-3.11.2-cp38-cp38-manylinux2014_x86_64.whl (531.6 kB view details)

Uploaded CPython 3.8

pymongo-3.11.2-cp38-cp38-manylinux2014_s390x.whl (534.1 kB view details)

Uploaded CPython 3.8

pymongo-3.11.2-cp38-cp38-manylinux2014_ppc64le.whl (539.5 kB view details)

Uploaded CPython 3.8

pymongo-3.11.2-cp38-cp38-manylinux2014_i686.whl (521.1 kB view details)

Uploaded CPython 3.8

pymongo-3.11.2-cp38-cp38-manylinux2014_aarch64.whl (530.0 kB view details)

Uploaded CPython 3.8

pymongo-3.11.2-cp38-cp38-manylinux1_x86_64.whl (510.8 kB view details)

Uploaded CPython 3.8

pymongo-3.11.2-cp38-cp38-manylinux1_i686.whl (521.1 kB view details)

Uploaded CPython 3.8

pymongo-3.11.2-cp38-cp38-macosx_10_9_x86_64.whl (380.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pymongo-3.11.2-cp37-cp37m-win_amd64.whl (382.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymongo-3.11.2-cp37-cp37m-win32.whl (377.2 kB view details)

Uploaded CPython 3.7mWindows x86

pymongo-3.11.2-cp37-cp37m-manylinux2014_x86_64.whl (512.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.2-cp37-cp37m-manylinux2014_s390x.whl (513.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.2-cp37-cp37m-manylinux2014_ppc64le.whl (520.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.2-cp37-cp37m-manylinux2014_i686.whl (500.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.2-cp37-cp37m-manylinux2014_aarch64.whl (511.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.2-cp37-cp37m-manylinux1_x86_64.whl (494.1 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.2-cp37-cp37m-manylinux1_i686.whl (500.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.2-cp37-cp37m-macosx_10_6_intel.whl (414.6 kB view details)

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

pymongo-3.11.2-cp36-cp36m-win_amd64.whl (382.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymongo-3.11.2-cp36-cp36m-win32.whl (377.2 kB view details)

Uploaded CPython 3.6mWindows x86

pymongo-3.11.2-cp36-cp36m-manylinux2014_x86_64.whl (509.5 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.2-cp36-cp36m-manylinux2014_s390x.whl (510.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.2-cp36-cp36m-manylinux2014_ppc64le.whl (518.0 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.2-cp36-cp36m-manylinux2014_i686.whl (499.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.2-cp36-cp36m-manylinux2014_aarch64.whl (508.7 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.2-cp36-cp36m-manylinux1_x86_64.whl (492.9 kB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pymongo-3.11.2-cp36-cp36m-macosx_10_6_intel.whl (411.9 kB view details)

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

pymongo-3.11.2-cp35-cp35m-win_amd64.whl (382.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

pymongo-3.11.2-cp35-cp35m-win32.whl (377.2 kB view details)

Uploaded CPython 3.5mWindows x86

pymongo-3.11.2-cp35-cp35m-manylinux2014_x86_64.whl (508.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.2-cp35-cp35m-manylinux2014_s390x.whl (509.9 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.2-cp35-cp35m-manylinux2014_ppc64le.whl (517.1 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.2-cp35-cp35m-manylinux2014_i686.whl (498.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.2-cp35-cp35m-manylinux2014_aarch64.whl (507.7 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.2-cp35-cp35m-manylinux1_x86_64.whl (492.7 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.2-cp35-cp35m-manylinux1_i686.whl (498.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.2-cp35-cp35m-macosx_10_6_intel.whl (411.9 kB view details)

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

pymongo-3.11.2-cp34-cp34m-win_amd64.whl (378.5 kB view details)

Uploaded CPython 3.4mWindows x86-64

pymongo-3.11.2-cp34-cp34m-win32.whl (375.2 kB view details)

Uploaded CPython 3.4mWindows x86

pymongo-3.11.2-cp34-cp34m-manylinux1_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.2-cp34-cp34m-manylinux1_i686.whl (480.2 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.2-cp34-cp34m-macosx_10_6_intel.whl (411.5 kB view details)

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

pymongo-3.11.2-cp27-cp27mu-manylinux1_x86_64.whl (488.0 kB view details)

Uploaded CPython 2.7mu

pymongo-3.11.2-cp27-cp27mu-manylinux1_i686.whl (480.1 kB view details)

Uploaded CPython 2.7mu

pymongo-3.11.2-cp27-cp27m-win_amd64.whl (378.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

pymongo-3.11.2-cp27-cp27m-win32.whl (375.0 kB view details)

Uploaded CPython 2.7mWindows x86

pymongo-3.11.2-cp27-cp27m-manylinux1_x86_64.whl (488.1 kB view details)

Uploaded CPython 2.7m

pymongo-3.11.2-cp27-cp27m-manylinux1_i686.whl (480.0 kB view details)

Uploaded CPython 2.7m

pymongo-3.11.2-cp27-cp27m-macosx_10_14_intel.whl (375.9 kB view details)

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

File details

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

File metadata

  • Download URL: pymongo-3.11.2.tar.gz
  • Upload date:
  • Size: 770.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2.tar.gz
Algorithm Hash digest
SHA256 c2b67881392a9e85aa108e75f62cdbe372d5a3f17ea5f8d3436dcf4662052f14
MD5 90e8eb35a63395c32d104440fd4435cd
BLAKE2b-256 2cb404a1f447c01133bf84f52b82db0005751d2226a2b221b2cdb9c14cecb94f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 774.7 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 c1d1992bbdf363b22b5a9543ab7d7c6f27a1498826d50d91319b803ddcf1142e
MD5 1606f441fe636c167edad51f7586f9ad
BLAKE2b-256 3d52be2871ec1f44a6091789fd8097490d9d326ef2616f817dac6fdb7c26ed4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 383.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a53a751d977ad02f1bd22ddb6288bb4816c4758f44a50225462aeeae9cbf6a0
MD5 5a7f0e2da2142ace646292c3c0df1d33
BLAKE2b-256 0f4e0f43410f60c648c6c308b0080a0f1f1f208118d11b669e2ce34ccdaf0668

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 377.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e565d1e4388765c135052717f15f9e0314f9d172062444c6b3fc0002e93ed04b
MD5 e05f06fd280318dfd8a93386bdf095c0
BLAKE2b-256 b24da4b5b657069cae29157bf3b94021c0dcb748c479cb7072c25595950b0ec6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 518.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 270a1f6a331eac3a393090af06df68297cb31a8b2df0bdcbd97dc613c5758e78
MD5 727a7c310e57b9320c0b65ca6b7928a1
BLAKE2b-256 ca93705580789647dca4650a7753e6cb979974299a6b841fdf0907b6ecf076e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 520.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4be4fe9d18523da98deeb0b554ac76e1dc1562ee879d62572b34dda8593efcc1
MD5 da399af0d2b4fbffd742e79b23215748
BLAKE2b-256 bdaba4e9f116d90a83d8013631ed371e8e28019c129896d329014e5a04dc7afd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 525.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 944ed467feb949e103555863fa934fb84216a096b0004ca364d3ddf9d18e2b9e
MD5 5603d4c797e33969d76352cbbbb1080b
BLAKE2b-256 47e73d7d24f56d412aef67f92c98ee0fb1f5ae879e93f8b0ac7d92c3b592ce7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 511.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6175fd105da74a09adb38f93be96e1f64873294c906e5e722cbbc5bd10c44e3b
MD5 3034d90ec031d871c7e7dc4767362fc4
BLAKE2b-256 914f55c178ddbcfa10615551624cec81514cd1bc4e7d0e11c7b4d455851eca81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 518.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d19843568df9d263dc92ae4cc2279879add8a26996473f9155590cac635b321
MD5 150b53693a982ea118eda8cb6a6537af
BLAKE2b-256 c83d8931c92dbbcb286998efb0d8f9ba400b488db12716ba0cba70a5650d1478

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 500.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7f0c507e1f108790840d6c4b594019ebf595025c324c9f7e9c9b2b15b41f884e
MD5 cc5b86d745bd61b361facf504ccf6260
BLAKE2b-256 ce7b0183e905096d69af915453f18dc8b190f0bba0dcd62f0b5f42a07bb01c0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 511.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed98683d8f01f1c46ef2d02469e04e9a8fe9a73a9741a4e6e66677a73b59bec8
MD5 542147ed66bbab8ec681e44451777970
BLAKE2b-256 097ec105b6c93861d8667a4e1f8be38c0cb1f1553c75eeb4d6e2240fe86e9e23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 380.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 061d59f525831c4051af0b6dbafa62b0b8b168d4ef5b6e3c46d0811b8499d100
MD5 252e7dd62caaa348222e72053ddc3044
BLAKE2b-256 d71919f25b9f79c077bd11533e9be273824f4383dd33bcad42735457d76ea87c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 383.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b4294ddf76452459433ecfa6a93258608b5e462c76ef15e4695ed5e2762f009f
MD5 f303b506dbad3b3cadc301e7aef90214
BLAKE2b-256 419dc0e2f35b9d573536d986329e44a37bb46093030cbdfe2ee8e07660ff016e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 377.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 047c325c4a96e7be7d11acf58639bcf71a81ca212d9c6590e3369bc28678647a
MD5 5e14a7d69d5c69cca391859a92e1c114
BLAKE2b-256 a331b4c18274877d81d79c7df0abca51168cfada3f82fa202cd6db5c80802a51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 531.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d3ae537f61011191b2fd6f8527b9f9f8a848b37d4c85a0f7bb28004c42b546
MD5 6ede05c0fcc045429f6a0b58c40e1f92
BLAKE2b-256 1335a61963c266fafb9e7da07f6a33b7c71e1682aa9d98ae1d6afbf6c1086de3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 534.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 540dafd6f4a0590fc966465c726b80fa7c0804490c39786ef29236fe68c94401
MD5 c19c4990b5151ac13a5998dfff7b2c4c
BLAKE2b-256 dc402bcda704095fabbccf6f6b01dfc1ce50e96fb8117fd7d92735be65ba1211

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 539.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e7a6057481a644970e43475292e1c0af095ca39a20fe83781196bd6e6690a38
MD5 74ae69b9549a3396dc2a83bcbd0dda21
BLAKE2b-256 4ab4e1beeec87e3eb67257dbe9fcfab87f43c846f632dcd8670b3ddcc104e1da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 521.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b95d2c2829b5956bf54d9a22ffec911dea75abf0f0f7e0a8a57423434bfbde91
MD5 87573afbfaa782d1e8339bd7d282ceb0
BLAKE2b-256 db46b418b770a913a7c42d5dc8e95adb0f401d0cdc081ad6e22d99ee02de9f9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 530.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa741e9c805567239f845c7e9a016aff797f9bb02ff9bc8ccd2fbd9eafefedd4
MD5 5e6d23633ec6cde8d33b6651cbd6670f
BLAKE2b-256 0e544a82167c9836c77ab87462f977e0dd8bcca06a6c947413c4d2f3bc7c0d46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 510.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 523804bd8fcb5255508052b50073a27c701b90a73ea46e29be46dad5fe01bde6
MD5 fe1ae8ff03585f613d4354339205cc1a
BLAKE2b-256 1f6c36ac26a3e74c20fda39bd5a76accb1b356051fc6e4a900bc8959bc6a0672

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 521.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 813db97e9955b6b1b50b5cebd18cb148580603bb9b067ea4c5cc656b333bc906
MD5 c7186ca19e4c0d47a2e71e94b7472348
BLAKE2b-256 0b006c765573be60460ca392e24023d9f8136bf55987e1411b2df01eff077840

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 380.5 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e69fa025a1db189443428f345fea5555d16413df6addc056e17bb8c9794b006
MD5 6dc9ed72b5881a3832cd7da1e3ea1baa
BLAKE2b-256 de0a56ee99e2fbfe0e1156c63544552a8f6ae88344747501a67cd8e2550f9b8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 382.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1580fad512c678b720784e5c9018621b1b3bd37fb5b1633e874738862d6435c7
MD5 7bead70abb9680ef827948c117fba2a3
BLAKE2b-256 f880fbe067aff961662cd3e569bcd2cacd02d7b609f6ebe64075b65e5cfce0a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 377.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 047cc2007b280672ddfdf2e7b862aad8d898f481f65bbc9067bfa4e420a019a9
MD5 2afeda915b60027dc74d2819c3b3f4a2
BLAKE2b-256 a93f7d91bc7de48f4e308a5abc3ebb01cccfb2dd46dd0068d9bb5d13e1bd08fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 512.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6122470dfa61d4909b75c98012c1577404ba4ab860d0095e0c6980560cb3711f
MD5 daf9f13cbee99b97bd50ea5915095a30
BLAKE2b-256 a2ae8c75a714e10f93e5c2da8dc108bb2501bf2f6bcd62e358a2e8e53cde9c60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 513.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29a6840c2ac778010547cad5870f3db2e080ad7fad01197b07fff993c08692c8
MD5 1bb93ce96976b9f5e19ebe38a19dc2e1
BLAKE2b-256 8b89fecd0021644fc664cbce12233c018d8396cc9d36b32f52cef019d287d701

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 520.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21d7b48567a1c80f9266e0ab61c1218a31279d911da345679188733e354f81cc
MD5 444595a53ee68db2a76f94cc96b77e55
BLAKE2b-256 3f858b5eab4453162f9a156174eb38ba92078c40f406ed9c407c45273e17f93b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 500.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46792b71ab802d9caf1fc9d52e83399ef8e1a36e91eef4d827c06e36b8df2230
MD5 d48295e25156d9cb399d0f49813a2c3d
BLAKE2b-256 408d2681c26b191703a743a02655d6f6262436c27c7fca923213e16234c0612d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 511.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b50af6701b4a5288b77fb4db44a363aa9485caf2c3e7a40c0373fd45e34440af
MD5 7aad19febfbb7cd7f565864917efa163
BLAKE2b-256 de3059f6554ec40946e78aa1ba31ad6f71c18ad3bd41281618cfce09ca1017a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 494.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 202ea1d4edc8a5439fc179802d807b49e7e563207fea5610779e56674ac770c6
MD5 153d20c64b03879cc7a4fe56c4d8298d
BLAKE2b-256 5aae657a4c1950704d0c2c5f1c044824c2ccf0cd5fd5b853d9975e0d585041dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 500.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ec8f8e106a1476659d8c020228b45614daabdbdb6c6454a843a1d4f77d13339
MD5 36cd29863776870d1264f65cbba38dc8
BLAKE2b-256 b135de845a1004ae59c13c90d5bbc6f0bccc0483b7911aa042ee88bbc4fb4861

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 414.6 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3646c2286d889618d43e01d9810ac1fc17709d2b4dec61366df5edc8ba228b3e
MD5 ef73e5521c596bbcbbff818a80fccc7f
BLAKE2b-256 0b4cf82af975d3115add0d1cda9e693685f1e573c63d19d9f4005722ce43baf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 382.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 082832a59da18efab4d9148cca396451bac99da9757f31767f706e828b5b8500
MD5 c59e65d290b1c1aa1291c57768821516
BLAKE2b-256 48fbce200cb77cc37d7b8f8e29a66b4911d42305d7d699fb59ca2a9be8450890

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 377.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d6f82e86896a8db70e8ae8fa4b7556a0f188f1d8a6c53b2ba229889d55a59308
MD5 3ca736845f1e6f78841d1ad065880201
BLAKE2b-256 21faf065298efa04f0d06034d03b721f2105f4bf5b65a439f9aab40f8f3db523

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 509.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76579fcf77052b39796fe4a11818d1289dd48cffe15951b3403288fa163c29f6
MD5 2b797d5cfa1c87d8b3af824d04d25e56
BLAKE2b-256 abdf7eaf8fcbe328df4aaaa527758bf88e2f6d4a35f4adc58c18981d9d94a40e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 510.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc4946acb6cdada08f60aca103b61334995523da65be5fe816ea8571c9967d46
MD5 32858431e18f79c88e57fe9d2446c3ae
BLAKE2b-256 e18e085cde98065b3409a3747d7021f28436b61a153e0b09f3156e969bea6a59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 518.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1222025db539641071a1b67f6950f65a6342a39db5b454bf306abd6954f1ad8a
MD5 7c7954239a66724a00864e33b59663b5
BLAKE2b-256 dfe7f33369ec057431ae8f9813e40650eb8223161e30bce3ba33da40a1a0b6bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 499.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce9964c117cbe5cf6269f30a2b334d28675956e988b7dbd0b4f7370924afda2e
MD5 59c26196e64ad0c69ffa7f2b4b496cf8
BLAKE2b-256 99330ac334937c5e08185216d21bd2e2dd830bff3f22bfda18ccff6632c1b409

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 508.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45728e6aae3023afb5b2829586d1d2bfd9f0d71cfd7d3c924b71a5e9aef617a8
MD5 75acd75afd92a6c18d21df35eadbde39
BLAKE2b-256 93f9cdfaa4b074c273783f9203d410fd373475fa012e69a3ba8976a4927cc49c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 492.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5ad7b96c27acd7e256b33f47cf3d23bd7dd902f9c033ae43f32ffcbc37bebafd
MD5 a9e833b97431849a5b02430a94032361
BLAKE2b-256 0f84b329b5debc71693111780b389222897949f084a833dd996b4e7a36c839fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 499.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 82f6e42ba40440a7e0a20bfe12465a3b62d65966a4c7ad1a21b36ffff88de6fe
MD5 4147afe3a5fb1fd1bb615d2d06d6ff31
BLAKE2b-256 5d291cd5328066372d6fcbb2a975cfdeb931f4bff15ae7ce2b5260e816c439a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 411.9 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 96c6aef7ffb0d37206c0342abb82d874fa8cdc344267277ec63f562b94335c22
MD5 0ce69453df49b88a3e53dcb5902d936b
BLAKE2b-256 603cf864c5652ab5960ba4c8803b0851db86d7d594327f429b497a7c044d7b07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 382.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 019ddf7ced8e42cc6c8c608927c799be8097237596c94ffe551f6ef70e55237e
MD5 14742250c1073613f1bc6c9e1f1dc730
BLAKE2b-256 a9aad8603c7badb047988fab56856ced24f4430c0b1b39ce9060d0f85a79d976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 377.2 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ef18aa15b1aa18c42933deed5233b3284186e9ed85c25d2704ceff5099a3964c
MD5 5fb929ab9e66e7594daf9c95c92b2afa
BLAKE2b-256 81606144dd1aa04f1cce9c0c3ef0d68b1de713a1432e3bab059f2f56c0928a73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 508.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 264843ce2af0640994a4331148ef5312989bc004678c457460758766c9b4decc
MD5 bc25a9a85aec7b70289f4f8b4e4d985a
BLAKE2b-256 59f4f698e4b1a0d99b50c6f4ff12c7ff1686a247f7e1f353355ac88ca49e94b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 509.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5980509801cbd2942df31714d055d89863684b4de26829c349362e610a48694e
MD5 0759e74b9d5160848a1e203f2899b4cf
BLAKE2b-256 b10e0dcf6363bb2926116781fbbbd4c181cb5f18568cd4f51fdc2b5dc317ef68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 517.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6cf288c9e03195d8e12b72a6388b32f18a5e9c2545622417a963e428e1fe496
MD5 9f0d1cac8af7bc0612253c06c5b4cea8
BLAKE2b-256 b8a5377a0909f9a3a5b68daca776e18511f8c0832e223eb37173a876949426ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 498.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6aac7e0e8de92f11a410eb68c24a2decbac6f094e82fd95d22546d0168e7a18b
MD5 0b6a169b406cb9bf509117d86bb22bcc
BLAKE2b-256 3fb40260a8350a3bc837e8cd62383c96396d329b869f67ef83d1a36a37d4e92d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 507.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc421babc687dc52ce0fc19787b2404518ca749d9db59576100946ff886f38ed
MD5 00c6bf551b76b1574d1b8d3bb3f66202
BLAKE2b-256 e48aac29855009d3e3ce0f23e8b2b206ab4c30f956a401ed3be352ca12e1975f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 492.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c812b6e53344e92f10f12235219fb769c491a4a87a02c9c3f93fe632e493bda8
MD5 c81412b74042b51c7bccf28b0d2d2d71
BLAKE2b-256 e489d1817588fba6e86bab95b25d441673d7bb7056dccafcfd9a90b74f81ed65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 498.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a118a1df7280ffab7fe0f3eab325868339ff1c4d5b8e0750db0f0a796da8f849
MD5 23db98be1450d58812cd3e3c3990088f
BLAKE2b-256 af835455c156c80611935136bd6fb82ca224d7e10b0a199eb10285f0e9c78433

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 411.9 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 36b9b98a39565a8f33803c81569442b35e749a72fb1aa7d0bcdb1a33052f8bcc
MD5 9ad11ff9b5f1946acb6c715ad75b818d
BLAKE2b-256 7fef8889cfdda32b71b34ddc1d2661d6d5f4943a97672a1d3adfb0cc203bd484

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 378.5 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 44376a657717de8847d5d71a9305f3595c7e78c91ac77edbb87058d12ede87a6
MD5 9d6399eab6aca7429ef7d3b51a2b4647
BLAKE2b-256 d76de18be32faf2dc2045b05d666a243d3685d772fdc1a9fa214e619edb3ea2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 375.2 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 422069f2cebf58c9dd9e8040b4768f7be4f228c95bc4505e8fa8e7b4f7191ad8
MD5 5b0253b54e89cd60b5357fc9a0489221
BLAKE2b-256 77513ce7fd56a83d22a0308c5a127a50cf3fd9d47a19476ec73f82090a6f26e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 488.7 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4942a5659ae927bb764a123a6409870ca5dd572d83b3bfb71412c9a191bbf792
MD5 9896ce5dd62d4791d25aa25c79d3e57f
BLAKE2b-256 7219e3cbb125dc2d315f57caa450da0f5b8afe2ad9d710598be38a720fd9be82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 480.2 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c046e09e886f4539f8626afba17fa8f2e6552731f9384e2827154e3e3b7fda4e
MD5 2364e809e1e3295eabe8ac961b61adb8
BLAKE2b-256 1d416ae1854e7fac4e46cbee5106ab059ca310d75f3567029cbe561a8095b0cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 411.5 kB
  • Tags: CPython 3.4m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6700e251c6396cc05d7460dc05ef8e19e60a7b53b62c007725b48e123aaa2b1c
MD5 a3a4c917ca1b82634475f6afb5fa62ae
BLAKE2b-256 c020d0ee1867ce7698c669ecbd35b718c61d68f41a5556a81927fe475efc12d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 488.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b875bb4b438931dce550e170bfb558597189b8d0160f4ac60f14a21955161699
MD5 46baf7d8793dd373e037261a11298599
BLAKE2b-256 c08569e05399d208b33fefec8e5bc03ea90e38361f3c0e4ca2d094a45b045e09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 480.1 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fcc66d17a3363b7bd6d2655de8706e25a3cd1be2bd1b8e8d8a5c504a6ef893ae
MD5 9fe1e74a438ce28c348ac43ce94cc292
BLAKE2b-256 2993e661f0f1d77b586a7efa7525c8fd033a66ee0bb3d4a37f4616c0790a0c14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 378.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 82d5ded5834b6c92380847860eb28dcaf20b847a27cee5811c4aaceef87fd280
MD5 865345c65c620d4c5dbd14f3a7ab4e87
BLAKE2b-256 6e0427b6c244128357404b8ec8d4b7f69c3078b25b0b40e45be7c2e9dda0c450

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 375.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 ce53c00be204ec4428d3c1f3c478ae89d388efec575544c27f57b61e9fa4a7f2
MD5 946be0f614405f3062d144830408d3b8
BLAKE2b-256 f6a6f10dac0eacdc1a23db6606e9ddf3ac069a3bb9f23fa1405f90f6c4ad9a6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 488.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d669c720891781e7c82d412cad39f9730ef277e3957b48a3344dae47d3caa03
MD5 8654d51af78faedfc9438f577875d938
BLAKE2b-256 02a78fbe7cf243d5067310c5c876284471a4a4e6577cd00cfe5dc2b3f13eb858

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 480.0 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 646d4d30c5aa7c0ddbfe9b990f0f77a88621024a21ad0b792bd9d58caa9611f0
MD5 782817edc097855b5f248f8dafa023fa
BLAKE2b-256 6fd9afbd03cc995856336cb6757e0d4a94ef6d8c3ceb9dcfc8cb2720232fdde1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.2-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 375.9 kB
  • Tags: CPython 2.7m, macOS 10.14+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for pymongo-3.11.2-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 9be785bd4e1ba0148fb00ca84e4dbfbd1c74df3af3a648559adc60b0782f34de
MD5 9ca650e009f9c9155391a7ae8f00b079
BLAKE2b-256 7353f48620d925fff07cbb6c5b754e2f3d1a106ada20fcab24755e9c93923af3

See more details on using hashes here.

Supported by

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