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.4, 2.6, 3.0, 3.2, and 3.4

Support / Feedback

For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you’re more likely to get an answer on the mongodb-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. 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.6, 2.7, 3.3+, PyPy, and PyPy3.

Optional dependencies for GSSAPI and TLS:

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]

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]

You can install both dependencies automatically with the following command:

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

Other optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1, the default authentication mechanism for MongoDB 3.0+. It especially improves performance on Python older than 2.7.8, or on Python 3 before Python 3.4.

  • monotonic adds support for a monotonic clock, which improves reliability in environments where clock adjustments are frequent. Not needed in Python 3.3+.

Additional dependencies are:

  • (to generate documentation) sphinx

  • (to run the tests under Python 2.6) unittest2

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. Note that you will need unittest2 to run the tests under Python 2.6.

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.5.1.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymongo-3.5.1-py3.6-win-amd64.egg (551.8 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.6-win32.egg (546.3 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.6-macosx-10.6-intel.egg (577.4 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.5-win-amd64.egg (559.0 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.5-win32.egg (553.5 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.5-macosx-10.6-intel.egg (585.0 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.4-win-amd64.egg (557.8 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.4-win32.egg (554.4 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.4-macosx-10.6-intel.egg (586.0 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.3-win-amd64.egg (566.3 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.3-win32.egg (562.8 kB view details)

Uploaded Egg

pymongo-3.5.1-py3.3-macosx-10.6-x86_64.egg (594.7 kB view details)

Uploaded Egg

pymongo-3.5.1-py2.7-win-amd64.egg (547.1 kB view details)

Uploaded Egg

pymongo-3.5.1-py2.7-win32.egg (543.4 kB view details)

Uploaded Egg

pymongo-3.5.1-py2.7-macosx-10.12-x86_64.egg (546.0 kB view details)

Uploaded Egg

pymongo-3.5.1-py2.6-win-amd64.egg (549.8 kB view details)

Uploaded Egg

pymongo-3.5.1-py2.6-win32.egg (546.3 kB view details)

Uploaded Egg

pymongo-3.5.1-py2.6-macosx-10.12-intel.egg (572.5 kB view details)

Uploaded Egg

pymongo-3.5.1-cp36-cp36m-win_amd64.whl (276.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymongo-3.5.1-cp36-cp36m-win32.whl (270.9 kB view details)

Uploaded CPython 3.6mWindows x86

pymongo-3.5.1-cp36-cp36m-manylinux1_x86_64.whl (365.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.5.1-cp36-cp36m-manylinux1_i686.whl (359.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.5.1-cp36-cp36m-macosx_10_6_intel.whl (300.9 kB view details)

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

pymongo-3.5.1-cp35-cp35m-win_amd64.whl (276.1 kB view details)

Uploaded CPython 3.5mWindows x86-64

pymongo-3.5.1-cp35-cp35m-win32.whl (270.9 kB view details)

Uploaded CPython 3.5mWindows x86

pymongo-3.5.1-cp35-cp35m-manylinux1_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.5.1-cp35-cp35m-manylinux1_i686.whl (359.2 kB view details)

Uploaded CPython 3.5m

pymongo-3.5.1-cp35-cp35m-macosx_10_6_intel.whl (300.9 kB view details)

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

pymongo-3.5.1-cp34-cp34m-win_amd64.whl (273.4 kB view details)

Uploaded CPython 3.4mWindows x86-64

pymongo-3.5.1-cp34-cp34m-win32.whl (270.2 kB view details)

Uploaded CPython 3.4mWindows x86

pymongo-3.5.1-cp34-cp34m-manylinux1_x86_64.whl (366.3 kB view details)

Uploaded CPython 3.4m

pymongo-3.5.1-cp34-cp34m-manylinux1_i686.whl (359.4 kB view details)

Uploaded CPython 3.4m

pymongo-3.5.1-cp34-cp34m-macosx_10_6_intel.whl (300.7 kB view details)

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

pymongo-3.5.1-cp33-cp33m-win_amd64.whl (273.6 kB view details)

Uploaded CPython 3.3mWindows x86-64

pymongo-3.5.1-cp33-cp33m-win32.whl (270.3 kB view details)

Uploaded CPython 3.3mWindows x86

pymongo-3.5.1-cp33-cp33m-manylinux1_x86_64.whl (358.4 kB view details)

Uploaded CPython 3.3m

pymongo-3.5.1-cp33-cp33m-manylinux1_i686.whl (351.9 kB view details)

Uploaded CPython 3.3m

pymongo-3.5.1-cp33-cp33m-macosx_10_6_x86_64.whl (300.9 kB view details)

Uploaded CPython 3.3mmacOS 10.6+ x86-64

pymongo-3.5.1-cp27-none-macosx_10_12_x86_64.whl (270.5 kB view details)

Uploaded CPython 2.7macOS 10.12+ x86-64

pymongo-3.5.1-cp27-cp27mu-manylinux1_x86_64.whl (368.3 kB view details)

Uploaded CPython 2.7mu

pymongo-3.5.1-cp27-cp27mu-manylinux1_i686.whl (357.9 kB view details)

Uploaded CPython 2.7mu

pymongo-3.5.1-cp27-cp27m-win_amd64.whl (273.1 kB view details)

Uploaded CPython 2.7mWindows x86-64

pymongo-3.5.1-cp27-cp27m-win32.whl (269.8 kB view details)

Uploaded CPython 2.7mWindows x86

pymongo-3.5.1-cp27-cp27m-manylinux1_x86_64.whl (368.3 kB view details)

Uploaded CPython 2.7m

pymongo-3.5.1-cp27-cp27m-manylinux1_i686.whl (357.9 kB view details)

Uploaded CPython 2.7m

pymongo-3.5.1-cp26-cp26mu-manylinux1_x86_64.whl (368.2 kB view details)

Uploaded CPython 2.6mu

pymongo-3.5.1-cp26-cp26mu-manylinux1_i686.whl (357.8 kB view details)

Uploaded CPython 2.6mu

pymongo-3.5.1-cp26-cp26m-win_amd64.whl (273.6 kB view details)

Uploaded CPython 2.6mWindows x86-64

pymongo-3.5.1-cp26-cp26m-win32.whl (270.4 kB view details)

Uploaded CPython 2.6mWindows x86

pymongo-3.5.1-cp26-cp26m-manylinux1_x86_64.whl (368.2 kB view details)

Uploaded CPython 2.6m

pymongo-3.5.1-cp26-cp26m-manylinux1_i686.whl (357.8 kB view details)

Uploaded CPython 2.6m

pymongo-3.5.1-cp26-cp26m-macosx_10_12_intel.whl (295.0 kB view details)

Uploaded CPython 2.6mmacOS 10.12+ Intel (x86-64, i386)

File details

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

File metadata

  • Download URL: pymongo-3.5.1.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pymongo-3.5.1.tar.gz
Algorithm Hash digest
SHA256 e820d93414f3bec1fa456c84afbd4af1b43ff41366321619db74e6bc065d6924
MD5 35ae53073a25603591e085b18bc5a0ec
BLAKE2b-256 a8f6f324f5c669478644ac64594b9d746a34e185d9c34d3f05a4a6a6dab5467b

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.6-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.6-win-amd64.egg
Algorithm Hash digest
SHA256 a2db35462e056062f9906d36701e64c49c57007f438ba778cdeca68b08ca6937
MD5 f7a6d4c4fcc28c1e9fbebb68c1f5ebc6
BLAKE2b-256 d72b7838daac7e90b06c3dfd858136c2d5677e7680109a451071749919214596

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.6-win32.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.6-win32.egg
Algorithm Hash digest
SHA256 b5c733bacc61255484523c93e748527be9b92ea2714cd61e3aa84ad13f822154
MD5 33f4d9e672401fd1d357bea44ae12a28
BLAKE2b-256 ca17656867b2e7f784fe9f45c9ed288aa26c7860d1397963c8523e6668bc02c4

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.6-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.6-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 1f1da2f5235911666f51c889dcd73cc604981df79b1c189adeed5aa90bfb637f
MD5 cf383d5b74438b26fa022880349cec2c
BLAKE2b-256 65f958c33962229dda64597996a059884e6205f50229978435749199e21c481d

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.5-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 0da7d92b45ef757357cc53539ff7c99328b50abf6bc930e4ab19f8b2fe1418da
MD5 3035afb49383c9b049190a00ea90dcbe
BLAKE2b-256 d0e113d1af0a8d2162a7d97f15003f7821c793cbaf22c8f79d09cd2d49e3a697

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.5-win32.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.5-win32.egg
Algorithm Hash digest
SHA256 a792ad4448aa316d66f0dd47a736e18497e7d535aa33e57c6c38c1d518ff8f8d
MD5 714c2dd81a5a3bca37f41aeea605c2ca
BLAKE2b-256 95cc89936d5e808307920ccf38ae735470d58418e6c0e4782752aeff460846f0

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.5-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 190f7b10e51bb4302bc97ab9f032447016c173af181fc6019e39c1e5d965a3cf
MD5 28bdf56cd4c2029284fef93c6bda8403
BLAKE2b-256 8d0cab8c269fef68b3aa91fa9222ee5821f22a3e66428d55249b71b6b5dbe2be

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.4-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 b0810290e450d680fafe277adee94e7fc9d306df3b6cde7379482ff31e4ebcdf
MD5 22216ab07b6d295f248666110f6127ea
BLAKE2b-256 b3e5bd3b315a8da178ff419d620c2d91a174cccbbb9c21c4b18444f02992c9a1

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.4-win32.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 2402fd747dede03c0651a27c69b14cc1122afbe13ab4be96ddd77f617e8ae547
MD5 66b3b73055710784703fd8d60e2bfeda
BLAKE2b-256 79db43217bbadb91d9a369d8fb90bd8d53833fed6b5cbb011724425bc956fa52

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.4-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 fe84e35792193b8b7436cfeb0dc6df9bd77d1ce47321be8e40fb3e0277a5941a
MD5 f6ce51409d2be7074dd79b3d85ce0938
BLAKE2b-256 86c846c18b6c8d9485b5a9c6e70bb0492df22ab2d3f5f23a7ada89dd8379c597

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.3-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 336cfaff2b25210355864b547417c37aca2fd71450440a16156bfaadcbc0537b
MD5 a1b9fda371f80d5ef0e8e14c075ac85c
BLAKE2b-256 f9fc6f98fcde019bb48bd4a79f5808707f5421b1c9192007417ded853c9caa21

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.3-win32.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 0e8c06be657833c71113a9f9de014ea8507c942cfbfc035e0858e496e11d4521
MD5 3358304df4db9a90598ec92c2f38c87b
BLAKE2b-256 7f9c23420c6098b8093222887bab5c9168ef9a133bb6a5336056e93ffcd4b522

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py3.3-macosx-10.6-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 a5eb01a8cf44d15c92a58cdb06fa0137084d33279b1d0db8db8144a16b4efe64
MD5 a9b70b032bd144c2470138d3ecbbc105
BLAKE2b-256 c3b08b786edd5f7f8248997a6cc8bf5c9c6b69c7fd5e71ee62066b14737afab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 de34e59bd786bf54c0a1e6bcb383f42bd7c0fd516ffdd9bed8f00fbcdb4138c0
MD5 2e53c85b8bed47f139bd7b48b01cc603
BLAKE2b-256 6ae132466fef0c8c003e76a0b46f61c573682c10a07c8ab23950361f1c3a92f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 7c9bf2cb808e692ccc02f84069744496f65b656218fabdc289014900834bd906
MD5 3271ceb362488ecab9ac0c170f3470bb
BLAKE2b-256 1084ae60d21cfe3c3c1fe2a179363cac363b26983ad1f1fb6762b3724bdb37d1

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py2.7-macosx-10.12-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py2.7-macosx-10.12-x86_64.egg
Algorithm Hash digest
SHA256 0406a8b7b913849cce46a5627af4d799f2569692b848768243400984838e0ee4
MD5 d06aa6f34e754ff965883cad86df8825
BLAKE2b-256 1fcc0868d8d89eb3bcaf1f143557734590c2fcd98469a54e4bffbbe5c4a64284

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py2.6-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 7707ed70ea993dbde549979065afb5d5d00ba6c3cf7da20f17e8614b68ffe88a
MD5 ef1e44c9f5f6438fe9248970ab5121ed
BLAKE2b-256 ec64e4c08e8ed5c6852415f5ba8c003213bc4b2aab636e2b201d5ad0cb38a6eb

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py2.6-win32.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 f61846b324456c388b11b5b2231aa15f93b521a4661ff1bc74c351d6b1f92f1b
MD5 0c19bdb034f4039478f74f90027675e3
BLAKE2b-256 a96ccf76c4a4f07d22d6d1cfe02486e7d57941ed517c9fc71cf8d9e29e565539

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-py2.6-macosx-10.12-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.5.1-py2.6-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 187d3ad2377a14553e5a185e1ad6e97cc60f7b939b4bb027c815ec77c482077c
MD5 0f93d2ffc8ea44dcb2a0d55fdccdc912
BLAKE2b-256 1f3cb38e6007552831e09438c3d6e99b5d204d7467cb287ff205959d87af6516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cf8846fb59caffa587ba14da78f8fb23dba85017e009c1d752469b0005c444bf
MD5 af0b969d0db2b8e19a97f4b62a8a0f92
BLAKE2b-256 a2409c7340a74a2afd6321edb720ee93cef4204c022f8451bd3f1dcd2659065d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d2701658ea78ad484cd077fecb68de130de9a4ed784cc0a62d8d1d549d2b3fff
MD5 166f79d9516ad06cff5278c49129e734
BLAKE2b-256 18c5c02b050f7254f3f3140719d23f247a574c6b926210912ae3847a5a8160e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 38fddffcd47b51415eef97290643dda4e72c7bf32af798df128d9ad94196f029
MD5 acd6fe6d5813e8f4eb118711e23745e3
BLAKE2b-256 10b32a3dd782a8bc51d6a715ed1db8d1851271ab454a8da67c462f7ecab16356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c2b1b2ec87873c1d1e38b32378ad428409264d674cceaf1552d557d7f961e57
MD5 169284ebc414f646a37d1892cbe69edb
BLAKE2b-256 6dfd27e55ab2d2043435fbf0056c67855fbf2c8cacc91682aea7c6530fa4a687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 728a624a35383b147f2fca6051fb9604c7209ad0d9b65e35bf429e563d999e8a
MD5 5137803159ab4420e508b0623e13e9dd
BLAKE2b-256 aa4e8eeecbccb62543026fc93773b15849282d1345c0a128e1d621cddd9fe545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bc2e6b5bc53269cad1f06ac32a86777a3b8761459f155c6bb14b25844720c0b1
MD5 0e87f923678ad1e5fcc086bf9c339216
BLAKE2b-256 53c7f5d7e46eceef3f37c358922822bbc0acc095ed096290380cf9eaf6d7c49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4b68b6defa12b96e1087871e677ee8b9d67bbf57b1b70ee54ed19d2ee9dca538
MD5 9fac56b46495b1c4693e10471c535370
BLAKE2b-256 61651a8a897287608b2fd9d321c627bc418b55e766e1e1e00e974e0476169f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a7c3a6f32eb910fbdc0dde9aca9fb5407726cd21504d0a67334109f6aaade94e
MD5 da6fc4db47f075e9001ac582f6a67d1b
BLAKE2b-256 c427604db138d80a0d24f8bd8dcfde88b46e121f1fa5e85b14783375306b866f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 906a13ad6081c5cb5c6862879bc22aa738a4ae12561c6b4ae64d2ff1b4fc47f5
MD5 d84720cc4ff8723d4cc9bb21635929fd
BLAKE2b-256 310a4bcdea8358dbdf74382b38a8141b9450e05863d84efd34103426121a245d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1863a7ee4080388a7e247c7f8040c2a1e1288cecc3792cdcbe25a4b55a3f4a75
MD5 e46755380aad686b55eaf7b64e5782ef
BLAKE2b-256 6e9cc4c4088b90e36190ccb7edb5245772a962809c051c48bd593ee8f7bd38d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 abbcbdabe9fd64b107f3aef5c68a20f22906c5f941e75b8414a026e8860af489
MD5 c584f8985daa06ccc17fc8327368580c
BLAKE2b-256 4d8805b89f3105f0a013e93b187705920730f7e6429edddfd61a93591071bd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 166746d50df39c3d293ff26f18c64d728b4ac59b3d1940fb6475ad22820ba439
MD5 1622da5399cb6a0336d15607d0b7a207
BLAKE2b-256 32c5cf4ac5732bd85fcba8a6adcc72cada9461c2f97670f6fba6ba888e6187b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57197ac3f47eeef633eec0ea46ddc3895904d0daf2bd271d85a5d691de539171
MD5 c7986337e5b16a478358bc0bf5b5ebd5
BLAKE2b-256 5f4c8564c89d1c609dcc2762ced4e6df48ab8e2ed34c06724bb1528a0b8807e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3aabb3dfc564d4b797c3805f3f3b4ce24de6c7150041f9caad536f4c672110b
MD5 40131fe0935ceb8e02ec5f100618ebd6
BLAKE2b-256 3fac7b8673d4cbafc335e114660a9aee32a132c8e84f6c0828b28eee55073028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 0ce91b475d50b70388f512a2780bf91b0de643175d3f60bae3786ee4f133e751
MD5 625ce687d3ad822449b939c4b9abef16
BLAKE2b-256 93acba9de0eeffc2b3a0263e85e428984ed116242e4bd142abf6b53fb718535a

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp33-cp33m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp33-cp33m-win_amd64.whl
Algorithm Hash digest
SHA256 2652d255b3a0b16a49c743879e882d6c3de40166282fa791075ad5db0285cbb4
MD5 92fd489b7f086cace039651423ec286b
BLAKE2b-256 2cc228a5df7746e91b7d4795378a5ea82ce858e63bf02d51582f6ac0e8e4ce02

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp33-cp33m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 8077f89268d702dfae5a633a389f7775122e4146e05e9d6c8b0ee12c91e4d84c
MD5 fae88851bf1939eba182766d842de2d1
BLAKE2b-256 8702840687d43035bf48d7342c13e401dfc5d7c04c204cd605c20318bbdae1f7

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp33-cp33m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp33-cp33m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c612ed53c88071da75a4998add30971d9e90e80c83339c86e3be5ebd6913e32b
MD5 2909867e87289339c1f4cb7a4f040fc0
BLAKE2b-256 70cdd7d4ed3634b19551b336894a044352c9d13929c816ca28ff2a5c0484e4fe

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp33-cp33m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp33-cp33m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd22e54beb634e3568638862f305ccd3a78a89fa14a2b62397255b3510eb6bca
MD5 f8796e702eb34a64580e8a80cc24fbaf
BLAKE2b-256 cdef532618463c95d07c1a1c478f6c5e5bc2bcbed59bbac7045c6894543b9117

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp33-cp33m-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 ef5dc292d27cb65a04776eaf0c9b5e6a87d6fd03f272a7043816fb8b946f4d8d
MD5 f6b237d7ec437d10e513dc7b0922d712
BLAKE2b-256 66a5bd3d935ceeff4e313f41b0ac3cb17726b390b21127a8930f4f9c388d9f2c

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp27-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp27-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f0e2cd634a5f97fe84b8a860c52e86cee488764031505cdc7c855f01fed7bd4
MD5 8a64305721e7a1baab395bd4fab523c1
BLAKE2b-256 c16bc5ce64ab47201bf24a8fb8beaf5c99c717162e0876f92a5864deb68357e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dd647f898031efefc093c14960b531ce13c10cd704dc0b43604cb93b168719e5
MD5 5d5daaaca8338af55d432f0511da5349
BLAKE2b-256 09c8dcbf7325a2a008864d6ccffb4d3d595eaf5c698cbe0c128a07b8df4e7a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 39961f650fca9b3c6a8294a47707c328283d42e298712030b1992083900f00c3
MD5 c40ac402a668dff35cdc6ab8cc776b91
BLAKE2b-256 29112d100dd76563724e26494908927a1137b9622e0c489d5951daabfcabbac6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a516bddf391ccded8a9fe75672200bfedb20449e09661f3f785e8e695a6b15e4
MD5 7c0448310717033e8e354ccaf7520dbf
BLAKE2b-256 2360c65cc7f60632256129c49a179fad6dc7c90834ed290a9445adf594f0a014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 41c892df7f67ec9aa76f4e1b4e093ac18d9a9ebafa6c60fc4e57db68eadb0d87
MD5 ad3d4eb2ee123128426e5c7f59d0c3f7
BLAKE2b-256 da89d0ac7be097b65423eb085092cba7e8bba2b258089bf1b896835054d47f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a11b456b549583d76a1ccca20a4a0ee710489e67753b3f3082cd929556693f31
MD5 c71ac62338813b98b972b3deb2d65336
BLAKE2b-256 705a159c141663a456ab45b40edfd9642789216013bff2db99464e2c10094d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffaf9e135f9321423ac50035c4e3854b4f668e5a46c81d2e3341ae0504279ba3
MD5 d70d47fc21bb0d294733c91f2a7b06a2
BLAKE2b-256 ce0113c3e5a28655d7b0eddf4340f09325fc18ee27d29854254c0a6d6fd04ae3

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp26-cp26mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d0e516d07979c43a65927cd98c8bda84c7620f09658e9f424ebfff8f28994f77
MD5 bddeccfd6899735b57d0f02f64e32c33
BLAKE2b-256 b8e63f85b87823436975195ea3ef56853c94a165de5fb94cd2039c894c7fc4c9

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp26-cp26mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8de6afe3aa34be4800a0bc49ce8f0d05c5e936b4ec297322e64bb6db8e5fd754
MD5 b8ab820f826e2c013ecaad95aac91af9
BLAKE2b-256 481c1a493da28f1826ef3ed0a9e9e40dd0cfb62e11570b53c8605c24178dc7f6

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp26-cp26m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp26-cp26m-win_amd64.whl
Algorithm Hash digest
SHA256 28be0827bd176c844fc0c06d99dae95bf0f720b6ff3616099f3ab6d0e1742602
MD5 3485ef9fc3d81bc1c65fb82540e398b4
BLAKE2b-256 8981ecd902a9318ef115abc9838779b7904b1ac38626a5504898c0949c6860f5

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp26-cp26m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp26-cp26m-win32.whl
Algorithm Hash digest
SHA256 521676f3f2739a6b92d8d7bd7141653594e609b5827a382b0b9d76da69eefb2e
MD5 70af620aafc1726d1cfa3d22c38c91c0
BLAKE2b-256 72a3cc6e41efa127217b710d18c91cde9dbe398ae6db5afead7d7f140b29e70e

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp26-cp26m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a02035ab7ebef71f7fc4aaa0c2344bcc7d74c6de64a000464184f8cb9496966f
MD5 abe599b13cf64cc58f65c140cef92d29
BLAKE2b-256 6e536e7d840a58da1c665ac60825efac84c57ba650f741d1a09275f655dbf70d

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp26-cp26m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8946a46e3b9c4a7f0feb6909093594ab10771bda0fc4601901666b27043fc100
MD5 6fb0dbe898c02a30ad613c8ddf17944c
BLAKE2b-256 e383a9f4ebec986a5bf99762b8484818a7e5e56fc7f4970d47e58033f5891044

See more details on using hashes here.

File details

Details for the file pymongo-3.5.1-cp26-cp26m-macosx_10_12_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.5.1-cp26-cp26m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 3eda499d1a6e584c448b8abb66c4cb7af02ba50f70a99a3063c4d9c460130e38
MD5 9110a82dfe6aa2f4da7fe3cd22e47875
BLAKE2b-256 f5a5f1cd3a7e9fda2c4c84e56300f5e9825858945eeb436f357f79d46fd0d71e

See more details on using hashes here.

Supported by

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