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.

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

If you have setuptools installed you should be able to do easy_install pymongo to install PyMongo. Otherwise you can download the project source and do python setup.py install to 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

The PyMongo distribution is supported and tested on Python 2.x (where x >= 6) and Python 3.x (where x >= 2). PyMongo versions before 3.0 also support Python 2.4, 2.5, and 3.1.

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.

  • pykerberos is required for the GSSAPI authentication mechanism.

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

  • wincertstore adds support for verifying server SSL certificates using Windows provided CA certificates on older versions of python. Not needed or used with versions of Python 2 beginning with 2.7.9, or versions of Python 3 beginning with 3.4.0.

  • certifi adds support for using the Mozilla CA bundle with SSL to verify server certificates. Not needed or used with versions of Python 2 beginning with 2.7.9 on any OS, versions of Python 3 beginning with Python 3.4.0 on Windows, or versions of Python 3 beginning with Python 3.2.0 on operating systems other than Windows.

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

Uploaded Source

Built Distributions

pymongo-3.1.1.win-amd64-py3.5.exe (374.5 kB view details)

Uploaded Source

pymongo-3.1.1.win-amd64-py3.4.exe (457.6 kB view details)

Uploaded Source

pymongo-3.1.1.win-amd64-py3.3.exe (457.7 kB view details)

Uploaded Source

pymongo-3.1.1.win-amd64-py3.2.exe (460.0 kB view details)

Uploaded Source

pymongo-3.1.1.win-amd64-py2.7.exe (459.0 kB view details)

Uploaded Source

pymongo-3.1.1.win-amd64-py2.6.exe (459.5 kB view details)

Uploaded Source

pymongo-3.1.1.win32-py3.5.exe (362.5 kB view details)

Uploaded Source

pymongo-3.1.1.win32-py3.4.exe (423.8 kB view details)

Uploaded Source

pymongo-3.1.1.win32-py3.3.exe (423.9 kB view details)

Uploaded Source

pymongo-3.1.1.win32-py3.2.exe (428.9 kB view details)

Uploaded Source

pymongo-3.1.1.win32-py2.7.exe (428.7 kB view details)

Uploaded Source

pymongo-3.1.1.win32-py2.6.exe (429.2 kB view details)

Uploaded Source

pymongo-3.1.1-py3.5-win-amd64.egg (470.6 kB view details)

Uploaded Source

pymongo-3.1.1-py3.5-win32.egg (465.6 kB view details)

Uploaded Source

pymongo-3.1.1-py3.5-macosx-10.6-intel.egg (494.1 kB view details)

Uploaded Source

pymongo-3.1.1-py3.4-win-amd64.egg (468.5 kB view details)

Uploaded Source

pymongo-3.1.1-py3.4-win32.egg (465.8 kB view details)

Uploaded Source

pymongo-3.1.1-py3.4-macosx-10.6-intel.egg (494.9 kB view details)

Uploaded Source

pymongo-3.1.1-py3.3-win-amd64.egg (475.2 kB view details)

Uploaded Source

pymongo-3.1.1-py3.3-win32.egg (472.4 kB view details)

Uploaded Source

pymongo-3.1.1-py3.3-macosx-10.6-x86_64.egg (502.3 kB view details)

Uploaded Source

pymongo-3.1.1-py3.2-win-amd64.egg (466.3 kB view details)

Uploaded Source

pymongo-3.1.1-py3.2-win32.egg (463.1 kB view details)

Uploaded Source

pymongo-3.1.1-py3.2-macosx-10.6-x86_64.egg (493.1 kB view details)

Uploaded Source

pymongo-3.1.1-py2.7-win-amd64.egg (459.4 kB view details)

Uploaded Source

pymongo-3.1.1-py2.7-win32.egg (456.5 kB view details)

Uploaded Source

pymongo-3.1.1-py2.7-macosx-10.11-intel.egg (481.3 kB view details)

Uploaded Source

pymongo-3.1.1-py2.7-macosx-10.10-intel.egg (481.2 kB view details)

