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

Uploaded Source

Built Distributions

pymongo-3.11.0-py2.7-macosx-10.15-x86_64.egg (772.3 kB view details)

Uploaded Source

pymongo-3.11.0-cp38-cp38-win_amd64.whl (382.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-3.11.0-cp38-cp38-win32.whl (376.6 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-3.11.0-cp38-cp38-manylinux2014_x86_64.whl (530.4 kB view details)

Uploaded CPython 3.8

pymongo-3.11.0-cp38-cp38-manylinux2014_s390x.whl (533.2 kB view details)

Uploaded CPython 3.8

pymongo-3.11.0-cp38-cp38-manylinux2014_ppc64le.whl (538.4 kB view details)

Uploaded CPython 3.8

pymongo-3.11.0-cp38-cp38-manylinux2014_i686.whl (520.3 kB view details)

Uploaded CPython 3.8

pymongo-3.11.0-cp38-cp38-manylinux2014_aarch64.whl (528.9 kB view details)

Uploaded CPython 3.8

pymongo-3.11.0-cp38-cp38-manylinux1_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.8

pymongo-3.11.0-cp38-cp38-manylinux1_i686.whl (520.3 kB view details)

Uploaded CPython 3.8

pymongo-3.11.0-cp38-cp38-macosx_10_9_x86_64.whl (379.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-3.11.0-cp37-cp37m-win_amd64.whl (381.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-3.11.0-cp37-cp37m-win32.whl (376.0 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.11.0-cp37-cp37m-manylinux2014_x86_64.whl (511.5 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.0-cp37-cp37m-manylinux2014_s390x.whl (512.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.0-cp37-cp37m-manylinux2014_ppc64le.whl (519.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.0-cp37-cp37m-manylinux2014_i686.whl (500.3 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.0-cp37-cp37m-manylinux2014_aarch64.whl (510.7 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.0-cp37-cp37m-manylinux1_x86_64.whl (493.0 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-3.11.0-cp37-cp37m-macosx_10_9_x86_64.whl (378.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pymongo-3.11.0-cp36-cp36m-win_amd64.whl (390.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.11.0-cp36-cp36m-win32.whl (385.7 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.11.0-cp36-cp36m-manylinux2014_x86_64.whl (508.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.0-cp36-cp36m-manylinux2014_s390x.whl (509.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.0-cp36-cp36m-manylinux2014_ppc64le.whl (516.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.0-cp36-cp36m-manylinux2014_i686.whl (498.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.0-cp36-cp36m-manylinux2014_aarch64.whl (507.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.0-cp36-cp36m-manylinux1_x86_64.whl (491.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.0-cp36-cp36m-manylinux1_i686.whl (498.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.0-cp36-cp36m-macosx_10_9_x86_64.whl (374.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pymongo-3.11.0-cp35-cp35m-win_amd64.whl (381.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.11.0-cp35-cp35m-win32.whl (376.0 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.11.0-cp35-cp35m-manylinux2014_x86_64.whl (507.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.0-cp35-cp35m-manylinux2014_s390x.whl (509.0 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.0-cp35-cp35m-manylinux2014_ppc64le.whl (515.9 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.0-cp35-cp35m-manylinux2014_i686.whl (497.9 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.0-cp35-cp35m-manylinux2014_aarch64.whl (506.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.0-cp35-cp35m-manylinux1_x86_64.whl (491.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.0-cp35-cp35m-manylinux1_i686.whl (497.9 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.0-cp35-cp35m-macosx_10_6_intel.whl (413.4 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.11.0-cp34-cp34m-win_amd64.whl (377.3 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.11.0-cp34-cp34m-win32.whl (374.1 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.11.0-cp34-cp34m-manylinux1_x86_64.whl (487.6 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.0-cp34-cp34m-manylinux1_i686.whl (479.0 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.0-cp34-cp34m-macosx_10_6_intel.whl (413.1 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.11.0-cp27-cp27mu-manylinux1_x86_64.whl (487.6 kB view details)

Uploaded CPython 2.7mu

pymongo-3.11.0-cp27-cp27mu-manylinux1_i686.whl (479.3 kB view details)

Uploaded CPython 2.7mu

pymongo-3.11.0-cp27-cp27m-win_amd64.whl (377.8 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.11.0-cp27-cp27m-win32.whl (373.9 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.11.0-cp27-cp27m-manylinux1_x86_64.whl (487.6 kB view details)

Uploaded CPython 2.7m

pymongo-3.11.0-cp27-cp27m-manylinux1_i686.whl (479.3 kB view details)

Uploaded CPython 2.7m

pymongo-3.11.0-cp27-cp27m-macosx_10_15_x86_64.whl (375.0 kB view details)

Uploaded CPython 2.7m macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: pymongo-3.11.0.tar.gz
  • Upload date:
  • Size: 771.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0.tar.gz
Algorithm Hash digest
SHA256 076a7f2f7c251635cf6116ac8e45eefac77758ee5a77ab7bd2f63999e957613b
MD5 5d166c8f9500c83314deadebb95b6fd5
BLAKE2b-256 aee4cf2c921516dc12b38b225e2c13646d3a2562587dd8f5249bc2584988518d

See more details on using hashes here.

File details

Details for the file pymongo-3.11.0-py2.7-macosx-10.15-x86_64.egg.

File metadata

  • Download URL: pymongo-3.11.0-py2.7-macosx-10.15-x86_64.egg
  • Upload date:
  • Size: 772.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-py2.7-macosx-10.15-x86_64.egg
Algorithm Hash digest
SHA256 63a5387e496a98170ffe638b435c0832c0f2011a6f4ff7a2880f17669fff8c03
MD5 6dfa8321b803818feff7cb44aaafecd7
BLAKE2b-256 be05ae75d8d2686195e9d85e1d1368a1cec27a47834279e6f513472e3fd35c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 382.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 03dc64a9aa7a5d405aea5c56db95835f6a2fa31b3502c5af1760e0e99210be30
MD5 70581132df1e650a9aebbbb398fb045f
BLAKE2b-256 6495751908ed5d2b5cfb8a130675ce115769d3b763264536384408f7dba44696

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 376.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 40696a9a53faa7d85aaa6fd7bef1cae08f7882640bad08c350fb59dee7ad069b
MD5 75ae055a42545760d9ea4028622e216a
BLAKE2b-256 76aa5a1a13da06f6df64de391142eab5aeda71e9edd82b745b2a8f78c1c7cb1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 530.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 475a34a0745c456ceffaec4ce86b7e0983478f1b6140890dff7b161e7bcd895b
MD5 a278a79b45e328edc16501a391e4987d
BLAKE2b-256 13d0819074b92295149e1c677836d72def88f90814d1efa02199370d8a70f7af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 533.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce208f80f398522e49d9db789065c8ad2cd37b21bd6b23d30053474b7416af11
MD5 3388047c690fd12cdbb6a56aba226e59
BLAKE2b-256 0fbb4510ec8244f8802f1e5d4a40d953509ae6f3b504c2a4247e158bc8b949cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 538.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91e96bf85b7c07c827d339a386e8a3cf2e90ef098c42595227f729922d0851df
MD5 2a7b4fa67398e8d90441ba967afb074d
BLAKE2b-256 3c80cd06db126c9219ee87426a4fa5ddeea97d560589071ad09d5aadaaa6b40e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 520.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ee0eef254e340cc11c379f797af3977992a7f2c176f1a658740c94bf677e13c
MD5 ceb2b3d36e3803458aaa1d417841148a
BLAKE2b-256 706d38128db07f20ca21f63593b484fd13a03b503d329b3c03b8cf1ada1eb944

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 528.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8d188ee39bd0ffe76603da887706e4e7b471f613625899ddf1e27867dc6a0d3
MD5 e2ecfd56d445411da139a31f7acd4036
BLAKE2b-256 55530a74a71de134601b1fd376d10d2a6c41ea427c8c80f26d46e3e9507a9927

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 509.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e6a15cf8f887d9f578dd49c6fb3a99d53e1d922fdd67a245a67488d77bf56eb2
MD5 1d31712790ab3985261146d439402a63
BLAKE2b-256 eede300e2226599bbcefd1396b5be1806c964ac5ad1b734209065b1343bdc356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 520.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b32744901ee9990aa8cd488ec85634f443526def1e5190a407dc107148249d7
MD5 10d10b718dcbdb6a56b29a9b72bf9bcb
BLAKE2b-256 0eb06d336c13bc52cf7c6ea64319c953625d9039dd71e4fd339b7ab93210ad4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 379.5 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 689142dc0c150e9cb7c012d84cac2c346d40beb891323afb6caf18ec4caafae0
MD5 3bfb5d76f1318796caee0479acd92c22
BLAKE2b-256 0d2019a5ba7a2bd15262c7f279286c60694824edfd08594c7cccbf7038fc4366

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 381.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9dbab90c348c512e03f146e93a5e2610acec76df391043ecd46b6b775d5397e6
MD5 16be8e9b96e5024fd53974a8af91b95f
BLAKE2b-256 310463a4374e58496fe5e9312271128616725f53c0281cb79f70d7d06c3e6fdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 376.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 05fcc6f9c60e6efe5219fbb5a30258adb3d3e5cbd317068f3d73c09727f2abb6
MD5 ba3661fc630218d923fdcf4f6292c062
BLAKE2b-256 0e9b2236e94854bb4378c341c012fa61288429ba0bac2eebb2aa8437a3756c93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 511.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cccf1e7806f12300e3a3b48f219e111000c2538483e85c869c35c1ae591e6ce9
MD5 77a71109879099e149153dd33970d1b9
BLAKE2b-256 f65d2e03e9110e7fea013cd115ffa76f60fb6bd1913fddc48c24d29bfcae3bd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 512.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f865b1d1c191d785106f54df9abdc7d2f45a946b45fd1ea0a641b4f982a2a77
MD5 619559f9416e603b4b617c4cd9212233
BLAKE2b-256 4a9ca5c470d7a6b4fac5066fa1c8576a89cf01cecf026f75e6d55db1b8b69c36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 519.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4797c0080f41eba90404335e5ded3aa66731d303293a675ff097ce4ea3025bb9
MD5 a29691e121c0fa46c61831e20a25e580
BLAKE2b-256 dc3d2b4e1b9e13bcfb53db3603dbb3e6ee146f155f94fb5b733e41a01ffcd7f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 500.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd312794f51e37dcf77f013d40650fe4fbb211dd55ef2863839c37480bd44369
MD5 1785bb2eb22debc17cd8b37e8ee5413f
BLAKE2b-256 6fe08633c0846a15b1f53fadc87fc6fa6657cf2534956e901614af8e24e590ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 510.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50127b13b38e8e586d5e97d342689405edbd74ad0bd891d97ee126a8c7b6e45f
MD5 69b750fe205db062d9d4aefce2cccc3c
BLAKE2b-256 6352d7a78a58bad944771be468b45ffc2628b4e8e459df7dcec857d0e67d3232

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 493.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 96782ebb3c9e91e174c333208b272ea144ed2a684413afb1038e3b3342230d72
MD5 a85d56ca7f913887740da094f9b9cacf
BLAKE2b-256 8413e0157adc63a8fca7da3d0b6b58295da1a01c4ef921bc846737931011c4f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 500.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d9bb1ba935a90ec4809a8031efd988bdb13cdba05d9e9a3e9bf151bf759ecde
MD5 c02b6944a6e8bb2d13c4fcb391bde320
BLAKE2b-256 33b7d6d7ceafa4cb17ca4419160a68bf07a0888b6e3a89c21388edd1534e73bb

See more details on using hashes here.

File details

Details for the file pymongo-3.11.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymongo-3.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 378.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9de8427a5601799784eb0e7fa1b031aa64086ce04de29df775a8ca37eedac41
MD5 7a02e87c7d2ffd51df6d3a68195b4f39
BLAKE2b-256 1a8d80a13e50fb44c17074a0a9851b5319e8ca7f473332ca008f04b69211c787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 390.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e8c446882cbb3774cd78c738c9f58220606b702b7c1655f1423357dc51674054
MD5 9307124d5e735b6624216313b7098c2b
BLAKE2b-256 49fd195f9880bde89bf34d22b204f58e66dbf76d6433dd05d49a2e6c609a1bc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 385.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8deda1f7b4c03242f2a8037706d9584e703f3d8c74d6d9cac5833db36fe16c42
MD5 3b65f3f6577214214c9285c38b909772
BLAKE2b-256 fc0a14124fd8cfd904da5ca52c5603664442f8e519484c13282d4a177a4dd8c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 508.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ae23fbbe9eadf61279a26eba866bbf161a6f7e2ffad14a42cf20e9cb8e94166
MD5 eb7eb8ae229456bf450a4639789f17d3
BLAKE2b-256 64fcb126cbe001f875c0444224102c2f783cb02ead6e3efb47ad526c08833cc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 509.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 213c445fe7e654621c6309e874627c35354b46ef3ee807f5a1927dc4b30e1a67
MD5 00c1f1a25d7d823caa67da4b8b67f0f6
BLAKE2b-256 a8990c919150438b6df4263b19f0df9b20d31c6d1ef369f31bb14818a507ddf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 516.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc4057f692ac35bbe82a0a908d42ce3a281c9e913290fac37d7fa3bd01307dfb
MD5 b545e3016f2672beb8127c74d143a965
BLAKE2b-256 c2cfa9b29775add290d51d2a6973146bc5927f183e0a12aea30bc7dd45f23b8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 498.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50531caa7b4be1c4ed5e2d5793a4e51cc9bd62a919a6fd3299ef7c902e206eab
MD5 ee361644ccf497a0f5dbcb8df3f05913
BLAKE2b-256 1caac6d3376ee427de1f40d7a6e1d933d90ca040452b0c1c5343fcd2b9f77b18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 507.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9755c726aa6788f076114dfdc03b92b03ff8860316cca00902cce88bcdb5fedd
MD5 3f8d5edf95ad77d6887a628835f6e390
BLAKE2b-256 2a6f8b7c58e939876c9b4323f5ed4a8b34eb8c2271375162207a7a42a9bef672

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 491.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b7c522292407fa04d8195032493aac937e253ad9ae524aab43b9d9d242571f03
MD5 574c3b08264079556aa98540008549b5
BLAKE2b-256 d1893bfdfb457f27f316559ea8dbb5a3eaeea6b803870c5ae07c80fbe9c56e08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 498.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1b3366329c45a474b3bbc9b9c95d4c686e03f35da7fd12bc144626d1f2a7c04
MD5 e8e602a403c11098b595793472dd5ffe
BLAKE2b-256 09c832b1306812d68f462ecf52aa1ecdeb905229784b92d276f488cfefa0c23c

See more details on using hashes here.

File details

Details for the file pymongo-3.11.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymongo-3.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 374.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0d660a186e36c526366edf8a64391874fe53cf8b7039224137aee0163c046df
MD5 ccb7909db293996fcee1e9113e04fd19
BLAKE2b-256 968cc363ec0fda0479b52fe896cfd99b17e71fd524f89a8df8c93c266a190ccd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 381.4 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 137e6fa718c7eff270dbd2fc4b90d94b1a69c9e9eb3f3de9e850a7fd33c822dc
MD5 1624a36c3e862d253df9651cf8fcd6e7
BLAKE2b-256 755050a96963e967db8042e57522c95b919450f937428794c3f173cea6fd2af4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 376.0 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d38b35f6eef4237b1d0d8e845fc1546dad85c55eba447e28c211da8c7ef9697c
MD5 6eee51707c6696148e78fa74012d1c04
BLAKE2b-256 3665bd3c011b61faf219f7466bd21b9f633f663ef7c990e32870789e0af15b2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4437300eb3a5e9cc1a73b07d22c77302f872f339caca97e9bf8cf45eca8fa0d2
MD5 298dd6d6c795349ca66c61dca17b4799
BLAKE2b-256 943f80a72f56a3460472a1089108101d3dc44455b35839e9ed8ebdfdcb30db53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 509.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0565481dc196986c484a7fb13214fc6402201f7fb55c65fd215b3324962fe6c
MD5 7307ec9bd4b9728d25f0db9b3fd04db3
BLAKE2b-256 6093fb9daeeadf4928490baa7aff56538d087dcbd727feee0b5662e228fa1829

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 515.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7122ffe597b531fb065d3314e704a6fe152b81820ca5f38543e70ffcc95ecfd4
MD5 3f2ea988f6544d456afdd47212eabd9c
BLAKE2b-256 472c7bde08486efa7194c53cf0731d4d20f3508a6ab9e8b3c100a0f58e2217e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 497.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25e617daf47d8dfd4e152c880cd0741cbdb48e51f54b8de9ddbfe74ecd87dd16
MD5 82de5ceadd6d5f7b4b992325f09b9ff5
BLAKE2b-256 156e3930c6c7af608b77925a8f78b2b9accb269405c7cdaa7408d49c4c979358

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 506.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 455f4deb00158d5ec8b1d3092df6abb681b225774ab8a59b3510293b4c8530e3
MD5 987978c21aa7da076b11932c2b2147f4
BLAKE2b-256 1f8c9501997b0773980c666ef06a0d9641a08b59884530a0b8b93c0532302831

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 491.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a2787319dc69854acdfd6452e6a8ba8f929aeb20843c7f090e04159fc18e6245
MD5 b2548ec58a757b4f8870fe9a61da8086
BLAKE2b-256 934ce832aabf5a448c084cfd6566c4affbcf55d4e35f597630a13218f2961b39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 497.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 421aa1b92c291c429668bd8d8d8ec2bd00f183483a756928e3afbf2b6f941f00
MD5 18c18153a3d99b7ac390fcd59ed20dfa
BLAKE2b-256 f0965aa388f87eee970abb9055c1194c444959edf7a590361fd04bb4e4c67649

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 413.4 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 9fc17fdac8f1973850d42e51e8ba6149d93b1993ed6768a24f352f926dd3d587
MD5 8b70efaa0d9396cf51a10e9c57f8efcb
BLAKE2b-256 859f4a6cea44f39bdbde8df9021615f596f371e8a7061da864fa2422b5937eb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 377.3 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 890b0f1e18dbd898aeb0ab9eae1ab159c6bcbe87f0abb065b0044581d8614062
MD5 54f63727f83b68f39b5e9041b7f86f60
BLAKE2b-256 17a4f6c74a06930d46c8a21624fdf0650b940ae4070c31224c7185c5fafe1414

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 374.1 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 83c5a3ecd96a9f3f11cfe6dfcbcec7323265340eb24cc996acaecea129865a3a
MD5 d96c369b7f8c937b548f7efa3f5a615c
BLAKE2b-256 d775ac543aa07643df0f493affb876d1123a89f41393462a8e2ccfb928ce08c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 487.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d64c98277ea80e4484f1332ab107e8dfd173a7dcf1bdbf10a9cccc97aaab145f
MD5 ee4cc51013bc71868989fdc12722a0f3
BLAKE2b-256 75c60141e1c9dc135ec7569315559017f0de26e3bc266c318d9e5ddffa7abc65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 479.0 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a15e2bee5c4188369a87ed6f02de804651152634a46cca91966a11c8abd2550
MD5 54d53ce50766c2a4dca40563a88b00ac
BLAKE2b-256 d6731757eb0aa63416ea7a861cc0f0cc169edbb3f1960ab56b6abf77b5bdb082

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 413.1 kB
  • Tags: CPython 3.4m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8ea13d0348b4c96b437d944d7068d59ed4a6c98aaa6c40d8537a2981313f1c66
MD5 60ad267265352b6f2c688a28e6fc0ec2
BLAKE2b-256 43eee3c823cd68dc09448ee457cca84b19cbcc458f99629d049e8579394c3d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 487.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7307024b18266b302f4265da84bb1effb5d18999ef35b30d17592959568d5c0a
MD5 9fdd7ae27f19e06cf8f52642b08d3a00
BLAKE2b-256 414a85d17508826b128e9d742127783810caa994c58857e3bc6e59185dd16454

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 479.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6efca006a81e1197b925a7d7b16b8f61980697bb6746587aad8842865233218
MD5 375914fc65ff012e8dbfa4472a8a5178
BLAKE2b-256 0d0191cacb9eeeb0ce3aa0312faeb0b466097878e41f02c13637ec70297e526c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 377.8 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 68220b81850de8e966d4667d5c325a96c6ac0d6adb3d18935d6e3d325d441f48
MD5 2994bdae9addca5d04c5e8035002e0d7
BLAKE2b-256 ebfab276a1b2c0f747502c2dd3d673501296b5abf0d721af8b611d9f8d4bb765

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 373.9 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 d226e0d4b9192d95079a9a29c04dd81816b1ce8903b8c174a39224fe978547cb
MD5 d3562f966a2681fafe102722eb14d928
BLAKE2b-256 36c54c168dd3a55fd2f3509ab9ea3dac214538666f716d9984b48f350a10062f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 487.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef76535776c0708a85258f6dc51d36a2df12633c735f6d197ed7dfcaa7449b99
MD5 c4921afe4de3ce2bf599a24c4b60d652
BLAKE2b-256 0bfc07383053c446660179c91d1ac74d95ade1d68df034a3dc1221123ac7c0a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 479.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4869141e20769b65d2d72686e7a7eb141ce9f3168106bed3e7dcced54eb2422
MD5 00ad31e06f00d868066f8cf81984a1c3
BLAKE2b-256 02f422f5d28568d3afb270f1b6d1f379129d5318982f828309504bbe7ec461b4

See more details on using hashes here.

File details

Details for the file pymongo-3.11.0-cp27-cp27m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pymongo-3.11.0-cp27-cp27m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 375.0 kB
  • Tags: CPython 2.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for pymongo-3.11.0-cp27-cp27m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7a4a6f5b818988a3917ec4baa91d1143242bdfece8d38305020463955961266a
MD5 a20e493f2534445ee3ba42b9272bf5d0
BLAKE2b-256 225dc1077e6cbc49d3390c1281194146b47640a68bda01941444352808e45aa9

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