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

Uploaded Source

Built Distributions

pymongo-3.11.1-py2.7-macosx-10.14-intel.egg (773.9 kB view details)

Uploaded Source

pymongo-3.11.1-cp39-cp39-win_amd64.whl (383.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-3.11.1-cp39-cp39-win32.whl (377.6 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-3.11.1-cp39-cp39-manylinux2014_x86_64.whl (517.8 kB view details)

Uploaded CPython 3.9

pymongo-3.11.1-cp39-cp39-manylinux2014_s390x.whl (520.6 kB view details)

Uploaded CPython 3.9

pymongo-3.11.1-cp39-cp39-manylinux2014_ppc64le.whl (525.6 kB view details)

Uploaded CPython 3.9

pymongo-3.11.1-cp39-cp39-manylinux2014_i686.whl (510.9 kB view details)

Uploaded CPython 3.9

pymongo-3.11.1-cp39-cp39-manylinux2014_aarch64.whl (517.7 kB view details)

Uploaded CPython 3.9

pymongo-3.11.1-cp39-cp39-manylinux1_x86_64.whl (499.7 kB view details)

Uploaded CPython 3.9

pymongo-3.11.1-cp39-cp39-manylinux1_i686.whl (510.9 kB view details)

Uploaded CPython 3.9

pymongo-3.11.1-cp39-cp39-macosx_10_9_x86_64.whl (379.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-3.11.1-cp38-cp38-win_amd64.whl (383.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-3.11.1-cp38-cp38-win32.whl (377.5 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-3.11.1-cp38-cp38-manylinux2014_x86_64.whl (531.3 kB view details)

Uploaded CPython 3.8

pymongo-3.11.1-cp38-cp38-manylinux2014_s390x.whl (533.8 kB view details)

Uploaded CPython 3.8

pymongo-3.11.1-cp38-cp38-manylinux2014_ppc64le.whl (539.2 kB view details)

Uploaded CPython 3.8

pymongo-3.11.1-cp38-cp38-manylinux2014_i686.whl (520.8 kB view details)

Uploaded CPython 3.8

pymongo-3.11.1-cp38-cp38-manylinux2014_aarch64.whl (529.7 kB view details)

Uploaded CPython 3.8

pymongo-3.11.1-cp38-cp38-manylinux1_x86_64.whl (510.5 kB view details)

Uploaded CPython 3.8

pymongo-3.11.1-cp38-cp38-manylinux1_i686.whl (520.8 kB view details)

Uploaded CPython 3.8

pymongo-3.11.1-cp38-cp38-macosx_10_9_x86_64.whl (380.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-3.11.1-cp37-cp37m-win_amd64.whl (382.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-3.11.1-cp37-cp37m-win32.whl (376.9 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.11.1-cp37-cp37m-manylinux2014_x86_64.whl (512.3 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.1-cp37-cp37m-manylinux2014_s390x.whl (513.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.1-cp37-cp37m-manylinux2014_ppc64le.whl (520.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.1-cp37-cp37m-manylinux2014_i686.whl (500.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.1-cp37-cp37m-manylinux2014_aarch64.whl (511.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.1-cp37-cp37m-manylinux1_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.1-cp37-cp37m-manylinux1_i686.whl (500.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.11.1-cp37-cp37m-macosx_10_6_intel.whl (414.3 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

pymongo-3.11.1-cp36-cp36m-win_amd64.whl (382.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.11.1-cp36-cp36m-win32.whl (376.9 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.11.1-cp36-cp36m-manylinux2014_x86_64.whl (509.2 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.1-cp36-cp36m-manylinux2014_s390x.whl (510.5 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.1-cp36-cp36m-manylinux2014_ppc64le.whl (517.7 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.1-cp36-cp36m-manylinux2014_i686.whl (499.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.1-cp36-cp36m-manylinux2014_aarch64.whl (508.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.1-cp36-cp36m-manylinux1_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.1-cp36-cp36m-manylinux1_i686.whl (499.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.11.1-cp36-cp36m-macosx_10_6_intel.whl (411.6 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.11.1-cp35-cp35m-win_amd64.whl (382.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.11.1-cp35-cp35m-win32.whl (376.9 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.11.1-cp35-cp35m-manylinux2014_x86_64.whl (508.2 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.1-cp35-cp35m-manylinux2014_s390x.whl (509.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.1-cp35-cp35m-manylinux2014_ppc64le.whl (516.8 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.1-cp35-cp35m-manylinux2014_i686.whl (498.2 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.1-cp35-cp35m-manylinux2014_aarch64.whl (507.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.1-cp35-cp35m-manylinux1_x86_64.whl (492.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.1-cp35-cp35m-manylinux1_i686.whl (498.2 kB view details)

Uploaded CPython 3.5m

pymongo-3.11.1-cp35-cp35m-macosx_10_6_intel.whl (411.6 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.11.1-cp34-cp34m-win_amd64.whl (378.2 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.11.1-cp34-cp34m-win32.whl (375.0 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.11.1-cp34-cp34m-manylinux1_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.1-cp34-cp34m-manylinux1_i686.whl (479.9 kB view details)

Uploaded CPython 3.4m

pymongo-3.11.1-cp34-cp34m-macosx_10_6_intel.whl (411.2 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.11.1-cp27-cp27mu-manylinux1_x86_64.whl (487.7 kB view details)

Uploaded CPython 2.7mu

pymongo-3.11.1-cp27-cp27mu-manylinux1_i686.whl (479.8 kB view details)

Uploaded CPython 2.7mu

pymongo-3.11.1-cp27-cp27m-win_amd64.whl (378.6 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.11.1-cp27-cp27m-win32.whl (374.7 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.11.1-cp27-cp27m-manylinux1_x86_64.whl (487.8 kB view details)

Uploaded CPython 2.7m

pymongo-3.11.1-cp27-cp27m-manylinux1_i686.whl (479.7 kB view details)

Uploaded CPython 2.7m

pymongo-3.11.1-cp27-cp27m-macosx_10_14_intel.whl (375.6 kB view details)

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1.tar.gz
Algorithm Hash digest
SHA256 a9c1a2538cd120283e7137ac97ce27ebdfcb675730c5055d6332b0043f4e5a55
MD5 b0faeecfde6f25ef7ace9aa75fedd205
BLAKE2b-256 15dcbc9f2692cd9ece34236950db1c27573ab28a2a5d1d651af57c67839aa593

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 3cf7726216a8792d147ba44433fddc19ed149531fb23899ce82d24a0a90ec2fd
MD5 c0bbf44c127e940a9c13cc9d1224bb85
BLAKE2b-256 87494c93777a3f40fd6fa1bfe5895b04f55531521c4e5a366820c5563c642703

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 82bc20e554fe9175e6ae53db74c3f094c4d752a55e3b363b93ff93d87a868cb7
MD5 dc98aa3a6c8dc2884f4734b3dcefd617
BLAKE2b-256 674320844082cb4ad39d94e4f515a46d3e78af360be14e0365d6915bd4800940

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 613d30623bd1f9418d5a6999f73066b01831bf7c7789bc3fe2bf44b5fe5dc67d
MD5 40acf517d9255b10ab3d736482ae6b27
BLAKE2b-256 130ba341872ba8a7bf27a469d1f43f7d729b318e604fa0be4ad692feede74af5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4266ebb14bed0206c73e2f626949679c23a6f935ea4b60529d7c3551f2f3051a
MD5 a812716a4ab0aea90fda5263920bc6a1
BLAKE2b-256 0fc619ae011df5735a3316e096ed864851b6f997fe342a3e8c641f3c04188c0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 251acfa87e07e47044ed7f6157fc63a95020bb4ee9d705fb2faf3b67e6a3574e
MD5 66b24cae8d5ce8f0d0d71bd05fb554fc
BLAKE2b-256 6898fee116566399873687e308ea2c40c01664e2a09db1b4d7893c8d0911b945

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 078e74cffb4955a454dd0955c3fa38327185a41447ac4e368f81c2f0c07e6559
MD5 0e60272e0b4a0bfb8c2ea8d0491edd0d
BLAKE2b-256 d42dddcb7129f39c52eb96d989010d4447759f290e7ebfd3964d5c181435f7f4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56bbbccf22fd91ae88b2dffe56dceb84d80fa808065e6bcbedb86ec7e0f84b3b
MD5 753b8bd1fc94300536b8eec4078a2481
BLAKE2b-256 90061b770b072931dd637566354a2ee0579cc8af9efbff099f1878928b1012ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 342248b25c193ab20e1145989455d614d4d553334576a72be600ee371fa5de41
MD5 705aed37e6a8cd7aecd3eb3c95c3c5ba
BLAKE2b-256 44fcdc448143d8e40fd62beff451d4078f55d1486cae9d6eebef94cb6aff3286

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cb81aa36a171ed1c28d615577ab5feae8e0b8e48818833663b446dd2bb8b53cd
MD5 fdc5e6cad95c3b6a08253b40be6f47be
BLAKE2b-256 470058740af1103d87f8d8adb096f96152667f13317b38aba72315488074db67

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 00f6c32f86a5bd1cbefcc0a27ea06565628de3bb2e6786d3f0dce0330e70c958
MD5 8b53b5d2db8a5b65c0209b01226668a5
BLAKE2b-256 f40b811195d0ba124dfe3af55c2335a869b97b9ae8573f5d94d340a62d1a9abb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a122c9e30e49bbd8c5c423e3ea2bcff5deb8a2c504d88cbfc3c21b036295bbf3
MD5 c35d139a3091d21603d79e4363b11d4f
BLAKE2b-256 ea9d313ea8c168e9f26358218151e98209f3dc3120e919f6de0c05f11ea56ab6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c66de369d459f081a1860c58c6218da5e30a4c5d07277526f66f6c0b0efe742f
MD5 4ec2eeee585e2ec4cb2e40bb0146630f
BLAKE2b-256 84421f3d4113d738f898514a6e12b2bffe8d083996987ce43a8373230ef43262

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ebf21c07353d313421212e8ac0b21b6161c81aa71a12471b58629e38c784a751
MD5 5b7913a88a00bcdaa99faf93c67843c9
BLAKE2b-256 172e7cada682e46a3b6eefb2b7f063b149632b357f3be35d2bf10f2b24374adc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f0023db6168f052ffeec435ca0608ffe8abac17a36b8084bdc348c978e08a23
MD5 9aa633dc43a5619a3a96e0e640a1b68c
BLAKE2b-256 a2a349865fca57c1c1fd1380b9487576ed6cb4de7eed1e999ad24ddc93fadbad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a07a9983e0bc51ad61a16c228d1b60d1f98f7df5f225f435b41f8921d335e06
MD5 4b9cbd06b977d3064ff8b5385aabb6f6
BLAKE2b-256 2c9d32e55d490e189c074ff3b3f13bbc67631230e1a170dcd12bf0ba393c4740

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 220216da1d4fb10f941ff5e408f2958896fe534283bb3b1c1c17d4b0ac5d8b45
MD5 acd254ddbbd00cee1aa1445c960eef85
BLAKE2b-256 1db181ce839f5b48f08e79ce3463b537cf108721c3d9d89e6e6d910e802c40cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c0b0d201182bfbbfb2c679af3118ca53926a31d8c0c21e9b7943f8264ec0052
MD5 453ff0b716abdd9d170abdf8671ba5c2
BLAKE2b-256 95efb5226856b849f1549cced86f8f8fca9b4c92df666feaaf6497f302d9d3e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 903396921ad52c63c423683a141391e28edb8b6dfbd2388a6848b052a9e23863
MD5 3c2d1be1ac2232ee5030341250b66940
BLAKE2b-256 d95290e4ae8f64e124ecbf547ce2034fd7edb92e3476adf642a0a8c2caf08952

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a08c60335a4b1c6348d5be176f379f7b69f2021d1ebaafb11586007f6268a423
MD5 0db606837dcf17c67935e3fbf2694a67
BLAKE2b-256 3c461fff59a5ca89b967ea35ac04ad1f00e9c4388b34642d484fe6fd2e9f82bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd09c310c54c6861e1488fcd30ceffa5dcd6c2dfe9f8409f47a8266fdc698547
MD5 c0bdf34d995cab795ebdbe51a3675104
BLAKE2b-256 468a105b018b7fca905bbe9c107fead3f694962b6943c58704b92cd82c2709f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c756d00b728f0d5ec65519d9005389fea519b2ad3aef0896c49ce80e6da8b547
MD5 37e303de62c7fb4b985fd7a9b7b8b480
BLAKE2b-256 0b00675527fa96fbd13e7468136d5e68be216fb95ce4c21abac125eb787856cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ae0403befca6a9088be702c1d94fc1b17c333cd84a43328c973d223991c41936
MD5 7d6c836cdfdadebaf58f386db4ff96c4
BLAKE2b-256 8652125ac054bc6b363c5e0147baee8b3e8686d94f743b49bc1c302b2c74445c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0dd8c0367639cd5cf84be91af6b733076119745aea6e53fdf9e581819d911eac
MD5 0337fb4d40841c0c2fd15b8f2c98746b
BLAKE2b-256 07a50727d702f8bfc056cbeac6d52ae312a1837122db1035ebc0e848e1b01091

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bcbde25342fa0991b0c144c8eafadc77e605e7940bf462922f6d550f88d6777
MD5 8b0905d7178d8e19105f6d56de245898
BLAKE2b-256 890594b5b9c1d24297b6067e89d70de705d0d2d05049f3a481fd035a6a7b9ed8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7953352bc27ac5fbf79d43ef7bf576ad06fa06c0ae0d6ad7c36b14cd596d565
MD5 6aaf92431b7d3806c614fe0e6178f413
BLAKE2b-256 3cce3c451c882af49d087558c2489715baa6891b1807a369abb50c8930ef2a52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e7b2b589a600f467e9159df907638c2d08aca46b0f74d88ceeaa185abd9069b
MD5 f9e2da10fcefc64aeee75d85ba28c881
BLAKE2b-256 36bbe19fd8a7fa9181c8e8d6278edf11273f3debda969ff0940c3f70ac51c6e0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5b4ba4939c2ab6550ecef1ccd7b00537de7a7e18a8f03bce0fc4786111b4d47
MD5 9aae258b6eb02cc72837738ab0d108d6
BLAKE2b-256 483e963cc55b358afa46d40809bb65f2fac3b9fb83d41817a84b4280fe1a5e02

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a5667eb4bc9ed805d1a06ca8b5ff7ee25df666b05cbb8f58f9ac16cac243d0b
MD5 0fcd37da3028a2b09b1276ff38acf5af
BLAKE2b-256 6713392c996d26fdf3507a64e1f1ee9d7bd3c3527c3f74a76f6b748128876f00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8becbccb58b7b37ce2aa5f387f298914ec520747f11edfbc31347bd2ba7e3481
MD5 d9126f33592bc8eaacd54b37063edfcd
BLAKE2b-256 19ed7e680b30d8760688b5f7cb23487823420c7638c193f8d8e98c149f74e381

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f5fabe75c9b7eb5a42dac9717f952a879ab3705bcf7e9ef744cdbdfd37bcf3d
MD5 2aa8dd4cc621b0e0267d38b9071d61f3
BLAKE2b-256 2f73d033f46e336b62af1575889fd40c2b751be5c3c3ba0abc788a3bb4ab4275

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b3b939780963164086fc256436c1bf9301d4c5c99026e2c281b21237234aaa2c
MD5 e44412b96a74fde7be88eb245f639f77
BLAKE2b-256 315c35ff9d5b4f6edf96a4f6ead705f7560982d3f8818995ee6bca33793dcf1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 aacc9b646e142e7d32b88f0dccc6ab28f669ecf3ccc7212a274b99c83e228ef1
MD5 2cdfce4b1b6feeba2ac9daba091437b9
BLAKE2b-256 74293e0d6da4b30d892f7ac00ea343f066034812e92036fef577e3bf987426c3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 cc375f5cea8635597c21ff6bc61486ebe5dca5e662982c9e2b58a9106f92b56e
MD5 d99798b25e85283d7fac202a66474002
BLAKE2b-256 892527108684649e7988a0c6442c2c13b81d029d309adef2cc1d0d88a95a4e92

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9d7af8f668d2880fff8539188694e75e0b91d37174672a59dc5c5a0fea9f60d
MD5 24205ea137c01da3c7c48a337b7df966
BLAKE2b-256 564c2e4d6fab8b2abf4c0d203b2131745d98071316a246a06ec756030a4fadff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1529b23a51ef8613712b3e19225690564955250932d58487af6c060413ce0f1f
MD5 390073ccb3ab9c9055d1b2b10d159013
BLAKE2b-256 352cce1bf8116fe4937ccc42f1edf57b9d453a12c48cb32a5950df5d470a2479

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2542b21b08dc30bf0a69de55a42225f25b0af0dea7852edf2011952abb50e7b4
MD5 01e7493340c5b254b203000013ac398c
BLAKE2b-256 9580b23f4b6a22167f71de51269d0025dfb791696138a7b9216aa2521b5e9c7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f648d58915eb339329741296599fb25bc2a76474e64bdfeae4423ae83b312fb8
MD5 41263262eee8aedd60e84a82c761139d
BLAKE2b-256 e8d4876d37ed26959a8069a73c6d596a0dcdf092618d4d6a51fb72c991c7e491

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fc04e445e58103bfddb601822ab355ffb8fb760142593e2b0f20c3940859352
MD5 790957fabd6c389ed1e131ecf03d4230
BLAKE2b-256 22a0b00ee0e7aa1057d87a333b6c3e8a963c578ec2ae5533b530dd36d9759ec1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b6282855f9193f4e7ae07c2d138b583d487d0e66add62eda7013365815188ce9
MD5 321491bac0d03ced1ecf3132c22c2592
BLAKE2b-256 dd976bbc28cc5bb48731f30e368421b5a8120db31028b01de1239642d72328de

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b8076ff801dca0920f1b5c76a0e062dc26bb76de7e79efcf347c3a5ff776127
MD5 b06fd1a949214e043afedb10b7952754
BLAKE2b-256 5d8cd26c058defa2e892d5918ae1be60d67d1466c3873eab8718bb5c60e9ab66

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 78d4142116d6d910f1c195f3253b6209f21bb1b06fb6c6ebf90cbf80518c4071
MD5 2e0fc07b0321549a70cc1db8b1f7410e
BLAKE2b-256 96615876fe3af662746950836f0f3ed767b0b98d0ea4e58a05a8a921715dccb9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 079a30c21d3c334ee65581a8cac5380e94521970423996c5b18a7c550230d94c
MD5 95a8c2222de0278b90422e0367157100
BLAKE2b-256 92d442a75fe046ec9e29cc88e773146bbd8925f35b43e7c24ee46022a3acdfee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a6bf56c1f6d13b0e22db604c73fba6feca088fe7f6aa978cc215f83e2005d765
MD5 e31810d1e02bf7fac49ada35b18be3a6
BLAKE2b-256 deae9f074ec9b395493b7265fce962b33dd5d630a50f6c84adfae5153d875df6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6d72517fa7370841981770c3802e7a8ca7e94ead1fba9981349fbe8e539f7eb
MD5 8b264ab4857a6363da0d635db4c7e32c
BLAKE2b-256 d3fa3741695290aabebb569dbc52d6dc18fd3f1a06655fc30fbb71d28e6e5a65

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74b6e8e240e53518a701f4cd56a518c8de2631d6019e93295499db15cf46d973
MD5 e4f18803ca42cb6d4f6a67174dbd6658
BLAKE2b-256 72cdfb6720ecfc2864da6ce8df55127e2f9483f2292dccaf494a53bb5978c953

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5012342f457a544818254a89f7e7a4ecd05c4eaa89ed68ae58727039c92ff0f7
MD5 fe59dd1edd65af6220530db5f2ada2c3
BLAKE2b-256 746dbc10ef5edba4a1b4cd565fe8a75ab724eef1ad4a389a4271e7d7d4905a81

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17a3b2148b9e0914dc5f0d6a5c636f81dc4b428b80ea45576f79cfe619844c6d
MD5 c1a3e4c3011e22f3fb1e8bf8cec38cbf
BLAKE2b-256 3bac8f8c90fbe76771452190de46797229aafbd3f8426c6b5c9fbec6f7bc4ef9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eebe522043450e8cf83ab7be2fc0268dfe702de586970d752cb012d6ce72309f
MD5 ca3e1db1400fd5978e015b6a1d70fc8f
BLAKE2b-256 4a4ed4d5d4a3f946fcda44eb879f26357ce1c4dac701d0289dec6c03714c9949

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 319f1b5a8373e280026905093aaacf4cca858a9ae653e456b9f9f9ad5f308088
MD5 748e820c688597580491ee9290f9c62e
BLAKE2b-256 d63c5a9d0e9f7567c0caa1d58d79925595d554b19a440c714e8d3cef7a058b3c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb3f19af1949cbf93b17021c8c61e14e697c3f5c8923134b085dcef9d271b699
MD5 546ecc02c58d58e18cf2aee81ab76efa
BLAKE2b-256 64d5f3653fe3fd01db552017ac6e58f55d62ba903b1c95b0ff3ed1e568104cea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4cc8cf971ee53ad65e53b80a6f611070dbe55640b447ae9b2b98329aebd21155
MD5 7803057fa988d68da774a6b070568c11
BLAKE2b-256 078c4528fbeda98e0138f23060a20446f4490b766400bdfdd943ac7a70524ce5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 dbc23ece1b111a10eb6d2475a7726b70418303d2e05078d223e7f97b286745a7
MD5 c5519797574e5744b73ed929dcdb88fa
BLAKE2b-256 16ff13188008b830cb0ffb6e082e995399d765e68c4faf3d7a11e4652041dd5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 e83d61f9a247344c701147934f203117c3064c982d35396565a6ca8356bc0ea9
MD5 bba7aad3fb26b64544919f926902cf27
BLAKE2b-256 6b0d9fa4cb7396205f9a072a74b0291d8a345a5c05a477c185fd5961c365498e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5a88fad3dcfaa222383ceb53af9a030a841ad998636648a748d79515c8afb6b4
MD5 39d39c61615fb76b513b0be3d0d7b99d
BLAKE2b-256 f571c77fa16b94ee929d26cd736751dde5f7e2670ef6679665ab1fc3040341f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6e6089393646c1ef865484c27871d52ead69641dce5b53cbae2096cec615151
MD5 a75523ea20cbd98a7566d03dad9e49ff
BLAKE2b-256 69cf509b0cbf1c32df71ead3f913dafb26de2f1a074c7379ae2b48af104343b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d349cfc776f8859c2f99ff916e307555f5615ffabfbd6162f3822f21aa1e22ed
MD5 a3b65ba2f881117e834f438ac76ba4d3
BLAKE2b-256 3996649cbc5da41b2ff6bcaccf76216bb833b15a9a886d36df31e99e91d78366

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3158d2824391c52020d67e629d2586af774b543a75dc9f64eb830991ac2776e
MD5 f75ff62deb00d7a247fbb4ef5dc2d610
BLAKE2b-256 f1c98db9f9201ed578abcd5b04768cf4af32c704093de06b797bbb4f3b1ebcab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4da19b5c555cf1d8b8a0b980d9c97b1b0f27e05bcf278bf64cc6c30b697a59f9
MD5 15d65d8431483907c7c3f2a098c8fa06
BLAKE2b-256 ce720d27f0496c45569d9e2056be61ffa920bb723acb2ece0fb53ddd7f45e5a7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 be124527bfc30869e8a17915e1e960150757553d58c98e56c598fbb85697e32e
MD5 e8043cfec485fd3e00ccfdcb2831ec39
BLAKE2b-256 6887ee498d32113625d9b5c0b25f2fad0c2cc0a16d272d7648ee1666a30d0440

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9f672a8b5972a2db3284f8c0324dcaaeceedead9b4e5c836e93092b599f2dbf0
MD5 7c325774a1404bd32829287b672063b3
BLAKE2b-256 58cf3df6daffc966a85cc7c35371feccdc43a14200a4b951b66bf656abb542c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0b5aa85a04efcf22c176de25e3fce675510d7700f523728fa9485d576db41358
MD5 74644a86896bcbf4193acf126d08cf19
BLAKE2b-256 31ea59d9f1436a43354bde8f214930204007822ee099a2c8f9c0cab3c01f373d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1ee136a8648cd76b44afdff99096823e68be90d02188d30e2ccd00b58e9b353
MD5 4e2051123b22810831992f03222269f3
BLAKE2b-256 31668eece51d68f6454399987a81e5816d8ad5ed3b2b2c8d470ece1c08946910

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.11.1-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 016e8162b57e2a45cb8d2356f39795ccff2ee65fd79fe078de4f9aa78ef1994b
MD5 2e61f1216aa7336666e9a147180a48d2
BLAKE2b-256 352e87fca5db488da0b40a5149e96f49cd00d4aea62a964ae7c680138ea5ad46

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