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.

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 and 4.2.

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-user list on Google Groups.

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]

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]

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]

You can install all dependencies automatically with the following command:

$ python -m pip install pymongo[snappy,gssapi,srv,tls,zstd]

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

You will need sphinx installed to generate the documentation. 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.10.1.tar.gz (715.9 kB view details)

Uploaded Source

Built Distributions

pymongo-3.10.1-py2.7-win-amd64.egg (716.7 kB view details)

Uploaded Egg

pymongo-3.10.1-py2.7-win32.egg (712.2 kB view details)

Uploaded Egg

pymongo-3.10.1-py2.7-macosx-10.14-intel.egg (712.5 kB view details)

Uploaded Egg

pymongo-3.10.1-cp38-cp38-win_amd64.whl (355.2 kB view details)

Uploaded CPython 3.8Windows x86-64

pymongo-3.10.1-cp38-cp38-win32.whl (349.4 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-3.10.1-cp38-cp38-manylinux2014_x86_64.whl (480.1 kB view details)

Uploaded CPython 3.8

pymongo-3.10.1-cp38-cp38-manylinux2014_s390x.whl (482.4 kB view details)

Uploaded CPython 3.8

pymongo-3.10.1-cp38-cp38-manylinux2014_ppc64le.whl (488.5 kB view details)

Uploaded CPython 3.8

pymongo-3.10.1-cp38-cp38-manylinux2014_i686.whl (451.9 kB view details)

Uploaded CPython 3.8

pymongo-3.10.1-cp38-cp38-manylinux2014_aarch64.whl (479.7 kB view details)

Uploaded CPython 3.8

pymongo-3.10.1-cp38-cp38-manylinux1_x86_64.whl (464.3 kB view details)

Uploaded CPython 3.8

pymongo-3.10.1-cp38-cp38-manylinux1_i686.whl (451.9 kB view details)

Uploaded CPython 3.8

pymongo-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl (351.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pymongo-3.10.1-cp37-cp37m-win_amd64.whl (354.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymongo-3.10.1-cp37-cp37m-win32.whl (348.7 kB view details)

Uploaded CPython 3.7mWindows x86

pymongo-3.10.1-cp37-cp37m-manylinux2014_x86_64.whl (462.5 kB view details)

Uploaded CPython 3.7m

pymongo-3.10.1-cp37-cp37m-manylinux2014_s390x.whl (463.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.10.1-cp37-cp37m-manylinux2014_ppc64le.whl (470.0 kB view details)

Uploaded CPython 3.7m

pymongo-3.10.1-cp37-cp37m-manylinux2014_i686.whl (441.0 kB view details)

Uploaded CPython 3.7m

pymongo-3.10.1-cp37-cp37m-manylinux2014_aarch64.whl (462.1 kB view details)

Uploaded CPython 3.7m

pymongo-3.10.1-cp37-cp37m-manylinux1_x86_64.whl (451.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.10.1-cp37-cp37m-manylinux1_i686.whl (441.0 kB view details)

Uploaded CPython 3.7m

pymongo-3.10.1-cp37-cp37m-macosx_10_9_x86_64.whl (350.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pymongo-3.10.1-cp36-cp36m-win_amd64.whl (354.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymongo-3.10.1-cp36-cp36m-win32.whl (348.7 kB view details)

Uploaded CPython 3.6mWindows x86

pymongo-3.10.1-cp36-cp36m-manylinux2014_x86_64.whl (460.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.10.1-cp36-cp36m-manylinux2014_s390x.whl (461.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.10.1-cp36-cp36m-manylinux2014_ppc64le.whl (467.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.10.1-cp36-cp36m-manylinux2014_i686.whl (439.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.10.1-cp36-cp36m-manylinux2014_aarch64.whl (460.0 kB view details)

Uploaded CPython 3.6m

pymongo-3.10.1-cp36-cp36m-manylinux1_x86_64.whl (450.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.10.1-cp36-cp36m-manylinux1_i686.whl (439.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.10.1-cp36-cp36m-macosx_10_9_x86_64.whl (346.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

pymongo-3.10.1-cp35-cp35m-win_amd64.whl (354.3 kB view details)

Uploaded CPython 3.5mWindows x86-64

pymongo-3.10.1-cp35-cp35m-win32.whl (348.7 kB view details)

Uploaded CPython 3.5mWindows x86

pymongo-3.10.1-cp35-cp35m-manylinux2014_x86_64.whl (459.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.10.1-cp35-cp35m-manylinux2014_s390x.whl (460.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.10.1-cp35-cp35m-manylinux2014_ppc64le.whl (467.1 kB view details)

Uploaded CPython 3.5m

pymongo-3.10.1-cp35-cp35m-manylinux2014_i686.whl (439.7 kB view details)

Uploaded CPython 3.5m

pymongo-3.10.1-cp35-cp35m-manylinux2014_aarch64.whl (459.3 kB view details)

Uploaded CPython 3.5m

pymongo-3.10.1-cp35-cp35m-manylinux1_x86_64.whl (450.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.10.1-cp35-cp35m-manylinux1_i686.whl (439.7 kB view details)

Uploaded CPython 3.5m

pymongo-3.10.1-cp35-cp35m-macosx_10_6_intel.whl (385.8 kB view details)

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

pymongo-3.10.1-cp34-cp34m-win_amd64.whl (351.4 kB view details)

Uploaded CPython 3.4mWindows x86-64

pymongo-3.10.1-cp34-cp34m-win32.whl (348.0 kB view details)

Uploaded CPython 3.4mWindows x86

pymongo-3.10.1-cp34-cp34m-manylinux1_x86_64.whl (451.7 kB view details)

Uploaded CPython 3.4m

pymongo-3.10.1-cp34-cp34m-manylinux1_i686.whl (445.0 kB view details)

Uploaded CPython 3.4m

pymongo-3.10.1-cp34-cp34m-macosx_10_6_intel.whl (385.4 kB view details)

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

pymongo-3.10.1-cp27-cp27mu-manylinux1_x86_64.whl (445.0 kB view details)

Uploaded CPython 2.7mu

pymongo-3.10.1-cp27-cp27mu-manylinux1_i686.whl (437.3 kB view details)

Uploaded CPython 2.7mu

pymongo-3.10.1-cp27-cp27m-win_amd64.whl (351.8 kB view details)

Uploaded CPython 2.7mWindows x86-64

pymongo-3.10.1-cp27-cp27m-win32.whl (347.8 kB view details)

Uploaded CPython 2.7mWindows x86

pymongo-3.10.1-cp27-cp27m-manylinux1_x86_64.whl (445.0 kB view details)

Uploaded CPython 2.7m

pymongo-3.10.1-cp27-cp27m-manylinux1_i686.whl (437.3 kB view details)

Uploaded CPython 2.7m

pymongo-3.10.1-cp27-cp27m-macosx_10_14_intel.whl (347.0 kB view details)

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

File details

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

File metadata

  • Download URL: pymongo-3.10.1.tar.gz
  • Upload date:
  • Size: 715.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1.tar.gz
Algorithm Hash digest
SHA256 993257f6ca3cde55332af1f62af3e04ca89ce63c08b56a387cdd46136c72f2fa
MD5 e31b9c0190c9eaf1f792d0277b2a8ebe
BLAKE2b-256 dc9b6791f7219f3573bfaa2251da4d814f4fbc49f0bbb258df1e08f7d89a7b85

See more details on using hashes here.

File details

Details for the file pymongo-3.10.1-py2.7-win-amd64.egg.

File metadata

  • Download URL: pymongo-3.10.1-py2.7-win-amd64.egg
  • Upload date:
  • Size: 716.7 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 ad3dc88dfe61f0f1f9b99c6bc833ea2f45203a937a18f0d2faa57c6952656012
MD5 19e57fec7b7ad26bc1e5ebab3ca65484
BLAKE2b-256 bb11159930f24bc711be861636c7e3e4573ca473aa6eb067cfb54c062b677b47

See more details on using hashes here.

File details

Details for the file pymongo-3.10.1-py2.7-win32.egg.

File metadata

  • Download URL: pymongo-3.10.1-py2.7-win32.egg
  • Upload date:
  • Size: 712.2 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 f4d06764a06b137e48db6d569dc95614d9d225c89842c885669ee8abc9f28c7a
MD5 bcabdd08d9e94b6e6182f571048d0607
BLAKE2b-256 ec077929e3b1756b35cf6c9b61b6cf50ebffdefd8a943c5f4af0837ddc6ebeb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 712.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 bd9c1e6f92b4888ae3ef7ae23262c513b962f09f3fb3b48581dde5df7d7a860a
MD5 2293dcdab4715903668fe0be1b07b6ba
BLAKE2b-256 f59dc6f84b9153120fb1818fe19a1b5ea23cf20b09d7b97b6ed9e05ee0d6d0f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 355.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5a2c492680c61b440272341294172fa3b3751797b1ab983533a770e4fb0a67ac
MD5 3ae4b0214f63e98fe5a1b79b240dbdfe
BLAKE2b-256 775ef30374f2a997710913c7616eb087e6473ccfd8a46eacee956d7fb8c7dd27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 349.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 31d11a600eea0c60de22c8bdcb58cda63c762891facdcb74248c36713240987f
MD5 dcb8919b86285c0b17c4e13636ef513f
BLAKE2b-256 82895c4307a303044b21553251a73df722984263018c8352c6478674f4a4b599

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 480.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae65d65fde4135ef423a2608587c9ef585a3551fc2e4e431e7c7e527047581be
MD5 25dfe4fc774270405124c3f3b4240f8d
BLAKE2b-256 c30f087858b27bb800b589c18791f735fe16b12f160c41616dfc670aae159165

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 482.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1396eb7151e0558b1f817e4b9d7697d5599e5c40d839a9f7270bd90af994ad82
MD5 900c0958f147b29834707d648fd66e01
BLAKE2b-256 c5ff6be51b287998df657bf38fdcf03c1ea49adc668c1646bdb1cf5b95006183

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 488.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3b98121e68bf370dd8ea09df67e916f93ea95b52fc010902312168c4d1aff5d
MD5 6dfbbbdf1bc6a2e46740204bbcabcd99
BLAKE2b-256 8b30dc99246f8834eff95fdbf0617e55fb7d9d127b592e2ded0a3635bd40f3c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 451.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80df3caf251fe61a3f0c9614adc6e2bfcffd1cd3345280896766712fb4b4d6d7
MD5 b592e309c289c05a36f7c522ba53dbaf
BLAKE2b-256 48a04bec4095449d32a35b377f0bed250e667f78866e9176b804dde1d33a2cc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20ee0475aa2ba437b0a14806f125d696f90a8433d820fb558fdd6f052acde103
MD5 39f564c40180ffbde999b73c9eac7365
BLAKE2b-256 a1b0c3da6fd3991ff52c833e321b01935c31dde4649f5d709ac58cdf98303df8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 464.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 53b711b33134e292ef8499835a3df10909c58df53a2a0308f598c432e9a62892
MD5 df39c0498c412d9faf937aee9c71667f
BLAKE2b-256 d6384233ec79dd40551e7b5eea381ae4a925322b19e3b3252e80f3ce9fee4a5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 451.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6238ac1f483494011abde5286282afdfacd8926659e222ba9b74c67008d3a58c
MD5 2dd046987873d1897a34875f34f2d563
BLAKE2b-256 5d056c93b16e6823caffa998ff8530504507c9c72a70ac27959212e55f8dffb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd8055da300535eefd446b30995c0813cc4394873c9509323762a93e97c04c03
MD5 7bc976f4ddb2b999d35903c451600d2f
BLAKE2b-256 5e25372cc21c6ad318356fa819ca9b5bf021b747cd5a00b868c1db1e3e8fe228

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 354.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4c092310f804a5d45a1bcaa4191d6d016c457b6ed3982a622c35f729ff1c7f6b
MD5 7b10342e06406f13ac32e925889bc090
BLAKE2b-256 5bdfd0f82279467c72dd0c8cd1908e04a7fb56145a5d222704722e2593af79f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 348.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c318fb70542be16d3d4063cde6010b1e4d328993a793529c15a619251f517c39
MD5 4ae804490b680d698bd2907429bb98dc
BLAKE2b-256 5c346a90aaefe4e866f17546a4a7b317dfe61cbb373f304ddd7a7644dbbe78ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 462.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c067db43b331fc709080d441cb2e157114fec60749667d12186cc3fc8e7a951
MD5 fe2d3eda7d996754ec9552de5072da6c
BLAKE2b-256 2fe291a313e50adcf35182e260d65cf7ec60f6f0367abefc2fbab264e6f4544d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 463.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c06b3f998d2d7160db58db69adfb807d2ec307e883e2f17f6b87a1ef6c723f11
MD5 dfd6409d7839d001aa361c807bcd3636
BLAKE2b-256 523e0e7206900cce25301e4dd132d5e5fbf2785686f9b0326a7069c72c0b2fde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 470.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61235cc39b5b2f593086d1d38f3fc130b2d125bd8fc8621d35bc5b6bdeb92bd2
MD5 6677499d6b412f849530803d0563633a
BLAKE2b-256 0ff18a6f9b15168def6646208be39ce07d0fe0e52465c457ec15d0f16e72821e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 441.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4aef42e5fa4c9d5a99f751fb79caa880dac7eaf8a65121549318b984676a1b7
MD5 3560e2a4f397ea2f10e04bca737b2bf2
BLAKE2b-256 eebe352f055c2204c254d8f195fb9380aafc8629b2139b686ed27a3fa62e09f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 462.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a6568bc53103df260f5c7d2da36dffc5202b9a36c85540bba1836a774943794
MD5 7401975c30960ffb6046dd5b909afdc0
BLAKE2b-256 a3b2203b67b67c7ccc5d1f0805afd816e0b19191ba7480824db33c387c711014

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 451.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 26798795097bdeb571f13942beef7e0b60125397811c75b7aa9214d89880dd1d
MD5 42867cf235bf25a65337400f40fbb1f9
BLAKE2b-256 be1899380a20b3ae8a54914e0d3dba99807def9a47421eff55638f120f950066

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 441.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 01b4e10027aef5bb9ecefbc26f5df3368ce34aef81df43850f701e716e3fe16d
MD5 dc87f0ca185d7a0c25ef92b0e0c69d09
BLAKE2b-256 9418eeed9d6d0440ade3363e375d0c6bd59316886a4b3df27f57feffe103096c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 350.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6da85949aa91e9f8c521681344bd2e163de894a5492337fba8b05c409225a4f
MD5 4846c60ee756a52c179c73a00189004e
BLAKE2b-256 23cd27fbc08f0bd835b4735504a758756e979b42c5bc9ebaac5ed3c2cbffd83f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 354.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 568d6bee70652d8a5af1cd3eec48b4ca1696fb1773b80719ebbd2925b72cb8f6
MD5 8dd181f1685424242eb0062642531a46
BLAKE2b-256 40bc015c54f2a26cba27763a0ce6a11d0ea6c647967d96ac6ae19e02c6598094

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 348.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 18e84a3ec5e73adcb4187b8e5541b2ad61d716026ed9863267e650300d8bea33
MD5 eee71af5c071f4b5666682356d0b3502
BLAKE2b-256 f6ac96be4a536f9808fe860d22a2c3faa07b054b6ad3c83e4810736b92990602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 460.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26e707a4eb851ec27bb969b5f1413b9b2eac28fe34271fa72329100317ea7c73
MD5 7074cab453f897d3b3a2febf18b2b1a4
BLAKE2b-256 dfa584cf94d7718a107d84ac897c39850bbdd509a924b05942cad4768031ac6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 461.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19adf2848b80cb349b9891cc854581bbf24c338be9a3260e73159bdeb2264464
MD5 2e0be9dc7b49358c874cad318a7f002f
BLAKE2b-256 387614335fe2015e4cb3fb4c07b3e9be9b280eb2f4edd39a533b1b5aca4353cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 467.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 619ac9aaf681434b4d4718d1b31aa2f0fce64f2b3f8435688fcbdc0c818b6c54
MD5 44ad8f99e9c3710b7f939e49fe44bedd
BLAKE2b-256 66e0d4aaa8f25970a52449549d57c245bdaa68b3f19d4c3b0adeaf00d641a0b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 439.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95f970f34b59987dee6f360d2e7d30e181d58957b85dff929eee4423739bd151
MD5 c6b73961ee9662bef961635bf49c4cf5
BLAKE2b-256 cad1b431d19fdd7f4e614ddf6304824c7ce1e38d2ccd4dfbbd364176e11a186b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 460.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a60756d55f0887023b3899e6c2923ba5f0042fb11b1d17810b4e07395404f33e
MD5 9e82cda2060ecb17dedce4a0540d94a3
BLAKE2b-256 1249f6fe1e6ec34f10804f5dbf028254b1f2738ed5cc91fa2be6937f52aae340

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 450.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f96333f9d2517c752c20a35ff95de5fc2763ac8cdb1653df0f6f45d281620606
MD5 3f0a43ebaadbe25bddfc07539974e953
BLAKE2b-256 49011da7d3709ea54b3b4623c32d521fb263da14822c7d9064d7fd9eeb0b492c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 439.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 444bf2f44264578c4085bb04493bfed0e5c1b4fe7c2704504d769f955cc78fe4
MD5 cec0ace3a0e82f64fe4d8ebdedc891f8
BLAKE2b-256 954c876345ddf28b4e56af53b742f34be4c57c7d616989291d7c4d80fbdfbce4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 346.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a3c7ad01553b27ec553688a1e6445e7f40355fb37d925c11fcb50b504e367f8
MD5 5efd394b390f37ea131e103c0f973336
BLAKE2b-256 c078b4d1bf9d572cf283fb5a97ddaa289feb6d6bcd72faf5c4303e313c7100b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 354.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 316f0cf543013d0c085e15a2c8abe0db70f93c9722c0f99b6f3318ff69477d70
MD5 c0a2ef2e0b20c701ca9dedd94ca54cf0
BLAKE2b-256 9c85542066affca88a0fb2728469a29e442a7f9c924e7a911bfcd6ebff58d7a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 348.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c9ca545e93a9c2a3bdaa2e6e21f7a43267ff0813e8055adf2b591c13164c0c57
MD5 dccb886f7e6e89eba57011cbea1d998e
BLAKE2b-256 f98e2e88eee59703fa914d821b649b896f8b21f0249264f40ed8ebaab3b501fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 459.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a676bd2fbc2309092b9bbb0083d35718b5420af3a42135ebb1e4c3633f56604d
MD5 1e6a702e7323fdb420af3a72df5ad43c
BLAKE2b-256 121d6fe8beb704e81d3676433a7dd4c7f79938ee6c25f322112b0951b1157738

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 460.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fdc5ccb43864065d40dd838437952e9e3da9821b7eac605ba46ada77f846bdf
MD5 e076e5ae8f7b117cad161477a156d444
BLAKE2b-256 398a0c89a8caf87067b1c61b654ffc4727684769c5980ac07ac3b8844c6e7965

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 467.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b070a4f064a9edb70f921bfdc270725cff7a78c22036dd37a767c51393fb956f
MD5 2d1f55520afd694129f34d6ef67c143c
BLAKE2b-256 d9f9851be92cc437e4a008b252cf510c32fd1c76c09a1e9cb5f71151d91f0adc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 439.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63752a72ca4d4e1386278bd43d14232f51718b409e7ac86bcf8810826b531113
MD5 d10e8734d876b310f7e26a351ec78d1a
BLAKE2b-256 93c5be1f1970c3cc71c104618c788b577454b527eec3cbd36149f34558f05e43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 459.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2b46e092ea54b732d98c476720386ff2ccd126de1e52076b470b117bff7e409
MD5 21e68e12d545d752c22d6c92ed9eecd0
BLAKE2b-256 a43f393f248c0309009b3d9312ef903b6c08b3854100bfb39df91768fa7198a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 450.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9c0a57390549affc2b5dda24a38de03a5c7cbc58750cd161ff5d106c3c6eec80
MD5 79a842d74bc5f3b9054b9038534dd12e
BLAKE2b-256 5b08c0e0f1dff3a996f5ef4ba0cedf5d4c900748bbe5f1a811e78880678046d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 439.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7abc3a6825a346fa4621a6f63e3b662bbb9e0f6ffc32d30a459d695f20fb1a8b
MD5 a2b48b1b0918cc05fe077b1cafcbddc2
BLAKE2b-256 e28dca47a982d8b6abaf904c41b17d5c3628d197a0ed1d535db1f0e79ac0e39a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 385.8 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 47a00b22c52ee59dffc2aad02d0bbfb20c26ec5b8de8900492bf13ad6901cf35
MD5 039c0d945ae79b63e83f2f5d27542828
BLAKE2b-256 d51f3f7dc57ff8e38d0b05ce931872eb55902a2e32eb8d37e6cf5a8d1d6de875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 7aef381bb9ae8a3821abd7f9d4d93978dbd99072b48522e181baeffcd95b56ae
MD5 8f5295d7f67b6800ae41799731e78b4e
BLAKE2b-256 d5d8d721027cc53b576be65a7edef31c469ac6a181f490be4319a4488f1a4207

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 348.0 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 2f07b27dbf303ea53f4147a7922ce91a26b34a0011131471d8aaf73151fdee9a
MD5 ef7c615ea6a412d7c0f999f31726ee51
BLAKE2b-256 5cbf94d206e2125c657474bd9a9d73596283df19d21c09200897e932d0ed6365

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 451.7 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0fc5aa1b1acf7f61af46fe0414e6a4d0c234b339db4c03a63da48599acf1cbfc
MD5 cfdb7f994527793b8c0113ac50959928
BLAKE2b-256 914887c781b3ed4670cbdf4652d3121f93c1411c214d9d9d2a76199cdf20460d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 445.0 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 da2c3220eb55c4239dd8b982e213da0b79023cac59fe54ca09365f2bc7e4ad32
MD5 ad81298b31d0d53a189a2034cef41bca
BLAKE2b-256 17391c7829c808de5dc4ebbbf34d6edd0fb92d6860f3233420d903479f1ceac1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 385.4 kB
  • Tags: CPython 3.4m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 56fa55032782b7f8e0bf6956420d11e2d4e9860598dfe9c504edec53af0fc372
MD5 4d40cdf88fd95147b76d7338903bfff6
BLAKE2b-256 09f13bad17c2a237f472de5317c1c37426c728cf7d870939652a314b166afbfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 445.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bbf47110765b2a999803a7de457567389253f8670f7daafb98e059c899ce9764
MD5 0e578f28e068fe9ff9d86064411181ff
BLAKE2b-256 589fc690c5223d8f7658852bf69cfefa308fa68a6353e11279aa199d6d28a3cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 437.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0794e987d55d2f719cc95fcf980fc62d12b80e287e6a761c4be14c60bd9fecc
MD5 298d3720b5e1cd27c8d7f56dc6f159c8
BLAKE2b-256 43b7e335b5fdedda04718236aaff16e42faed4ecca71aec5e453282b4d78c548

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 351.8 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e334c4f39a2863a239d38b5829e442a87f241a92da9941861ee6ec5d6380b7fe
MD5 50af215554ccb56b88602a9c1af403ae
BLAKE2b-256 291624a30ebbce95ed5678bd902f7aefdb05e6d9b9508fd9b0f7df09020e9abd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 347.8 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.10.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e5c54f04ca42bbb5153aec5d4f2e3d9f81e316945220ac318abd4083308143f5
MD5 24bf50da61c28dd7b290c80be4700b6e
BLAKE2b-256 053a9730123f08293d60c1f9565946d58ca49df5a6205910e6d4885aa8831c36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 445.0 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 334ef3ffd0df87ea83a0054454336159f8ad9c1b389e19c0032d9cb8410660e6
MD5 9080cabc0cf9dfdf8971c8d723267da9
BLAKE2b-256 59be5e6c607ac933b4a652ca001d937096621a86d2d0c27ed65b75f594b51a52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 437.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 358ba4693c01022d507b96a980ded855a32dbdccc3c9331d0667be5e967f30ed
MD5 629e57a47aedf9f07a47ef7953689193
BLAKE2b-256 fd7b6f2c098b39215b2b805ac6812f2b7536e926faf359c8c042801269ac6466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.1-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 347.0 kB
  • Tags: CPython 2.7m, macOS 10.14+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

File hashes

Hashes for pymongo-3.10.1-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 a732838c78554c1257ff2492f5c8c4c7312d0aecd7f732149e255f3749edd5ee
MD5 97d842a9bc0acf0b5aa08e828f81167f
BLAKE2b-256 48f750a2e546c57d59dbdfe7927c651dd2eb9242c34ffedc46bdc772b82f6753

See more details on using hashes here.

Supported by

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