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

Uploaded Source

Built Distributions

pymongo-3.11.3-py2.7-macosx-10.14-intel.egg (774.6 kB view details)

Uploaded Source

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

Uploaded CPython 3.9 Windows x86-64

pymongo-3.11.3-cp39-cp39-win32.whl (378.0 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pymongo-3.11.3-cp39-cp39-manylinux2014_i686.whl (511.3 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pymongo-3.11.3-cp39-cp39-manylinux1_x86_64.whl (500.1 kB view details)

Uploaded CPython 3.9

pymongo-3.11.3-cp39-cp39-manylinux1_i686.whl (511.3 kB view details)

Uploaded CPython 3.9

pymongo-3.11.3-cp39-cp39-macosx_10_9_x86_64.whl (380.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-3.11.3-cp38-cp38-win_amd64.whl (383.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-3.11.3-cp38-cp38-win32.whl (377.9 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-3.11.3-cp38-cp38-manylinux2014_x86_64.whl (531.7 kB view details)

Uploaded CPython 3.8

pymongo-3.11.3-cp38-cp38-manylinux2014_s390x.whl (534.2 kB view details)

Uploaded CPython 3.8

pymongo-3.11.3-cp38-cp38-manylinux2014_ppc64le.whl (539.6 kB view details)

Uploaded CPython 3.8

pymongo-3.11.3-cp38-cp38-manylinux2014_i686.whl (521.2 kB view details)

Uploaded CPython 3.8

pymongo-3.11.3-cp38-cp38-manylinux2014_aarch64.whl (530.1 kB view details)

Uploaded CPython 3.8

pymongo-3.11.3-cp38-cp38-manylinux1_x86_64.whl (510.9 kB view details)

Uploaded CPython 3.8

pymongo-3.11.3-cp38-cp38-manylinux1_i686.whl (521.2 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

pymongo-3.11.3-cp37-cp37m-win32.whl (377.3 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.11.3-cp37-cp37m-manylinux2014_x86_64.whl (512.7 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.3-cp37-cp37m-manylinux2014_s390x.whl (514.0 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.3-cp37-cp37m-manylinux2014_ppc64le.whl (521.0 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.3-cp37-cp37m-manylinux2014_i686.whl (501.0 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-3.11.3-cp37-cp37m-manylinux1_x86_64.whl (494.2 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.3-cp37-cp37m-manylinux1_i686.whl (501.0 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.3-cp37-cp37m-macosx_10_6_intel.whl (414.7 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

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

Uploaded CPython 3.6m Windows x86-64

pymongo-3.11.3-cp36-cp36m-win32.whl (377.3 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

pymongo-3.11.3-cp36-cp36m-manylinux2014_s390x.whl (510.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.3-cp36-cp36m-manylinux2014_ppc64le.whl (518.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.3-cp36-cp36m-manylinux2014_i686.whl (499.5 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.3-cp36-cp36m-manylinux2014_aarch64.whl (508.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.3-cp36-cp36m-manylinux1_x86_64.whl (493.0 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.3-cp36-cp36m-manylinux1_i686.whl (499.5 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.3-cp36-cp36m-macosx_10_6_intel.whl (412.0 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

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

Uploaded CPython 3.5m Windows x86-64

pymongo-3.11.3-cp35-cp35m-win32.whl (377.3 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.11.3-cp35-cp35m-manylinux2014_x86_64.whl (508.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.3-cp35-cp35m-manylinux2014_s390x.whl (510.0 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.3-cp35-cp35m-manylinux2014_ppc64le.whl (517.2 kB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

pymongo-3.11.3-cp35-cp35m-manylinux2014_aarch64.whl (507.8 kB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

pymongo-3.11.3-cp35-cp35m-macosx_10_6_intel.whl (412.0 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.11.3-cp34-cp34m-win_amd64.whl (378.6 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.11.3-cp34-cp34m-win32.whl (375.3 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.11.3-cp34-cp34m-manylinux1_x86_64.whl (488.8 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.3-cp34-cp34m-manylinux1_i686.whl (480.3 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.3-cp34-cp34m-macosx_10_6_intel.whl (411.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.11.3-cp27-cp27mu-manylinux1_x86_64.whl (488.1 kB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

pymongo-3.11.3-cp27-cp27m-win_amd64.whl (379.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

pymongo-3.11.3-cp27-cp27m-manylinux1_i686.whl (480.1 kB view details)

Uploaded CPython 2.7m

pymongo-3.11.3-cp27-cp27m-macosx_10_14_intel.whl (376.0 kB view details)

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.3.tar.gz
Algorithm Hash digest
SHA256 db5098587f58fbf8582d9bda2462762b367207246d3e19623782fb449c3c5fcc
MD5 9ab2e833dadabbe31c5cef5ab377dc18
BLAKE2b-256 7282e7196f2f69318dd206db26db68fcfa0ff821d88fbca6d0f0c7b678ba0353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 774.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 7edff02e44dd0badd749d7342e40705a398d98c5d8f7570f57cff9568c2351fa
MD5 6414b2df815b42f1c10573c1722a194c
BLAKE2b-256 4323fb3bf91397950479861628c37f895214e511692454deab93c50b9f7fafb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ee42a8f850143ae7c67ea09a183a6a4ad8d053e1dbd9a1134e21a7b5c1bc6c73
MD5 4ef4fd365d0ddfeb8689381ae06e3745
BLAKE2b-256 f0df3b6618f1a74b660501cdf358fabfda6948918af015d2bc18b15398888771

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 378.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f6748c447feeadda059719ef5ab1fb9d84bd370e205b20049a0e8b45ef4ad593
MD5 7b2496938100e0d613cee24ff374274a
BLAKE2b-256 fd3f364ce1b90bd600ef0842f019158b954b42ce571462a8511c9f874dd154ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65b67637f0a25ac9d25efb13c1578eb065870220ffa82f132c5b2d8e43ac39c3
MD5 4fd68ad29d3538c91de24688010ac676
BLAKE2b-256 d41e2a74cb3a7761852dbd53cef95f7a7dd875b3db230a422dc181c1a6639589

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 980527f4ccc6644855bb68056fe7835da6d06d37776a52df5bcc1882df57c3db
MD5 1df719558cbea1fafa3a836f69abd49e
BLAKE2b-256 5a7a15cc378a0a815f15612f4029b46d12189dd7cc0f84b81fa8c29375461407

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb6a5777bf558f444cd4883d617546182cfeff8f2d4acd885253f11a16740534
MD5 82d122f03af712ba590f436596aeb94f
BLAKE2b-256 449d93bfe5d1d4583324c4ab0ca84340244f7fedae628a61868a57727c7b4da3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 511.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5091aacbdb667b418b751157f48f6daa17142c4f9063d58e5a64c90b2afbdf9a
MD5 16af655cf41674ba1fda8798cafbd905
BLAKE2b-256 ee860db58b8ba6004bb4c0e86726cecbaa5ec2645ab04b017b0610060e9117bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b32e4eed2ef19a20dfb57698497a9bc54e74efb2e260c003e9056c145f130dc7
MD5 2f36cd422e1fbfd6b4988779447567b0
BLAKE2b-256 7964987c1a272a02ce5fced8ece1af3b8c79f4125b5f56a3bf10eaae6a0f8e8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 500.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b44fa04720bbfd617b6aef036989c8c30435f11450c0a59136291d7b41ed647f
MD5 7fd10e553a98ba9c2494dab5971e1808
BLAKE2b-256 057d10c187546f8b4368f93e85758f17e36b8374a74ad05305a4011c80afb639

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 511.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 210ec4a058480b9c3869082e52b66d80c4a48eda9682d7a569a1a5a48100ea54
MD5 8b7ad332054678be86518e3f5929abcd
BLAKE2b-256 95b18159a55393846acdbcfe22f8e7949ca37bc769b0774751d1a7145eb5922c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 380.3 kB
  • Tags: CPython 3.9, 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34c15f5798f23488e509eae82fbf749c3d17db74379a88c07c869ece1aa806b9
MD5 9df4df28e9cfae0d89a321b5c32df119
BLAKE2b-256 6738f38f6ff26158d84afe58c441a816004a203c140388cdfa79661236f5ae01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 383.5 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 152e4ac3158b776135d8fce28d2ac06e682b885fcbe86690d66465f262ab244e
MD5 15cfc642c07e0e4ac5425251b8485fc6
BLAKE2b-256 f321b0a9e2ae35e6b6f6eb77e7dd9c52266677f4295df57f68c15f554d2756d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 377.9 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1d559a76ae87143ad96c2ecd6fdd38e691721e175df7ced3fcdc681b4638bca1
MD5 37e4d4c28a2cde914c1b03f14378718f
BLAKE2b-256 a1ded11e0b1049429acdac5ad4eb91abf810309656128ddafc2248703545e666

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 531.7 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f23abcf6eca5859a2982beadfb5111f8c5e76e30ff99aaee3c1c327f814f9f10
MD5 ef7a872bebef15681bc5d14684bf0853
BLAKE2b-256 a08972ab114359a36629cb8ed22e8c0d0de9cfbeecbd5bfbe3a01623d589304d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 534.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf70097bd497089f1baabf9cbb3ec4f69c022dc7a70c41ba9c238fa4d0fff7ab
MD5 a697c997a26fd1fd92cffe9196becedd
BLAKE2b-256 493190d1c46ae8838ab77a8ce39d0709f496210800a5ebbb6050840721b603bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 539.6 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66573c8c7808cce4f3b56c23cb7cad6c3d7f4c464b9016d35f5344ad743896d7
MD5 899b2f2a301f49644d576ebf98ec379a
BLAKE2b-256 5b3f5b4ebfa0d0c367addfe494927633dd8f64c2062fdf16f9c1620b76dcf95b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 521.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6043d251fac27ca04ff22ed8deb5ff7a43dc18e8a4a15b4c442d2a20fa313162
MD5 83419061ea09ec0002428101dbc5f902
BLAKE2b-256 bc716949cba6e34657669a7e120c3cbff23362ddac0d723d046ceb410eac1648

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 530.1 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 322f6cc7bf23a264151ebc5229a92600c4b55ac83c83c91c9bab1ec92c888a8d
MD5 4c41ec8facf6f9f1b39a8d38f3ed0017
BLAKE2b-256 6ec0d5961eeb19a3c35bb63d87f49a7fbd9c2669d166da165ec4fbdbde9eadea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 510.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 daa44cefde19978af57ac1d50413cd86ebf2b497328e7a27832f5824bda47439
MD5 a66267bd83f76635a99ebffbbaebbf7a
BLAKE2b-256 2680fe6b9227fb0ca0488bd539f24b9db59089467f13c670065326b23f7ed306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 521.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 728313cc0d59d1a1a004f675607dcf5c711ced3f55e75d82b3f264fd758869f3
MD5 c1d7657ff7679add4ed9273cc48860aa
BLAKE2b-256 0514daa16de25361e85ec384e4f8784ace01b25b83d4f8a1fe389b347f961093

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ac387ac1be71b798d1c372a924f9c30352f30e684e06f086091297352698ac0
MD5 7ca4c558355d0199d4de721c6015716d
BLAKE2b-256 fb814e18ff94ee0f44651a6982d16c9a6a2f02fddf5c7f550c42ff0b4e2ea759

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5e1341276ce8b7752db9aeac6bbb0cbe82a3f6a6186866bf6b4906d8d328d50b
MD5 6933514cfe415e1f492f91f906bde3d5
BLAKE2b-256 ec93dfcd3f8ef506d94fa87cc1e0a312b06fac0a57aa5d264ab016522dad4c31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 377.3 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bc2eb67387b8376120a2be6cba9d23f9d6a6c3828e00fb0a64c55ad7b54116d1
MD5 1353a4f33a89f6122798bce778160d1c
BLAKE2b-256 f53f37d5987b608939fec28395e639bf51eeccdb309cec50834433814c30b8f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 512.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a03ae5ac85b04b2034a0689add9ff597b16d5e24066a87f6ab0e9fa67049156
MD5 b60f014ac6e04692b1eef4b30d063fa5
BLAKE2b-256 f2f81c1e4800b24bc72228fdad9d5683ff40ce5827cf33a87e9ae266e9c2fdbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 514.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ca92e15fcf02e02e7c24b448a16599b98c9d0e6a46cd85cc50804450ebf7245
MD5 ac073921f8742424b6faea687855a6b3
BLAKE2b-256 4ebb0886da5c77dc8bac2190822663fbea4c7d08ba73d6716373d4e763c6f5e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 521.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92e2376ce3ca0e3e443b3c5c2bb5d584c7e59221edfb0035313c6306049ba55a
MD5 c802b65fb68dc4113128f0ad8aeb2552
BLAKE2b-256 3da50f46fdb9d255ddd31eeb704f4a960b571f9d209f261d7187369ecee313c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 501.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd8fc35d4c0c717cc29b0cb894871555cb7137a081e179877ecc537e2607f0b9
MD5 412925cb80af097831f5275fc2d97b7a
BLAKE2b-256 e8ad23baa538d6ecac3d34948395fcd42170fd548e887e56a07d60ac4d28ea18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4535d98df83abebb572035754fb3d4ad09ce7449375fa09fa9ede2dbc87b62b
MD5 ed20ee3c2fa3d408b8ee2fa837ee5c88
BLAKE2b-256 a1fcbd5cc78fe497ba52e2bea9b18847439a85acb76a94eeef0148624d2a4030

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 494.2 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2163d736d6f62b20753be5da3dc07a188420b355f057fcbb3075b05ee6227b2f
MD5 47b6132d7af247e610ce5c96aa8f5d20
BLAKE2b-256 10f19f39ccb4051bb512f5025aa0dc51dfa60053fe071de091f5b300717651fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 501.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 19d52c60dc37520385f538d6d1a4c40bc398e0885f4ed6a36ce10b631dab2852
MD5 343fe0a6846e9c6f15fd1fa54020a301
BLAKE2b-256 73fc8954e73cc0d98734f47741299474b6f2893225b8e315278d6f2f1f231413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 414.7 kB
  • Tags: CPython 3.7m, 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 05e2bda928a3a6bc6ddff9e5a8579d41928b75d7417b18f9a67c82bb52150ac6
MD5 4b071c4788f3d09a2eeded0b955b11af
BLAKE2b-256 fc6c81653940b6b2a45245413254afc2c863a3d5cd3de92925a19a92d40fd903

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b17e627844d86031c77147c40bf992a6e1114025a460874deeda6500d0f34862
MD5 ddec8ee3b05418ca378fd00d75e7dbef
BLAKE2b-256 77fb3ac79c68aaddc18761820e69db956ea580f5cd3a5a89cdfd53281ba29092

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 377.3 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3873866534b6527e6863e742eb23ea2a539e3c7ee00ad3f9bec9da27dbaaff6f
MD5 bb4864c1e78c45b9d094db4d28575572
BLAKE2b-256 33b731073559e4c816ac9ac9644962730ae3d7bb57570d267d6d0b13fb2a9702

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 610d5cbbfd026e2f6d15665af51e048e49b68363fedece2ed318cc8fe080dd94
MD5 a11a85d5b8530ca8230b9a09a7b6210b
BLAKE2b-256 11425c7e87218e0f673a6212107c697ae5cb43769b458f838e5b029b1d2bf90d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 510.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 413b18ac2222f5d961eb8d1c8dcca6c6ca176c8613636d8c13aa23abae7f7a21
MD5 6cd0b0492efaf7718216b0aa769c93bc
BLAKE2b-256 54385b6224e0f2b44f3b9594904f72ba83eb29b7e3c5da17d258c053caaeeb46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 518.1 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87981008d565f647142869d99915cc4760b7725858da3d39ecb2a606e23f36fd
MD5 22aeeacb37b911106c46e4a615fdf360
BLAKE2b-256 e427f6e3678d278b0e94c64ec61fb8b3a1148e9a05918c3d36bb69853b24149d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 499.5 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a5834e392c97f19f36670e34bf9d346d733ad89ee0689a6419dd737dfa4308a
MD5 da3c584e913bf05b1bdfc9ce8fd0fbf8
BLAKE2b-256 a71d2cfa1eae13f87d3f77d52e65c9e3925e903fb3ec822e9a16f5682b9b65b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 508.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66b688fc139c6742057795510e3b12c4acbf90d11af1eff9689a41d9c84478d6
MD5 0650588e519161f4c62f3b4ad9dc17e4
BLAKE2b-256 db73a0cddfb196bf03a01dbf62c9d4d7a2ad7f7040b9cac8e29feb62d2ad4b10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 493.0 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 db6fd53ef5f1914ad801830406440c3bfb701e38a607eda47c38adba267ba300
MD5 db5f8a631c3bf29e5f72e8b36a6b469f
BLAKE2b-256 034b2adf815a054b467e87de2b5c830dfc9bc75e9ae7f977b50e6bb8eca7c3ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 499.5 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 22ee2c94fee1e391735be63aa1c9af4c69fdcb325ae9e5e4ddff770248ef60a6
MD5 e27bdb126ec1371f773b4dc74885c881
BLAKE2b-256 eb249d076c07530df885f083ed32c71bf9f80890139b007e94dd6cb4c4608da4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 412.0 kB
  • Tags: CPython 3.6m, 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 0384d76b409278ddb34ac19cdc4664511685959bf719adbdc051875ded4689aa
MD5 4464c285d46c2ca0b18313086680492e
BLAKE2b-256 d747d38359e34c8273696ed420754cce7449ff2340fc69d46bd943cd66c922e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e1414599a97554d451e441afb362dbee1505e4550852c0068370d843757a3fe2
MD5 a9f56e86208337fa22deb77b8319f26a
BLAKE2b-256 7de6abf80c8fa10aa5daf24b3467b05c2ec9f506551d5926fb0f6d1481dab521

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 377.3 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7814b2cf23aad23464859973c5cd2066ca2fd99e0b934acefbb0b728ac2525bf
MD5 81c823a66fd250ef4d3e522b66e61111
BLAKE2b-256 9acddc9d61c682485d10d73e83d503448c76a4244d214e2912a32e8709ed38bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 508.6 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc359e408712faf9ea775f4c0ec8f2bfc843afe47747a657808d9595edd34d71
MD5 551005693b0d7aad3cff579f52f5fe8e
BLAKE2b-256 24783877080b4eb4e14f9dc19e93bc6c7f478f7539065d005ca814985c0432af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 510.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7fd18d4b7939408df9315fedbdb05e179760960a92b3752498e2fcd03f24c3d
MD5 c27e802154cfe9a29f9f49f5da424c58
BLAKE2b-256 39b87d589f777c2d73d87bdc92e2dde6828390e292a929dca58036de8f28ac8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 517.2 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 950710f7370613a6bfa2ccd842b488c5b8072e83fb6b7d45d99110bf44651d06
MD5 44bfa614f399cfcf20c3857e33902e2c
BLAKE2b-256 826438d62df375bed8caa4b78a9fdc58a1588bf798ed1502db85ae11e05fc009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cd42c66d49ffb68dea065e1c8a4323e7ceab386e660fee9863d4fa227302ba9
MD5 a3a639a866f83ac485e067e3d3b0846d
BLAKE2b-256 3d7fcd6e2254286e1c502119f3d57e56363dcbe1df3d2bb3b84d24c27df9eebc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 507.8 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 685b884fa41bd2913fd20af85866c4ff886b7cbb7e4833b918996aa5d45a04be
MD5 7b7c8d0af906f216dfcccc9e83b82d2c
BLAKE2b-256 a98a6a8b07fee1c8b688189230adff7e998e918536129a06653a6a97633bb19c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 28633868be21a187702a8613913e13d1987d831529358c29fc6f6670413df040
MD5 4738a5a12b80ac365bec984ee15a4757
BLAKE2b-256 1d07383b5f30b28a8e25b2e0db8803911be787b000b3b2c8f846dfdd958d00fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8b02e0119d6ee381a265d8d2450a38096f82916d895fed2dfd81d4c7a54d6e4
MD5 e5e207947f03671c6b5fa3879ff08344
BLAKE2b-256 9d424b80f6b7a9bc99420a38f8589bd650f6c6ea7586e047e9452af1372e540d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 412.0 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 29390c39ca873737689a0749c9c3257aad96b323439b11279fbc0ba8626ec9c5
MD5 76d9fc08a11575851ff015c447e1d16f
BLAKE2b-256 d4115657aa6532f8e43b60acbdf8a19772ccd2139b30686d85813acabcb81f41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 378.6 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 7c77801620e5e75fb9c7abae235d3cc45d212a67efa98f4972eef63e736a8daa
MD5 73fbaa16334f0b403149466197ae4ced
BLAKE2b-256 ec856d5c52f9d8fe488dddefc9977e1ddebac275388768137ec4b65695400b49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 375.3 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 2aeb108da1ed8e066800fb447ba5ae89d560e6773d228398a87825ac3630452d
MD5 c0714c92071f36b94d3217b01d30f576
BLAKE2b-256 3fda194add7fff8b8c4c49f1ab2cd16712e24ad7fdced959f1354822be01baf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 488.8 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 622a5157ffcd793d305387c1c9fb94185f496c8c9fd66dafb59de0807bc14ad7
MD5 618f0ce70ac465ca69f3a0e6d38ececb
BLAKE2b-256 55735288f113286455f969e7da37f279ab222e37096284794d91dea656a4749a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 480.3 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 733e1cfffc4cd99848230e2999c8a86e284c6af6746482f8ad2ad554dce14e39
MD5 ed63f79a469e264ea36a66ca939d247f
BLAKE2b-256 354ebe9ef06fb06fb17b916b0f3be16c4a1657c90a77e4bd615b025d509b0cbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 411.6 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3dbc67754882d740f17809342892f0b24398770bd99d48c5cb5ba89f5f5dee4e
MD5 c5c30361f0fa966503bc4993fdc5a9a8
BLAKE2b-256 b15a452f9e58f679f154a14e931098175700f2ed151fcac44fa00fc70f5a1303

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 488.1 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 42f9ec9d77358f557fe17cc15e796c4d4d492ede1a30cba3664822cae66e97c5
MD5 0475c44b10db4100e0484de9da34f4c3
BLAKE2b-256 13770bb5f80b2400883b4af1c760325205a67f4c220af3baa8b81b52d2ba8d94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 180511abfef70feb022360b35f4863dd68e08334197089201d5c52208de9ca2e
MD5 f559aadcb317a126a45fc56a30b7027a
BLAKE2b-256 e8839b3c0793a05c355ddd84e187818bb3ff644a051448ebe76a2e173287d598

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 379.0 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b1aa62903a2c5768b0001632efdea2e8da6c80abdd520c2e8a16001cc9affb23
MD5 cf1fca495ac10038d8d7674f8cf80963
BLAKE2b-256 0344c63f294956c79f8427682347ab4aa11420d04f6f6963c44129bc236761c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7d2ae2f7c50adec20fde46a73465de31a6a6fbb4903240f8b7304549752ca7a1
MD5 3dfadc7d50239f7f97a9debca6b5eefb
BLAKE2b-256 e20bad719e1d6ebbcb49be6c33eec96973d0c8af8a5c97cb6c2709912e8977dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-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.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd351ceb2decd23d523fc50bad631ee9ae6e97e7cdc355ce5600fe310484f96e
MD5 56fd950f7ae46b5b994ecfc07fe2d37a
BLAKE2b-256 730ef108bb358128aa6dcaaec0edeef9dab39f61b780f6449a9568b64c0d0f97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 480.1 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9fbffc5bad4df99a509783cbd449ed0d24fcd5a450c28e7756c8f20eda3d2aa5
MD5 2f3a5eba549fa4b12d712dc398044694
BLAKE2b-256 c8f840458d7700da4088e34d84cf8d72a14eeebbb8b978e2629f82f542502a7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.11.3-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 376.0 kB
  • Tags: CPython 2.7m, macOS 10.14+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.6

File hashes

Hashes for pymongo-3.11.3-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 4d959e929cec805c2bf391418b1121590b4e7d5cb00af7b1ba521443d45a0918
MD5 b23f5c278869535df9cefb0d8fcfedc2
BLAKE2b-256 ab8150b5ad52ca4b303c38d00c881858d36893d2838f23dc3a31da178fec12e3

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