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

Uploaded Source

Built Distributions

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

Uploaded Source

pymongo-3.10.0-py2.7-win32.egg (712.3 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

pymongo-3.10.0-cp38-cp38-manylinux2014_s390x.whl (482.3 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pymongo-3.10.0-cp38-cp38-manylinux1_i686.whl (457.2 kB view details)

Uploaded CPython 3.8

pymongo-3.10.0-cp38-cp38-macosx_10_9_x86_64.whl (351.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-3.10.0-cp37-cp37m-manylinux2014_i686.whl (440.9 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-3.10.0-cp37-cp37m-manylinux1_i686.whl (446.2 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pymongo-3.10.0-cp36-cp36m-manylinux2014_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pymongo-3.10.0-cp36-cp36m-manylinux1_i686.whl (445.2 kB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

pymongo-3.10.0-cp35-cp35m-manylinux1_i686.whl (444.9 kB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.6+ intel

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

pymongo-3.10.0-cp34-cp34m-macosx_10_6_intel.whl (385.5 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

  • Download URL: pymongo-3.10.0.tar.gz
  • Upload date:
  • Size: 715.0 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.0.tar.gz
Algorithm Hash digest
SHA256 c43879fe427ea6aa6e84dae9fbdc5aa14428a4cfe613fe0fee2cc004bf3f307c
MD5 fb98d896f0eb14d9b4fe9baac24d772a
BLAKE2b-256 5d86bfcec2a1c99e52344530e581a89871738bdcbf2c8f2ba681ad891e0980f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-py2.7-win-amd64.egg
  • Upload date:
  • Size: 716.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 d12d86e771fc3072a0e6bdbf4e417c63fec85ee47cb052ba7ad239403bf5e154
MD5 3c1b1d9e01060ab7bf2ead3b472c54d5
BLAKE2b-256 067fab5a66816f5b5705d60a55e28f08e4d314db69ed0c6e7b557404bdf30182

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-py2.7-win32.egg
  • Upload date:
  • Size: 712.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 15bbd2b5397f7d22498e2f2769fd698a8a247b9cc1a630ee8dabf647fb333480
MD5 0bef13253c45e25d849be8e5b56b6609
BLAKE2b-256 47c255332e6ffc050406307fc692e95d0adc29a781231bdb0fac459945c6414e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 712.5 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.0-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 faf83d20c041637cb277e5fdb59abc217c40ab3202dd87cc95d6fbd9ce5ffd9b
MD5 e12cb9837f11cd15e063a8f86e12fc8d
BLAKE2b-256 61bc6e7ad7f3f68cb54bbf6db6b08f6cce0dc976a24d4386c755936f581be164

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88efe627b628f36ef53f09abb218d4630f83d8ebde7028689439559475c43dae
MD5 e003a4fed5517c70a2b28425eb99e210
BLAKE2b-256 6273004c7385db1571c9d3ea398a1a0716991a0faf2e954370ddb99f1933a3be

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d0260ba68f9bafd8775b2988b5aeace6e69a37593ec256e23e150c808160c05c
MD5 b45c5c1bcc74c0be7722f178b67692f0
BLAKE2b-256 1bc8c9e80f94d8586f9239f2aa967d922fe8e4376a16cd77a6e4de30e4af4386

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9128e7bea85f3a3041306fa14a7aa82a24b47881918500e1b8396dd1c933b5a6
MD5 0d2060eea437d0fe5edb2669f2467dce
BLAKE2b-256 0887201a62dc493756765dc9d86131540c0e4444f8d2ef7dae84f665f51346d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 482.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.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87c28b7b37617c5a01eb396487f7d3b61a453e1fa0475a175ab87712d6f5d52f
MD5 8f4d418030b5d7bb749556b3d747da3a
BLAKE2b-256 496ac9e6ee7479354e693ed823c32028590af9db7be0ebcf3563805756c58225

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa19aef44d5ed8f798a8136ff981aedfa508edac3b1bed481eca5dde5f14fd3d
MD5 1b72d34a03e38c4a67cb62a13d105ee3
BLAKE2b-256 9c91ea3ecb16c491a6f2fd55f8841d4d3df2afe73add9504e406168464e91085

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87b3aaf12ad6a9b5570b12d2a4b8802757cb3588a903aafd3c25f07f9caf07e3
MD5 f5d61c8bd307e530ab0e963ba92188b9
BLAKE2b-256 7d8492e5ff8c64f327ebcfc8be5a0f2d780e1c977e19fc574d76fdda42a9ef8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22fbdb908257f9aaaa372a7684f3e094a05ca52eb84f8f381c8b1827c49556fd
MD5 ba66ea8cfd738f182d8e7a4df3d4057a
BLAKE2b-256 c0dbfff225952dcdd9dc692343c6f4815eef4f0974f1c8ef618ad2af2f80e298

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b82628eaf0a16c1f50e1c205fd1dd406d7874037dd84643da89e91b5043b5e82
MD5 0b6cf36e4ce64a820f3e6b5a8751bcb5
BLAKE2b-256 706da8da5563d9ca8cfe4786ce3aa6a74d6ab6acd2e489a842e67f070db043d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 457.2 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.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b4a13dff15641e58620524db15d7a323d60572b2b187261c5cb58c36d74778d
MD5 20e83f68afd58c1466df74f079ea5015
BLAKE2b-256 2e074758cdf20896d38e241a77ad0faf6e6fc8854d3fdc52bff96a497d77973a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 351.6 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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08364e1bea1507c516b18b826ec790cb90433aec2f235033ec5eecfd1011633b
MD5 322084d1ef8686d64e2bea473a78bf23
BLAKE2b-256 fa8e991a4b1243dd20a37474ed0dda171bbd4deba5d6ce34e226f327a7553f82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c566cbdd1863ba3ccf838656a1403c3c81fdb57cbe3fdd3515be7c9616763d33
MD5 193f6b89fdf4358f9e2d5dfa43b7c885
BLAKE2b-256 f8dd922ba69a1bafe2e2cfa46c06483cedab01ea7b76c7c3109ba62f430b0dcc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.10.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ea1171470b52487152ed8bf27713cc2480dc8b0cd58e282a1bff742541efbfb8
MD5 1352927e3542deeb67a029a4b96f7b7e
BLAKE2b-256 1353fa3b5fb6df1c6cbebb892aa3f61b258f866385647b71d43eb250b05d0286

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0369136c6e79c5edc16aa5de2b48a1b1c1fe5e6f7fc5915a2deaa98bd6e9dad5
MD5 66bcae7ca11a7c2a532a251577bfe5bf
BLAKE2b-256 ce164f652af25f6489b5f1ee177972b8a3ffdf6243a818a04132e185ff682986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a006162035032021dfd00a879643dc06863dac275f9210d843278566c719eebc
MD5 5c0ec531797c2a601dd2672f229fc39d
BLAKE2b-256 58b84ad8b5c2721a5fc018cb09ef7535754cb318a8e018cbf9e12ff758194af6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89bfbca22266f12df7fb80092b7c876734751d02b93789580b68957ad4a8bf56
MD5 00802dae6c533fe0afe7bcdef58cb6e7
BLAKE2b-256 18b494f31461f287df02af5b1ba9e4990e753baa2e05bc7050a7837d8145f1d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 440.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.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 339d24ecdc42745d2dc09b26fda8151988e806ca81134a7bd10513c4031d91e1
MD5 2ee13fddeb0275d2f841ae3df766e17c
BLAKE2b-256 c9373af261a7b0e9ae8ed82aff561979c5a9d57309134a9c4ee0adf674b578e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4acdd2e16392472bfd49ca49038845c95e5254b5af862b55f7f2cc79aa258886
MD5 90e9f7e3636508d5c55ded6e9ce1e301
BLAKE2b-256 86e50c474628b77db9864d5f758a8525abd44d80b20aa67cf101157f7f29eae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3372e98eebbfd05ebf020388003f8a4438bed41e0fef1ef696d2c13633c416c8
MD5 64167e8a14d1cd4c95fe333dda27450f
BLAKE2b-256 29c344ae03a39cc74ae62a77c07b3fb0a5d843bb1ca285867824f5642ad401da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 446.2 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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca109fe9f74da4930590bb589eb8fdf80e5d19f5cd9f337815cac9309bbd0a76
MD5 7c42e55505d6e6a5ec6d962df6958379
BLAKE2b-256 9183babf9ef45da1d796dea58b4537fe919258406eb8fafe6f9bd7e5acfcc94c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0f5798f3ad60695465a093e3d002f609c41fef3dcb97fcefae355d24d3274cf
MD5 43f70199baa4f18537eda5cba9522f99
BLAKE2b-256 67031c09350e8f5763be113b2274bc80f9d5e1a5d2a3184e6c26de4c4082d9cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9ed568f8026ffeb00ce31e5351e0d09d704cc19a29549ba4da0ac145d2a26fdf
MD5 d192371b7a141d32359140e3540567a0
BLAKE2b-256 ed26d6d65fe6a3cdfd7b4a4793f4a6f5bcbbaccff40da2c4b487f69373c6538f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.10.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4e4284bcbe4b7be1b37f9641509085b715c478e7fbf8f820358362b5dd359379
MD5 e51e64dbb92d596819fb1bb747bbef3d
BLAKE2b-256 8f0119d40d244824003522b83b4673ada8aca1bc3a64f8df7d1aeb36b58cf22a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc6446a41fb7eeaf2c808bab961b9bac81db0f5de69eab74eebe1b8b072399f7
MD5 961f62c46755dfa3c9188accfb838c5a
BLAKE2b-256 f07aefd6c3066c05e77b76ed224158fde5b7c00285cd934de96729d8bb68fab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e0c006bc6e98e861b678432e05bf64ba3eb889b6ab7e7bf1ebaecf9f1ba0e58
MD5 f3696c53f975e2eb8d69e2ddc7cfeb99
BLAKE2b-256 6db4cd753ed4457726755413585a4d80ed4b527d47ce30a1b73cddf08069068a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38281855fc3961ba5510fbb503b8d16cc1fcb326e9f7ba0dd096ed4eb72a7084
MD5 582b7621effdfd508d8d0c5500406a46
BLAKE2b-256 14c33ad447d320cddb57afd06978512fefbe8367c68119d2aaac655335410f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e5e94a5f9823f0bd0c56012a57650bc6772636c29d83d253260c26b908fcfd9
MD5 729272a91a25c38d326c419069b79c2d
BLAKE2b-256 06835338022cc1924301e145d8a6018c62d8855e6a288d16a1fd445934d91614

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 459.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.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a03cb336bc8d25a11ff33b94967478a9775b0d2b23b39e952d9cc6cb93b75d69
MD5 3d7df63f7f8775b5e66e36fa1ba8c00c
BLAKE2b-256 95096fc5e4273320b4da30b5291b74f11a9fafb1841c41e3d05a05d9e3990211

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 264272fd1c95fc48002ad85d5e41270831777b4180f2500943e45e12b2a3ab43
MD5 7198f7df8334ef42824acd82eb32f06f
BLAKE2b-256 6b705266f59767c97414ea4bdac10b276826d3f8f7b8f229846310456be9a6f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 445.2 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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 908a3caf348a672b28b8a06fe7b4a27c2fdcf7f873df671e4027d48bcd7f971f
MD5 f075e020ae348edaf2a0265cfbf53014
BLAKE2b-256 4c8a7b053743d5549df9e41407d53d524f959e782ffebce6b17a52d69c391619

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7247fbcdbf7ab574eb70743461b3cfc14d9cfae3f27a9afb6ce14d87f67dd0b5
MD5 0a0f05d786414cadd807627088359ae4
BLAKE2b-256 f849ea98bd8337c024cd7c18340768ef2501ce30662393b5a4ebb8085286dacb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d582ea8496e2a0e124e927a67dca55c8833f0dbfbc2c84aaf0e5949a2dd30c51
MD5 012a2c987e72056cfbcee7b9d7979b48
BLAKE2b-256 074d4ec488f10f58e83a33254ccf1969398e63a546c68259bd2c2fe7ffdbd21b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.10.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 98a8305da158f46e99e7e51db49a2f8b5fcdd7683ea7083988ccb9c4450507a6
MD5 1e51ee5a3ef4cdd233faab6e06ff28ba
BLAKE2b-256 eae8f9ca1b024dce11846db9f44b23d7499cb04b7a275acb3e1657108641260d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fceb6ae5a149a42766efb8344b0df6cfb21b55c55f360170abaddb11d43af0f1
MD5 602ffc4aec6b67b70a92edc801408c09
BLAKE2b-256 ba9b0b6989718669209b2e3451860ac098471891626f48636f8cca6a449e09ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5b7a0d7e6ca986de32b269b6dbbd5162c1a776ece72936f55decb4d1b197ee9
MD5 25ffd4cbd9d12ef295c4b616ddea1370
BLAKE2b-256 0db659200769fa69c9c6969c963d790e2ae47fb812b8b82162f0d3dbd10d3075

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99285cd44c756f0900cbdb5fe75f567c0a76a273b7e0467f23cb76f47e60aac0
MD5 918302aafaf60f11f2e8c7ef62037828
BLAKE2b-256 ebcaf2c37659b4ed5eea72cdecffb4ce3799533dc919bf95207b08f30a6e371a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e756355704a2cf91a7f4a649aa0bbf3bbd263018b9ed08f60198c262f4ee24b6
MD5 00d30115ecbd3871673e52a003af7d15
BLAKE2b-256 88d137be19802656951e3df3e57152d5bbc2721d481c4019bd21cfeaf5991730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c42d290ed54096355838421cf9d2a56e150cb533304d2439ef1adf612a986eaf
MD5 a5474eb9ff7ff06f1588bfa67648b3bc
BLAKE2b-256 8c1d9de2742487c3dad1d4a04b1c3e693a31905cf42392c52faf1eb673e61bd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0cfd1aeeb8c0a634646ab3ebeb4ce6828b94b2e33553a69ff7e6c07c250bf201
MD5 2a22d012ae29135670fb3a0e24697599
BLAKE2b-256 5c4e1d1484df5db07554f1cb3a87ec33f4aca97121356935ea73628ad6cdfbd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 444.9 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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6dfc2710f43dd1d66991a0f160d196356732ccc8aa9dbc6875aeba78388fa142
MD5 8e60eac5c3994aea2d1122eeea2354bc
BLAKE2b-256 061ca92ca84fff24f0350e238dda1132fdc93bd8e3e8f68751fa4d4358abf7a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 385.8 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • 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.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 9737d6d688a15b8d5c0bfa909638b79261e195be817b9f1be79c722bbb23cd76
MD5 1713229e849983d9be6d2716acc779a9
BLAKE2b-256 979b69b0172f51fa4bdc8a0782fc54b45010c552d718aebfccdb3415db2c2ef4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 72651f4b4adf50201891580506c8cca465d94d38f26ed92abfc56440662c723c
MD5 d02213445599bb60fc26cd32963ee510
BLAKE2b-256 edf55f839dc726aee366e14bdad6a19c4940d6d5550d7ed535e90a0eda867bde

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.10.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 0af1d2bc8cc9503bf92ec3669a77ec3a6d7938193b583fb867b7e9696eed52e8
MD5 d0c57e054120f4ff6aad71a62e269cd4
BLAKE2b-256 c623ef59afd4772f8693cd8ab4bea63f19fffb9f4611105c36f7d0e049627e58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d2ce33501149b373118fcfec88a292a87ef0b333fb30c7c6aac72fe64700bdf6
MD5 e10b8c68e23d73be0f8305e3cf7615f8
BLAKE2b-256 740df799db557482457d9b88faacf23fe7ab3b6af9dfd27541ea27a0198fa70f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d68b9ab0a900582a345fb279675b0ad4fac07d6a8c2678f12910d55083b7240d
MD5 477ceea6628d68c34a0006b73fc7d05a
BLAKE2b-256 5f45904adb0b8a3a24af5406958e85fb006a944d004091396746c8b5771ac5d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 385.5 kB
  • Tags: CPython 3.4m, macOS 10.6+ intel
  • 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.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a863ceb67be163060d1099b7e89b6dd83d6dd50077c7ceae31ac844c4c2baff9
MD5 df7e3a400ffa21d0fdcff2cda2e866ca
BLAKE2b-256 e6a01d5c6002e5a923b6d4d18adb9bea8ab9423ab8843c5deed9c76432cfc8bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dbf1fa571db6006907aeaf6473580aaa76041f4f3cd1ff8a0039fd0f40b83f6d
MD5 b7dc7b2fb489932ea128fe54d32c052d
BLAKE2b-256 02c54dce8a3f3f08428093d79313d7fbe10a1a925252f0affe6a0369f08c1dec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e032437a7d2b89dab880c79379d88059cee8019da0ff475d924c4ccab52db88f
MD5 484ea5d081fc2492538ffbeaf39cb5d6
BLAKE2b-256 ae583bfe208971b7c2b1b89cedbe1197380e449d5bdb6d1f59dc776f5cf19531

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pymongo-3.10.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 72218201b13d8169be5736417987e9a0a3b10d4349e40e4db7a6a5ac670c7ef2
MD5 10c7709e1190945b06827760dac1d03f
BLAKE2b-256 806f42e19fd5d9fa4d2c18307ade3cb7fc548c70e8567b0d30267ecc0f0ffc49

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.10.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e824b4b87bd88cbeb25c8babeadbbaaaf06f02bbb95a93462b7c6193a064974e
MD5 0d3689bbe34b2d8ddf3c4ab030829a91
BLAKE2b-256 f56681f043aab0750567d2cbbbb218922623d3eccc8ea113cae24340cc9dc429

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4e61f30800a40f1770b2ec56bbf5dc0f0e3f7e9250eb05fa4feb9ccb7bbe39ca
MD5 d91abdbdf9bf59a3d22e50e5776bace0
BLAKE2b-256 877990236099888fbe87b6ed421aceddd2d7d1a7faa4b6849560fe19d7a1a32f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-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.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 681cb31e8631882804a6cc3c8cc8f54a74ff3a82261a78e50f20c5eec05ac855
MD5 6fc257102c71f2e0a4afdc3c6dea25a0
BLAKE2b-256 6c49b4ed170b9fde5bb355864918fa7b9cef67b025056f2c08afe49921a2234b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.10.0-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 347.0 kB
  • Tags: CPython 2.7m, macOS 10.14+ intel
  • 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.0-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 53577cf57ba9d93b58ab41d45250277828ff83c5286dde14f855e4b17ec19976
MD5 93eb1e4df623aca2b769f78ccd176af4
BLAKE2b-256 bd4fc9babeed25a6803d2b66042f067e9b34cce541ab9f3c208a4f888974e3c4

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