Uploaded Source

pymongo-3.1.1-py2.7-macosx-10.9-intel.egg (481.8 kB view details)

Uploaded Source

pymongo-3.1.1-py2.7-macosx-10.8-intel.egg (482.9 kB view details)

Uploaded Source

pymongo-3.1.1-py2.6-win-amd64.egg (461.6 kB view details)

Uploaded Source

pymongo-3.1.1-py2.6-win32.egg (458.6 kB view details)

Uploaded Source

pymongo-3.1.1-py2.6-macosx-10.11-intel.egg (482.8 kB view details)

Uploaded Source

pymongo-3.1.1-py2.6-macosx-10.10-intel.egg (482.8 kB view details)

Uploaded Source

pymongo-3.1.1-py2.6-macosx-10.9-intel.egg (483.4 kB view details)

Uploaded Source

pymongo-3.1.1-py2.6-macosx-10.8-intel.egg (484.5 kB view details)

Uploaded Source

pymongo-3.1.1-cp35-none-win_amd64.whl (235.3 kB view details)

Uploaded CPython 3.5 Windows x86-64

pymongo-3.1.1-cp35-none-win32.whl (230.4 kB view details)

Uploaded CPython 3.5 Windows x86

pymongo-3.1.1-cp35-cp35m-macosx_10_6_intel.whl (258.4 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.1.1-cp34-none-win_amd64.whl (232.3 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.1.1-cp34-none-win32.whl (229.7 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.1.1-cp34-cp34m-macosx_10_6_intel.whl (258.3 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.1.1-cp33-none-win_amd64.whl (232.4 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.1.1-cp33-none-win32.whl (229.8 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.1.1-cp33-cp33m-macosx_10_6_x86_64.whl (258.6 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.1.1-cp32-none-win_amd64.whl (232.7 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-3.1.1-cp32-none-win32.whl (229.7 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-3.1.1-cp32-cp32m-macosx_10_6_x86_64.whl (258.6 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-3.1.1-cp27-none-win_amd64.whl (232.2 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.1.1-cp27-none-win32.whl (229.5 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.1.1-cp27-none-macosx_10_11_intel.whl (253.3 kB view details)

Uploaded CPython 2.7 macOS 10.11+ intel

pymongo-3.1.1-cp27-none-macosx_10_10_intel.whl (253.3 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-3.1.1-cp27-none-macosx_10_9_intel.whl (254.0 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-3.1.1-cp27-none-macosx_10_8_intel.whl (255.0 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-3.1.1-cp26-none-win_amd64.whl (232.7 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.1.1-cp26-none-win32.whl (230.0 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-3.1.1-cp26-none-macosx_10_11_intel.whl (253.3 kB view details)

Uploaded CPython 2.6 macOS 10.11+ intel

pymongo-3.1.1-cp26-none-macosx_10_10_intel.whl (253.3 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-3.1.1-cp26-none-macosx_10_9_intel.whl (254.0 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-3.1.1-cp26-none-macosx_10_8_intel.whl (255.0 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.1.1.tar.gz
Algorithm Hash digest
SHA256 98f550d27481cb841c0f5de023df644e7a3beb235b8a22a091e6dafd39c6a82a
MD5 72f5930930141979477f88c809f4022e
BLAKE2b-256 0c6ed32f0aac3c5a1283040177cb10a556d0c4273655787b8c595a8d4c858416

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win-amd64-py3.5.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 fcd0ef89c211d6a38ef128632ffd489a699e05c67e2960e5cf6783f94573e364
MD5 85cddcf7872e7f3dcfacfc74dd46a9e0
BLAKE2b-256 27f5d810d86e609950ff928f03d1c9fa0019ce3be5a9f69e365965d696a97c39

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win-amd64-py3.4.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 dd58798e3ecc27dabf353347643cfbcbd0e04cb7ff21554c7738d951c4245a57
MD5 d2c8a0855b0a5844f45ae588bce289e7
BLAKE2b-256 b62846cc59980e5349d1bd5277d202ef5e1557ea70f42d606f686ffff2e92890

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win-amd64-py3.3.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 c34d66bb20ece0e126cebf89290684acfe379fe1064ea19dd374d5856e5fa7e0
MD5 25ed55d728c5f6e095892d11218f412b
BLAKE2b-256 7e9a6860c2e32bb331278d88aac691ede5df3b64793887bb211bbb0688a87900

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win-amd64-py3.2.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 92da014909d61cad8683937990c969ac0faed7d28ba9536f3b8a0a8af7596aa1
MD5 aafca775cf15325d6a3e0b439b72a922
BLAKE2b-256 d5bd6039241b45de393e872d028d57265d0306a26568b8742d4b9d9709558b9c

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win-amd64-py2.7.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 bf92b32229b3d1f2dfac090c634488ee680da4a7a5ebb6d7907a084ee962756c
MD5 3388852bdac8c4705673d45f705a4df0
BLAKE2b-256 8666dfd7ad33519256ed3242cf60cdc2223addc0988c93d11d5a6b3fdaeb5b4a

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win-amd64-py2.6.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 856d258a0c46b0e197be37ce9f13f51acb657caccee3b38f0c333cf92b347265
MD5 4717eab727ce55e829a840f9e360c5ea
BLAKE2b-256 954921ed491571a43b538854d4ba371b95a575efaf0163ac47d062249782ab85

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win32-py3.5.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win32-py3.5.exe
Algorithm Hash digest
SHA256 48453b91eab7d058ae1a1504d73c884ee419c14f5ec8052e3291158a46b9065a
MD5 3d4f2b98e61055f57ac11f0e371cd223
BLAKE2b-256 5ed9f7050504768fef8c1162326cafc18689809c545d1650d4b9e4caae4b5977

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win32-py3.4.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win32-py3.4.exe
Algorithm Hash digest
SHA256 6ced0d36fe807cfe969d1d650344471af074509ce9247a452aaff36d517ce6e4
MD5 9be82cfdb3cdd4bcc707e0acbeb3a9d4
BLAKE2b-256 bc8e534d14bd0e0580a65cbbc669dedad0698d56cd8cc8fbd186ecef791eaab0

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win32-py3.3.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 5b4c785ab50c15ecef7ea6603263f804e08372b605441be370f30977b85730f3
MD5 27594de942118c0a8227983813b01aaf
BLAKE2b-256 11b31b516730d57d41cf2f43c8bb9f680ebb7063447edc9275488e71fa93103c

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win32-py3.2.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win32-py3.2.exe
Algorithm Hash digest
SHA256 722df2e9f08d1b99d163f5a13b8616cf10b72c418b547cec3e458148fe7d6ca5
MD5 3ae23203c6d95d7bb9a9ab2a4297f8ab
BLAKE2b-256 d87a89b839f7a7ba5e86ff14d4882f612a372c33ed72d25f453a9095074cd99f

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win32-py2.7.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 b1338e5387f0b5c1a5d69e437d48c85a898181b3ea1e73292b4991b53730a50c
MD5 bfcda8cb5e464e58b07f79f805ff37b2
BLAKE2b-256 1ee6ed08bcdcd5df508d0e1fa84df9338362651bd2a67e6d776264748faa7d1b

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1.win32-py2.6.exe.

File metadata

File hashes

Hashes for pymongo-3.1.1.win32-py2.6.exe
Algorithm Hash digest
SHA256 5d25293936b7f4df8a261960d1548e0a7602b6f84e1c4105f74afea8d46faa8e
MD5 26b245891b9bd64b3d67f4db53b4928d
BLAKE2b-256 54bebc7848d463e0099def91e78600155c4ea9cf9eee0619ca1cc5bc6a03dce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 d4cb43646d32c1a55b5500682f564be1970cdcbda7b48a095560f68a4f3dd4e3
MD5 9e13a599e96e444c733d701197180a75
BLAKE2b-256 9a62ae9f5cbed82155b00e511c3e88fe91f39779d920aed81fb31d839a93c1e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.5-win32.egg
Algorithm Hash digest
SHA256 f9f87a73b6679becdcd4e207b606d6f57c659d1c63f831ad616343893c3d1335
MD5 b62689e53aa142af96d7ba21cabd0fc5
BLAKE2b-256 f5341d4f7938e9d59d5691ce5cb19df992bb8fc8cc79798a968d74db07a59aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 6ac77a1e7a2c5a7392900e74bdd0c81820ce9f10d390b53fc57c8ec3f15a5570
MD5 354338c116cf304e5fc6033119339aab
BLAKE2b-256 9a0485bd035f48e6a107e2ee7153f98d4394227b55f8ccd3c6761455d69a7923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 d8a6a7b5e8bf2031e8136369fe1a781104a93a979f465690fa3b9838590a3789
MD5 a64ea5d1cc87308cddfea261297dd570
BLAKE2b-256 dd6ab113f1a750436185ea4e515f642c93d663b1a303415c5b9f0ff0f9c9f4ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 b8aaffaf87b64e3b6a4bab183cfcb8fd8e4f5e77da6dc4f26349cca262d77a70
MD5 257bd20f5c9230778683641e60fddb86
BLAKE2b-256 227f5faeabd50f2f24bc28917ec1175b6f26721eaafa683a91af34c927d9e82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 186368ed02d4f3c610b9a46675f47c39cccd54f2704c1e7b6afc39c956230879
MD5 e65f7df4a0333deb466fdf53e3eb41c0
BLAKE2b-256 8ff0bf497b1404c193142f3e04980fd5245b76f3a2b2f7d5bf73101560757c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 ebf92f55b6c5c4876e6058a83ff7655e38d896c935244b0e06839a84cb74c883
MD5 66bc8404140c09d95a0f2471e92f8991
BLAKE2b-256 d8f791de2fc6f2e958538d8b2849c535609959758ec0723790ffe03d5eaaba61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 3a518fab60e777cf2bdf4312c312baef8a0c805dd52329f2c36bfc1c989d20ba
MD5 b34fe810c93cdab1bb05d48b4cec9b8b
BLAKE2b-256 bda412a0d797f10f7e0b26df9788fda97493f54ed191cab014b79c618b2653f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 280de2df265c02857ea3a72cff17174b9185b7e7f283d3f5845d5304e9877b29
MD5 5913ee42109bc003e29882e95fcb8550
BLAKE2b-256 e557bfd1dca7582c16db2e7dd38addacfa897a7e9e4e432058944d3bf75e282e

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py3.2-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 e20f42f6dc5dc609ecfb024962a4f548cfcbddfb488fc409749774f74ff04993
MD5 cd539596ff6201fc5881dac8a0256783
BLAKE2b-256 f902af4a8adc4de017cc1030edacf58c5f402ff9c06b8469d0b8fa8355279304

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py3.2-win32.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.2-win32.egg
Algorithm Hash digest
SHA256 dae3af08e8be6808e7178a5911f5238842df60c003c2f1006c5a689d2f9c29b8
MD5 f9f74f34571f3ec8b96d71a41753f93c
BLAKE2b-256 4af8c1dc88bb5d1824c9d1f081784b6ad3d282d10c254c0e94900abc88779ebf

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py3.2-macosx-10.6-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 ab18b7043fac6fbcb43923b6839bbd48961ce6caf5bf7182b42cc067de9601e2
MD5 ac68419fd6e9cfc9ecec5fd9095d40db
BLAKE2b-256 ae324be07829672411eb740c5778f73a667b480254b51b13742007266754889d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 72c597052593a1036aed3d2ccc4fa965ebc286d777bb1811d88533447446a185
MD5 cd6c3ef1f98328a47694b9a88f03acf7
BLAKE2b-256 4b0d421783892a6fc3b862147d87dd6382dfcf2bcd189dcf2e7e3d5861e8831b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 986fdd98192253558231c14a0f979155c01031eaa9c249e691785db2dc34f025
MD5 3f0a13afb84baf0f0c364f9b00b669b3
BLAKE2b-256 312d8bb78e61c5823d26cdb2508a56b7f2bc5883ac3fa14d734a5bdf4a33fbbb

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.7-macosx-10.11-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 d633ace61261647733d8437fb2d4c305aa04f6e5daeea6d73b787c381fc87b14
MD5 93c050892056574a808ee63861398234
BLAKE2b-256 63454f56341fb5db563099ff40db152d558b39b5af433e0390f24f60a36f3d76

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.7-macosx-10.10-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 ce7eb0aa8532edef1a6df83673a2c46c243fb619ae4bfdeda90a5398f0db83fe
MD5 18345b062ad2aa147bfec495821f03b6
BLAKE2b-256 4bbca901eb2281059226acfd90015e15d1f9e0b3bfb4a16470fc5cb6674c8a25

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.7-macosx-10.9-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 da5f5c1c1a79ba362f234e9c58fcd722db5dbc1f5bf933b7eefac72913962af3
MD5 322a559354e201b0491394a3d721d630
BLAKE2b-256 6fa3ad4386614089205199d00c24d610fd658fe5c03fc2da7f3223d1d197df2c

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.7-macosx-10.8-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 b3ca4a01e29f35a1867b650384649190cbe488ee6666577d8b1bde379b326983
MD5 ea646d696ad4eaebee7ca22b933e77de
BLAKE2b-256 046c8833a067cd07cb7314b0d839e99d727dd8854028449666d883f4ab86bb08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 1ed6c5ba8f3dec61133153d37a9d38135a280bfe47939713b5ff95dea158da52
MD5 3354adcff310096042b79ed2220dcb1f
BLAKE2b-256 26ed43e63d10a491f812ccd76f59f4f81368c0a6f17ce9e510e01eb4f7f2802b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 386851640a0e47c34e2e38bb1eec4e7dd5ab999788402941b13938c0c6f90b1e
MD5 fe0c9e6cf68b8e3f646172e201cfdab2
BLAKE2b-256 8c921d173353b143685d8e758e4f26a1a1ede9b29370deecb26396986da4f188

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.6-macosx-10.11-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 13b885ab0120c53d7ff5d0814a20ba3a81fad000107e6413ecc5bdb504906921
MD5 d05b9b606356bcf3c4a2526459975da7
BLAKE2b-256 abb6eee579ebd205a301cdbbb3c1a697ffc7f78ad4362bbf660fc79c97a120a9

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.6-macosx-10.10-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 4f2b7ad30eca982bef2d0b66afebf7387baefbcc634d44b4113fe9145ac2c186
MD5 f29e4185f43fa61de71e8c528c23cf3b
BLAKE2b-256 ea12ef727fecceec908be95fb4e5591e7703a5015fb979a2b6aefe4cc1f2ecd1

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.6-macosx-10.9-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 527ae520b245f6ac65a1416827802597ebbfc93cf41dcfbace0ec36943cf6083
MD5 28dfd02e75e449a46cdc8601da2ce2c7
BLAKE2b-256 b08e547ba0bff6d3239af68d986b1c1126796563f0e4d7ccbb7a97d81f734559

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-py2.6-macosx-10.8-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.1.1-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 c8ee11c69953fcdf213741171a0229ca9b39666a4465b8e17e30b97d3b063f62
MD5 1df0d709ca3fc496e567874de290390c
BLAKE2b-256 8d292651d74a372b5b97ca42c6828f1b9c9e387a9baec2a331258b6451dc77b1

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp35-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 68595c9cb0eada278944cc702ffcb0303a4d27c3559a66e09feeb7646891cd11
MD5 e4680ebe33837cc5ef7a5a0c2bbfda7a
BLAKE2b-256 62555945ff43eced617dac646d38b3be63501ff410eaba99d9057bf5afc4b990

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp35-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp35-none-win32.whl
Algorithm Hash digest
SHA256 57510b4ba8499ab3135bee9a976aeb069637c04a2852eb2c292cedfdd61b9b0e
MD5 2b8204cbddf705bb145853e550911eb3
BLAKE2b-256 29fd972d8e3cb22b55147e7f9a6e15a8b5cece0c4f9531076be2158fcb050904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a3cd2ef833054f7d7fa9b00c3ac72d8259c468e76977fc152746f4535306c966
MD5 c7976993d1bef17f6ddd0be23d6146a6
BLAKE2b-256 1283117bdb9f5a5760259e1ff18e968f9ed73839d46ee3471c4ab54820f7c146

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp34-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 06cd4a9effc94c6426f737b300d8a98c22b1858c2ec19fa135ff07bc938a5fd6
MD5 8fccbf6218b64334808b7b8f93389a85
BLAKE2b-256 ad7c42efd6b081f4ac73b96d03d0b7260ccb57e7ead8263483040e29a8899b56

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp34-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp34-none-win32.whl
Algorithm Hash digest
SHA256 c224e0ec0cebe294662594bddf5b23f18b8ab133753fb457a868ca683a719fd1
MD5 eb6c86dcb0522336182ebe6e8103393d
BLAKE2b-256 9917b43e21bc9475a6625e91cf172c0ec61d623b59a99476a7bdb7a55afaf671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d49c0505a08674659a4f21e15017a7f8bfd5ba17a4b6d6633ec9ce86640cc70f
MD5 ad7fdd30f282d9bd67629d12904f82ca
BLAKE2b-256 7b6fc1ef552b7bfe5034a84d45e0a62d766a9286aea874cbf45f112cf9bdd490

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp33-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d35bb5672f46b370dc5262739f0c3e419459e4203294f8186c7bc4be78e2df2
MD5 87125f30a87eb769aeb753129cc7a3a6
BLAKE2b-256 7340c51d5d0a2b8d95d251ce5ccb11dfd5d6b5fe366f7a67ab72c7cb521bfb1c

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp33-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp33-none-win32.whl
Algorithm Hash digest
SHA256 dff907de25a87806ee5e672c0841621985589cbbacd5a0e817f2ddd1274bba6a
MD5 b001fcd89077413d8e55ab6388895d47
BLAKE2b-256 ce953fa92f5a7291e10d2dc3729833e13d90b90305ae0444e8bb7291922f831a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.1-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 38710ca036a715eb2fd4a752442b055735cf0e517189b4fc041d9e0e755e823b
MD5 8e1bbe1a195cfb2dd73b781bd090c612
BLAKE2b-256 dc5e3878cf59f8ddf50a3c0cc60a1f68e4139a60400cb0f2b41cc944c4d3c8b5

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp32-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a27e5a5ef6ab95ddd2004f9246c8e0bfde604a58a966f65e63ef15b89dcd416
MD5 e66c7808356ca35d61ff3dcec61d5e83
BLAKE2b-256 672eecad831a2f0b5c74d81f4e52f0ee78563d0103ee1d27d40bb5fbbb96f4e0

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp32-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp32-none-win32.whl
Algorithm Hash digest
SHA256 d83f7427680565b83972a11a01ec27ad8d7e2056b279c9121d9b06ca93be300d
MD5 f230c1008fe2375273b446c01ecf2a0b
BLAKE2b-256 9d21488f42fc12658c668f13263ff55e8efdda9487e103aca97ef372f2655a24

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp32-cp32m-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 03b776a36aead832dd0fb0315e5ac2c22b2b15cdd5d700b0f98cb892d634b5a0
MD5 f35c251739f90d045dd6c25f0ff83e17
BLAKE2b-256 87ada294fa9900b57c49a2b9dc939e32007b82dfe3e61674f212d94cad85a7ca

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp27-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 ace7f9c719c8b00ead0fcbda58f3e85781a36b368e62dd9a8ca6bdc91115e1dd
MD5 6ac1bd08f1009ef05a25098e2ad5b976
BLAKE2b-256 8913ce70f09b5c1d2f38c280b2b3dc761a8a3d9f90d50440c908b5404791ecda

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp27-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp27-none-win32.whl
Algorithm Hash digest
SHA256 7ffe8c8d5b8a46a21138b0ede3ec8977e797a60613051af23efbcf3dca8ddd44
MD5 8e9cc13de595f975f6565dab7c03cb09
BLAKE2b-256 99008b0513f740e41992b629bae8226ce2a3bb5c47dc4df9d9db011afe677245

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp27-none-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp27-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 ce575163f6998ad4b279f4c9d31cb182b94be52f4513e409b0c187524834cb08
MD5 21a743ffb6df1153994a4bfc7e0c79a9
BLAKE2b-256 1112be476cd776a91ef524a70c9bb5e8f57279769cf9a629cc9affa8ae5c4c24

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp27-none-macosx_10_10_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 92158f3894bcd9aedb0ad373d91ae7a1caee2a75a40ef210342fc55055b1b1f0
MD5 35c22ed9107ca620d8ba9ef2de94a6a2
BLAKE2b-256 f04176fc5f104a0ff09afdb7e8f72d67c74a93e362c6ef8a26c6c468c460a3e4

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp27-none-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 d37b3ba4f1aa555c445a9baed87359adcdc4e80870f290080f066efc8b997e05
MD5 8a31e8516e321e44d8c26dfacaead05c
BLAKE2b-256 d2e3da962c66716333a32f0abfa84c29d1922205c31bd49029a0e22f6f51b0d9

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp27-none-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 1df2d7635fd5b9affb147afa9e1cd3367aed72d828ca41650a132b55efeffb06
MD5 5717be12765c2901e1b4a9ff005577da
BLAKE2b-256 4d4b5a4b1367d32a0696717a3604f36c8518409162c82f9481c847933cc0d948

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp26-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 cc8b8c6f6b959a06b8b0433d2bc3f410390a2d98104dc82cabbfdaa0d5b7a155
MD5 4adedbab5f365117c1301666d2cdc871
BLAKE2b-256 bb4e32830483cecbca432c2ee034f4fc7106b57ca4f7ba307738e7a63dc835ce

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp26-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp26-none-win32.whl
Algorithm Hash digest
SHA256 28ab6d69e8a29d5901ead13106920477e3493474263f2e9a10048635a83958da
MD5 ad386397e5bc9ba46ba39f8871d5affe
BLAKE2b-256 95fde429a1e6050e3f40345c1dd862c60b239c59c4a03d00e66255088dbfdaf6

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp26-none-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp26-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 216fcbb32832f36e276617f17a0e4b4bc1ed6772038196d85f0b15617358a2c1
MD5 520a280f1aea39ede17fa05fc536cae7
BLAKE2b-256 53b3bb88d03080b1a930f867fa8f4a1489b17f51ddbd5eef94c4afd4e94faeaf

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp26-none-macosx_10_10_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 17c41e95448fac4c571770cbdb73fd2d8bfdfcba48bc5ead0f2ea1d24b619b76
MD5 dc8a5247498652e3da06c5eea42bb939
BLAKE2b-256 083a5fb70f0064e21a6f50f3726cf54d61907ef483bf96b96c7bb392e872ac7d

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp26-none-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 b284f64a61f203a2fa39047b3b3e6de1fc0d32ae037f356f9fe958ac191e810a
MD5 e3fedab30f235322d6a88341d44a70e2
BLAKE2b-256 5fb16c0caa8e4d34e43e99600c83d82d508447b35659d84c4f3acfd93852f32e

See more details on using hashes here.

File details

Details for the file pymongo-3.1.1-cp26-none-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.1.1-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 89944a59e2225e09d65c12ef004ee6070bcb563a96422cd6d93ab05d02f6ff40
MD5 a1d28673f45f5e1a727acf3f83d1932d
BLAKE2b-256 159b4bfe961437c7dd8b00ee86be0210e5621d3cf046eca1b9572d20ebf1cf1d

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