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, and 3.6.

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.4+, PyPy, and PyPy3.

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]

You can install all dependencies automatically with the following command:

$ python -m pip install pymongo[gssapi,srv,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

This version

3.6.0

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

Uploaded Source

Built Distributions

pymongo-3.6.0-py3.6-win-amd64.egg (585.8 kB view details)

Uploaded Source

pymongo-3.6.0-py3.6-win32.egg (580.4 kB view details)

Uploaded Source

pymongo-3.6.0-py3.6-macosx-10.6-intel.egg (610.9 kB view details)

Uploaded Source

pymongo-3.6.0-py3.5-win-amd64.egg (593.8 kB view details)

Uploaded Source

pymongo-3.6.0-py3.5-win32.egg (588.4 kB view details)

Uploaded Source

pymongo-3.6.0-py3.5-macosx-10.6-intel.egg (618.8 kB view details)

Uploaded Source

pymongo-3.6.0-py3.4-win-amd64.egg (592.0 kB view details)

Uploaded Source

pymongo-3.6.0-py3.4-win32.egg (588.9 kB view details)

Uploaded Source

pymongo-3.6.0-py3.4-macosx-10.6-intel.egg (620.0 kB view details)

Uploaded Source

pymongo-3.6.0-py2.7-win-amd64.egg (581.4 kB view details)

Uploaded Source

pymongo-3.6.0-py2.7-win32.egg (578.0 kB view details)

Uploaded Source

pymongo-3.6.0-py2.7-macosx-10.12-x86_64.egg (579.7 kB view details)

Uploaded Source

pymongo-3.6.0-py2.6-win-amd64.egg (583.9 kB view details)

Uploaded Source

pymongo-3.6.0-py2.6-win32.egg (580.6 kB view details)

Uploaded Source

pymongo-3.6.0-py2.6-macosx-10.12-intel.egg (605.8 kB view details)

Uploaded Source

pymongo-3.6.0-cp36-cp36m-win_amd64.whl (291.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.6.0-cp36-cp36m-win32.whl (285.8 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.6.0-cp36-cp36m-manylinux1_x86_64.whl (378.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.6.0-cp36-cp36m-manylinux1_i686.whl (373.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.6.0-cp36-cp36m-macosx_10_6_intel.whl (315.7 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.6.0-cp35-cp35m-win_amd64.whl (291.0 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.6.0-cp35-cp35m-win32.whl (285.8 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.6.0-cp35-cp35m-manylinux1_x86_64.whl (378.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.6.0-cp35-cp35m-manylinux1_i686.whl (372.9 kB view details)

Uploaded CPython 3.5m

pymongo-3.6.0-cp35-cp35m-macosx_10_6_intel.whl (315.7 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.6.0-cp34-cp34m-win_amd64.whl (287.9 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.6.0-cp34-cp34m-win32.whl (285.1 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.6.0-cp34-cp34m-manylinux1_x86_64.whl (379.3 kB view details)

Uploaded CPython 3.4m

pymongo-3.6.0-cp34-cp34m-manylinux1_i686.whl (373.1 kB view details)

Uploaded CPython 3.4m

pymongo-3.6.0-cp34-cp34m-macosx_10_6_intel.whl (315.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.6.0-cp27-none-macosx_10_12_x86_64.whl (285.5 kB view details)

Uploaded CPython 2.7 macOS 10.12+ x86-64

pymongo-3.6.0-cp27-cp27mu-manylinux1_x86_64.whl (381.3 kB view details)

Uploaded CPython 2.7mu

pymongo-3.6.0-cp27-cp27mu-manylinux1_i686.whl (371.6 kB view details)

Uploaded CPython 2.7mu

pymongo-3.6.0-cp27-cp27m-win_amd64.whl (287.8 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.6.0-cp27-cp27m-win32.whl (284.8 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.6.0-cp27-cp27m-manylinux1_x86_64.whl (381.3 kB view details)

Uploaded CPython 2.7m

pymongo-3.6.0-cp27-cp27m-manylinux1_i686.whl (371.6 kB view details)

Uploaded CPython 2.7m

pymongo-3.6.0-cp27-cp27m-macosx_10_13_intel.whl (309.7 kB view details)

Uploaded CPython 2.7m macOS 10.13+ intel

pymongo-3.6.0-cp26-cp26mu-manylinux1_x86_64.whl (381.2 kB view details)

Uploaded CPython 2.6mu

pymongo-3.6.0-cp26-cp26mu-manylinux1_i686.whl (371.5 kB view details)

Uploaded CPython 2.6mu

pymongo-3.6.0-cp26-cp26m-win_amd64.whl (288.4 kB view details)

Uploaded CPython 2.6m Windows x86-64

pymongo-3.6.0-cp26-cp26m-win32.whl (285.4 kB view details)

Uploaded CPython 2.6m Windows x86

pymongo-3.6.0-cp26-cp26m-manylinux1_x86_64.whl (381.2 kB view details)

Uploaded CPython 2.6m

pymongo-3.6.0-cp26-cp26m-manylinux1_i686.whl (371.5 kB view details)

Uploaded CPython 2.6m

pymongo-3.6.0-cp26-cp26m-macosx_10_12_intel.whl (309.6 kB view details)

Uploaded CPython 2.6m macOS 10.12+ intel

File details

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

File metadata

  • Download URL: pymongo-3.6.0.tar.gz
  • Upload date:
  • Size: 581.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pymongo-3.6.0.tar.gz
Algorithm Hash digest
SHA256 c6de26d1e171cdc449745b82f1addbc873d105b8e7335097da991c0fc664a4a8
MD5 2f64fa7691c77535b72050704cc12afb
BLAKE2b-256 698a2384c55f4bd494eeb6104a9b35c36714ba1178dcd08ee5a73b92eed3d8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.6-win-amd64.egg
Algorithm Hash digest
SHA256 eeaf83db38425913283cf2db6caeb4c85911d3923615ea7d5b752e5ad49914ec
MD5 0a3ecfe0283a0cc313241fa00497dccc
BLAKE2b-256 d5bdb49f1382f4949d2b42dfd24b22d97077a8e45014918bab804e85ae1f19e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.6-win32.egg
Algorithm Hash digest
SHA256 ff14210232acff8a236244551834e643484ff621638c74590aa0583d3c36cc31
MD5 c2fe8865146203ebf7c2ff4fe9f41b22
BLAKE2b-256 732e4ae421044914108d29e9534b540baa18a40737ee6f1a0c881aef4f0cd92a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.6-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 02180988dc858739a856e9f77276298c6015e6fa9e87a6ad6362f679b2e5c2bb
MD5 53ad70b53055809d50899fc25fb88b54
BLAKE2b-256 cdd03d0336511f7f1f603c6a48b832a6da2680bb5b054748ef3de1186b383d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 a1b2926be8aff7e641ab622991f77bb9c546268d416277b1fb5efd6305206e46
MD5 775c887a4155e696a45541128e43843e
BLAKE2b-256 ccb7efd1f6aa8d3c875410ded5ac974addb66f426699c6cdb1080818cdbeef77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.5-win32.egg
Algorithm Hash digest
SHA256 99416866f7a8f6eb7bfb696eedb1153ef204a67a8ce18d8cddf0c93e16010d43
MD5 df15452d9839b12701d755a5185cc1c3
BLAKE2b-256 48c415b969fc54c675dc495f28af7ea620858ff384e7ab4c7c3a93061604d6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 6e53318801aed1abf4a41d94c4cea2b89749b706ed9a79599d69df5b70ffc175
MD5 5efe0150cd0f84fb04e9703ee6932c9e
BLAKE2b-256 374dd944b71d2ce3b9fddf02dba1821facffa84c6dc017f3deef43e3fc83e18f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 3cd107632808d1b94da6591f3bf2579ba88333650a6537b7655882487a8caac4
MD5 3b4b0291d6c264334a103e2a021ba7a6
BLAKE2b-256 694f17921038db616297874e5dd17b0518f7eaea368dd8c5df12ce3ed554d773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.4-win32.egg
Algorithm Hash digest
SHA256 6fae8c918c9f66ccfa15a7bc3b92fb9e095302f8bb7789ee59eb05b7d8c618fa
MD5 d084c71861c30bf5d4b52fee8ab74cfd
BLAKE2b-256 dfbcad3a161059050817014e898018748bda687f639b93cc90cb571a43057d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 3ab86827cfc1283300cd050bad185840b150877ad5b324053f7a9455ee6e596f
MD5 79f051c9c6d6897d8a016ba184714862
BLAKE2b-256 a86e6080bd49b1ae044a74b7ab2c88600ed4eda869e59b2a5b6427cea55351ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 c438452261daac308c0a19c7dfa46aeee1a93896611b483879865a0aa1615cc5
MD5 d565e15964f55cae321edb8560773f13
BLAKE2b-256 7c8630c6d1e5aefce50776d1dd9061e742662a16873c5cba89da33ac12f4386a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 4568c460343f724e8944078ab165fa54d9e33fdb1867f1e3d1e231f8ca4368a6
MD5 c9fd258e3876e30e38f88e4c94b0ea40
BLAKE2b-256 2352449921b3e498488d314ea83a06c4486b91a6e237031837d69bcfcdf47608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py2.7-macosx-10.12-x86_64.egg
Algorithm Hash digest
SHA256 7a5fc9aead0fd4946607279ef34f379e312716abfae53e6fa6603ae3eec4308a
MD5 84e5088cd85b1be3b2c8a8dcfd05835f
BLAKE2b-256 b1c7ccddd805ea65af2822fedbbced92f25f032117909843f28751e1f198990c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 1f865cb1999dce298746c84608ba8f2401e186691f6560a3401d812b3fdba74f
MD5 1fa0e8daccf2f478a02e00a163a616a0
BLAKE2b-256 d971f016b9f3121ebccedbc1ba6463df58892ac4aa219971ffd9014c85f38cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py2.6-win32.egg
Algorithm Hash digest
SHA256 4a69850e3d5d19e3b97918de5a19f1dacd1c08a0fe8df55221fe47a2ea767931
MD5 25e029837216656807021b680cd9fd07
BLAKE2b-256 b35ab77ac99d3c33b8f73bd473181dcc53808c03aa5d9e48982f9ab0971c6092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-py2.6-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 3b49f5979e1c4603b19b3805032a1a5abaecbc0f54dc765ba1b663e765711baf
MD5 29c532f18c07a2e5d7dd5618c6d5fe8c
BLAKE2b-256 ced76de34b4bd4605c699dbb3405d8fd290e63723170d821a9dffdc5f0f78a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 01dd4d25dc0fad15db3b384d04ac6cc1f75b56b48afd0a85a8d8207b44b741bb
MD5 ff3049f014cd995d6934ad06a2f04939
BLAKE2b-256 9e86003c793b914de7c2831b8630a329657669758ba2bf8039cd404d0b37f951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 634dc6e204f2dedfae18a095790e3baba6b071dbe0660b2b3af0f21ea0215cd4
MD5 945fed24375acf56a438808ac1fcbdbb
BLAKE2b-256 0fc62053c5977cd5954f4d1f8dd8677ebc05595dddf864c7777350e7b44bbd5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ea876d43fdeefebf8afa18cd647efa7b930eb8a4719ebdb1a8106cc51c446437
MD5 a7cb91677b27cf546520d656be072c31
BLAKE2b-256 c184068994d5d24e7e3012f1ab1937e0b15af712a6c5788c77d17ea9d096d12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 18fa5c2ebb23c8f34f30a5c764ada19621a4523f83aeeb8df9fc19ecfe76f838
MD5 8f77191ef7d08d22675042a85604ec2e
BLAKE2b-256 295a249444445cf8137d9dae666d121590dfa358965d2da9632441ea20111076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 fa1449e2a6cd96dfadf66530ba203fadfbcf54a4724628dac4104fc292b06477
MD5 f6506e6d59c873b73639a7edc29b0ad5
BLAKE2b-256 0d671eb6eda8d1e5e03ef8ce439c4f4e53f1206dcfcaa07bba92c28490fcc349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 adb7b6cf1bb6908cbe5b2e131e2cc22c707fbf0f9f0f27878494834683b997a2
MD5 dc50d1b116cba6bf20ea8c6458c8cebe
BLAKE2b-256 fcef9cd93f2e17ea339fd12f32802d260001d597f12d308d83da19afbff9a63c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 456b96c606147cea58f9316092b1ac8a239e891a1e8644a932e8a3c9cafec155
MD5 b9c376bd6dd56e279a521ba7fa6aecc7
BLAKE2b-256 d965f8bede7606407a457ed847407f8d516c3f06fef3770db14d2e15bbbaeec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f90b14d3c833c3d588066fec3334d5c1648a7cfee4e279dc1e553ec13082559b
MD5 d07c012a394c61c02248a99a7353e149
BLAKE2b-256 6bb9bba2404bc6c5bb7463594ef18e4e29634d8f1585d3a8414c77dceef3853f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 99c794e427ff9cb50d7bd9ec52c4f1b89a8318f37b4ccbefdce446a7f4ec5f7c
MD5 999cd6a61a1dbbd58a7543ccc892b5be
BLAKE2b-256 44c0654631eadea1c46c8f5fc0a6a3a486372b4fc51116aa8e9e866a8432c14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 ef1fb8ebbc0a0d1c92f6a2da4602e7ea10863fd546854d168c6638a0976e79fd
MD5 84fccbd8f21edc2da23cd80935066609
BLAKE2b-256 d5e26b9b4c44dfabed4287c200bfda9c038a8e604aa694224af65a68ee384822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 20769fd9bc0837e7334ad2c6c06953024b415dbed09fd59d6a61feeb29a6fe30
MD5 5f89aace00169bba3a8635e2bebb0725
BLAKE2b-256 54b534c214e7f5aff3c0e2a318928a5159f365810729a6e42f57e80755815b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 9162ebfca987ddf1dead8406e9b5bab3a68444b13fdd5aed9eca8bdec01a58f4
MD5 3db8882eeb74c56d2d23f657e9491d1b
BLAKE2b-256 07d541f8bea9949f7529e9b6d590079926b5f3e3a8b3854b8d6d8d26ee120ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 63d64859599b3ddc85ae7a211051e12ed956ce1deeaddc2c620fa323b6dfa97f
MD5 808022218a7400d038ad09c1ccade4c1
BLAKE2b-256 e5040cd822fe1ce8b2f1c3c4d3cbc85f7ad07af3a2aa807064e651572908a6af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b20de0b3b796f2ff2dddf14aba911bc429911583b8bbbaee2976e7fce7a56d56
MD5 b3c33d519f1183ca4687e7f65c4ff638
BLAKE2b-256 22e34bb391192760c7a398cf5e8e5dd75c0641f28d30b79304a2feb1007a7f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 2dd5b261b00adffce993dc5ffd0feb94368e1657eb16edeed62ae8fe142ac34e
MD5 40c6dd44913f5b9b8722827475caa5a5
BLAKE2b-256 7f933e91a5f03d77814fb17d909e618f9875759b192eae794b23ff8aa4d45f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66afa84a953e0e59d1f60bb05f25202759b9a606c748ee410b96763152cfd11a
MD5 1863174a91af0dfbf5c5904cc6434147
BLAKE2b-256 8f8306eb0f68757a3e942b7d4cc4c011ba5784f15bbede0aaa469531b4581ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c360dba39dce961d1e3b5af048612d17575f62abf889b9ddd74ab52d9026ed9
MD5 8a4146db24f1b9749ee3571b959eefc9
BLAKE2b-256 908b4ab711bcf19363b54ae7e64c5d7e4fd932ca1af2b41d4d52e542ddfe8740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d8a81a7d611936931145fa759cfacf99ff755d16e2d336677af439e128613da1
MD5 eb2daea647057be8f16b807e61ba0d6c
BLAKE2b-256 6a7192818e99328ae55f0ecfcf425bc6b276c2989aeec9630f1d744549919e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 1ee151105631724db9616dd2e083d7c28141c3fedc3d71c12bace5466621f785
MD5 ea94522358164b88f9b1d254524456b0
BLAKE2b-256 20e252cbd3a1c105ef39d0bd81dbf50da81d7ec434130cfb3982321bde1d81ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 dd93e47651d7a7a63c32d0c8f5d6e6c50d99b7a0f2ef08a4237727d89dac8f4e
MD5 011afb99f74e28b76a8fbfb4571f2d82
BLAKE2b-256 6845989d0cd95b371c6165d931b310745efd071da60534a74cb27eeddc04df52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 480addc4e9b87877d0508d64a5f2489448358537e94476f6341538981aef6e8f
MD5 c3cd6406aef9f3fe8362da6ce14abb5d
BLAKE2b-256 df66bb9a1b038b4a01571201d82667504a5e25ef712d5e9ca2c64a7b2c373734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6de8a60ce357b36bfee923abcea29ede2906fa88cdc426d078e8fbb9b00efaa8
MD5 813ed41f98bb1007a1f39e4eb79c841a
BLAKE2b-256 c4e32971bc3ed804d1b9ffdab6d8040f1a46543725903672a40853517635f0e1

See more details on using hashes here.

File details

Details for the file pymongo-3.6.0-cp27-cp27m-macosx_10_13_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.6.0-cp27-cp27m-macosx_10_13_intel.whl
Algorithm Hash digest
SHA256 db739c3323e4b5abd4778a2b3c73b7582c5ceadb40612e0dcc20fbc1abb538a3
MD5 5159165669c52a36af8afe86bb2fe260
BLAKE2b-256 ffd81bf7d3f5f3ecb98a84b6705bd9434ebca3a76b2b943afff5f6b99ee5e04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 82498737ef6c1ed6982b819eeac7fc241a581e7ac0eb73bea21bd4888e6e0530
MD5 8ceb093ce301096fa9be9525c02c161f
BLAKE2b-256 d5a598f51c991500c7394dc9001d6a4de0343dcccfd97d55f2b24f4351707b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c235432ddc354382ef9cce1e852d3c55ade84f661bcb617f2d095476d2927c4
MD5 a3c6612e7ca5e2701bb5ac0b1aadfc2c
BLAKE2b-256 554885a426b9da513789a745336681ae7d1cb925a47fa266b7dd5f3b14c93a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp26-cp26m-win_amd64.whl
Algorithm Hash digest
SHA256 595b2b780e5b17e95eac1c5a8935a673742186849cd73bde6706b76b7de8d1ef
MD5 dbdd3d7d29028cfda3e441aabf382333
BLAKE2b-256 d4557707bc93ade402332c1918be5d6fe7dd51c13794d345f7efd751f827f9d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp26-cp26m-win32.whl
Algorithm Hash digest
SHA256 914ae20e5f3574135ae270d69bd7e8cfdaacbfc561c47e587dee0dcbada3a3a2
MD5 26979b3aeaf9553c70f271b0b6ab7185
BLAKE2b-256 b87d11281f18356b04a5e2afd3bc530cd59955df6c4b1f02be9983033bc15289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f21caa2aae45ebfc420bc2631acf2c8de0e8384b14565c415c2fae9dc7aacdf9
MD5 abd9fcc250abb627e7277e5de29543f8
BLAKE2b-256 ff65d60295bf0d5a77eef1a3b32654f681149713e78801b03cab87b43818d43f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 59cf6f39042acd8062cc5c685838fb1532bb6424992ac757ceec742452d5a1bc
MD5 18ae080cfce092d127ca87c3fadcaa1f
BLAKE2b-256 97000b455a27170ed0c7cc094df3fc0bb7261e8037049d7f48fd2cbae21a6679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.0-cp26-cp26m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 54e5a5e70ca8afe38f517746ace4d20f5d814de16d5734299a18a664feb47a3f
MD5 251692a50bb8ac2b7719f38f6a2f5107
BLAKE2b-256 3d216c6a15982122ffa6ef68b556819202663cbe8d07bfc6b12b14f8102a147c

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