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.

  • monotonic 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

This version

3.2.1

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

Uploaded Source

Built Distributions

pymongo-3.2.1.win-amd64-py3.5.exe (383.1 kB view details)

Uploaded Source

pymongo-3.2.1.win-amd64-py3.4.exe (466.4 kB view details)

Uploaded Source

pymongo-3.2.1.win-amd64-py3.3.exe (466.6 kB view details)

Uploaded Source

pymongo-3.2.1.win-amd64-py3.2.exe (468.4 kB view details)

Uploaded Source

pymongo-3.2.1.win-amd64-py2.7.exe (467.5 kB view details)

Uploaded Source

pymongo-3.2.1.win-amd64-py2.6.exe (468.0 kB view details)

Uploaded Source

pymongo-3.2.1.win32-py3.5.exe (370.6 kB view details)

Uploaded Source

pymongo-3.2.1.win32-py3.4.exe (432.0 kB view details)

Uploaded Source

pymongo-3.2.1.win32-py3.3.exe (432.0 kB view details)

Uploaded Source

pymongo-3.2.1.win32-py3.2.exe (436.9 kB view details)

Uploaded Source

pymongo-3.2.1.win32-py2.7.exe (436.7 kB view details)

Uploaded Source

pymongo-3.2.1.win32-py2.6.exe (437.2 kB view details)

Uploaded Source

pymongo-3.2.1-py3.5-win-amd64.egg (488.0 kB view details)

Uploaded Source

pymongo-3.2.1-py3.5-win32.egg (482.3 kB view details)

Uploaded Source

pymongo-3.2.1-py3.5-macosx-10.6-intel.egg (512.5 kB view details)

Uploaded Source

pymongo-3.2.1-py3.4-win-amd64.egg (486.1 kB view details)

Uploaded Source

pymongo-3.2.1-py3.4-win32.egg (482.7 kB view details)

Uploaded Source

pymongo-3.2.1-py3.4-macosx-10.6-intel.egg (513.2 kB view details)

Uploaded Source

pymongo-3.2.1-py3.3-win-amd64.egg (493.4 kB view details)

Uploaded Source

pymongo-3.2.1-py3.3-win32.egg (489.8 kB view details)

Uploaded Source

pymongo-3.2.1-py3.3-macosx-10.6-x86_64.egg (521.0 kB view details)

Uploaded Source

pymongo-3.2.1-py3.2-win-amd64.egg (483.7 kB view details)

Uploaded Source

pymongo-3.2.1-py3.2-win32.egg (480.0 kB view details)

Uploaded Source

pymongo-3.2.1-py3.2-macosx-10.6-x86_64.egg (511.6 kB view details)

Uploaded Source

pymongo-3.2.1-py2.7-win-amd64.egg (476.5 kB view details)

Uploaded Source

pymongo-3.2.1-py2.7-win32.egg (473.1 kB view details)

Uploaded Source

pymongo-3.2.1-py2.7-macosx-10.11-intel.egg (499.0 kB view details)

Uploaded Source

pymongo-3.2.1-py2.7-macosx-10.10-intel.egg (257.8 kB view details)

Uploaded Source

pymongo-3.2.1-py2.7-macosx-10.9-intel.egg (499.3 kB view details)

Uploaded Source

pymongo-3.2.1-py2.7-macosx-10.8-intel.egg (500.7 kB view details)

Uploaded Source

pymongo-3.2.1-py2.6-win-amd64.egg (478.7 kB view details)

Uploaded Source

pymongo-3.2.1-py2.6-win32.egg (475.3 kB view details)

Uploaded Source

pymongo-3.2.1-py2.6-macosx-10.11-intel.egg (500.7 kB view details)

Uploaded Source

pymongo-3.2.1-py2.6-macosx-10.10-intel.egg (500.7 kB view details)

Uploaded Source

pymongo-3.2.1-py2.6-macosx-10.9-intel.egg (501.0 kB view details)

Uploaded Source

pymongo-3.2.1-py2.6-macosx-10.8-intel.egg (502.3 kB view details)

Uploaded Source

pymongo-3.2.1-cp35-none-win_amd64.whl (243.9 kB view details)

Uploaded CPython 3.5 Windows x86-64

pymongo-3.2.1-cp35-none-win32.whl (238.5 kB view details)

Uploaded CPython 3.5 Windows x86

pymongo-3.2.1-cp35-cp35m-macosx_10_6_intel.whl (268.0 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.2.1-cp34-none-win_amd64.whl (241.2 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.2.1-cp34-none-win32.whl (237.9 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.2.1-cp34-cp34m-macosx_10_6_intel.whl (267.8 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.2.1-cp33-none-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.2.1-cp33-none-win32.whl (238.0 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.2.1-cp33-cp33m-macosx_10_6_x86_64.whl (268.0 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.2.1-cp32-none-win_amd64.whl (241.1 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-3.2.1-cp32-none-win32.whl (237.7 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-3.2.1-cp32-cp32m-macosx_10_6_x86_64.whl (268.1 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-3.2.1-cp27-none-win_amd64.whl (240.7 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.2.1-cp27-none-win32.whl (237.6 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.2.1-cp27-none-macosx_10_11_intel.whl (262.5 kB view details)

Uploaded CPython 2.7 macOS 10.11+ intel

pymongo-3.2.1-cp27-none-macosx_10_10_intel.whl (262.5 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-3.2.1-cp27-none-macosx_10_9_intel.whl (262.9 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-3.2.1-cp27-none-macosx_10_8_intel.whl (264.1 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-3.2.1-cp26-none-win_amd64.whl (241.2 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.2.1-cp26-none-win32.whl (238.1 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-3.2.1-cp26-none-macosx_10_11_intel.whl (262.5 kB view details)

Uploaded CPython 2.6 macOS 10.11+ intel

pymongo-3.2.1-cp26-none-macosx_10_10_intel.whl (262.5 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-3.2.1-cp26-none-macosx_10_9_intel.whl (262.9 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-3.2.1-cp26-none-macosx_10_8_intel.whl (264.1 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.2.1.tar.gz
Algorithm Hash digest
SHA256 57a86ca602b0a4d2da1f9f3afa8c59fd8ca62d829f6d8f467eae0b7cb22ba88a
MD5 1894865cc436fbea833b9228dc479db7
BLAKE2b-256 d7949aa9ddd3e885caa307c0db8af5a1f5d266d3db44e1ae89bd4e14841ab8d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 4a3c382bb530838e83bd4f3e75b0a2bccdd6536cea5aae59f3ee968feb27ccd3
MD5 5f5a8468e67bd4a56db90602492c3a66
BLAKE2b-256 bbfa8f1c22f2b3887d6af30adedc3733102f88adeb4898352db739b76bd9be22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 b531149b77af3c2e4c78de31fc321b1c137339c1e96de891663c6939c387b540
MD5 176f186f6cb8fdd13e801e092e9dea45
BLAKE2b-256 5bc916f9c9e01219c4ac5016a172a33f9d853995ce5c38916f4e1f2b5a240d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 0ec12a16e632edcf73172d308f8b066ba132a653bb7b8a4a8247489553d8702a
MD5 b9b77979375c195a15d75fa5acb8e746
BLAKE2b-256 6c4e5f44b96b7e2d8678dd1f8db4e64269fb6bd7d6e398aab508150ddb56fbb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 4bfbc6d63d6ab237f4a307cf4eac4dd52b180ff7d5082282e88a4c4e77e2028c
MD5 7197df48b09a8e59c0b44ae3e87136d8
BLAKE2b-256 8a7ed427c1cbe4f7ce803fbc1359ec35d559662e5dfa613439a4b55f9bcb46f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 27c7affe5d7c87d77349dac38baa10ed4e4e116519856b71b29a442d24bcdceb
MD5 fc4af80dd08c32dad6837d6e16ad58ca
BLAKE2b-256 259d61b597a240b6c389e2df4c7121ae3ed7d199fe281c6f45dad7fdbd8b13b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 b65f344d121d147b77394440fdbd17ef9be2ded6ac7c6ae12e62e381f27ec46e
MD5 d0b85c3834b721a7a86f7221b88dc54f
BLAKE2b-256 496bbe9d43e85dddc7bd04cee78391b558aec58eae54ce78bbf66789e9cbc205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win32-py3.5.exe
Algorithm Hash digest
SHA256 169ffeba8938d8c1ef895c3e624c667610dc89c57de85c9f999ce1993931c293
MD5 ca166747abf89de273a53d6b2bef2e93
BLAKE2b-256 9563a282a283f9d4a69f5a1ccb428a97c8b91b65b455b60573372213936296a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win32-py3.4.exe
Algorithm Hash digest
SHA256 c4f38dee0f1844011e24252f3dd4b4f38ea41504f830b564c17e66b2f731b30e
MD5 b6d811d50636b107c4cfc4c57ae3fe93
BLAKE2b-256 9d0f471ee1a5050d5f8a4e13fcdd4fb8e6152c7e1d3b34a07ad85cf69a01f234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 441ff12909f8ba210877047c8209c2ecc870e752871415b8f5cceca3d73dfac2
MD5 d1af38dada1bd6f161b68dbb16ec92c0
BLAKE2b-256 9d8d7870f88a51c4dde71a2d4fcc13a7ceb3dc25f38a9cc6fda7f307725fb0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win32-py3.2.exe
Algorithm Hash digest
SHA256 04308b5dc1ca32e8721cec8a5b5b0ef3665fe0eef387236802fa068700c363c1
MD5 58440099a80aab2756e3379e1313c644
BLAKE2b-256 ac0d85b73364877bd2962778842aebe2863ca6d24a527e65c10aa34799493ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 c14986b60efe5c66fc33767a6f2bebfc1313ce75ef9428d6f8d0e6bcdc189c29
MD5 1abb7315e36f5f81cf762aa0401dc927
BLAKE2b-256 06a52d4f4a6cb619f32e480a4eb088cd1c75a42d457b9e50a95709d005a128bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1.win32-py2.6.exe
Algorithm Hash digest
SHA256 efa7cf1417a1a80657342cef683dca51d49bbca898933b7b1e455edc1812412b
MD5 2e5423df5413e934964cdc53aa45d2ca
BLAKE2b-256 8372f1ffa3b0b724bf207a48841c6c1d453f1c0cc7abfafee81e210393d8e8de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 e5eff2d3e3d2c4f8e3463e944e4ee787211c196259d729137701aca6be486aa7
MD5 736639a37993423a81dc09bce8458bca
BLAKE2b-256 67e55ed39e429e1a8bb5582ba6cfefc0e7e9c9341bd14b745100774435738513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.5-win32.egg
Algorithm Hash digest
SHA256 f2b764bf62c7ea3b016062c00d90322df046da234f74d6a149effaea273fbc55
MD5 a1de87630928d8353bb1e9cc720525b9
BLAKE2b-256 fe8993e4d952da324c6ec40b0a780be8e9f6aaaf8829bd9d25a6bd91bfebb3a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 2bfcb52cb84f9cdbbb44c31257947a52d2d6a241970c84d9984ab3e7f55a36f5
MD5 e97c06ea6625a658a3cbbc9628110ddf
BLAKE2b-256 29e7a7b4be37bcebd7b9a05b58454e7c44c02890895c38aed5e2c3d316dacd5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 d18a0e61c6bedf5c7038890af82fd5ee82d6866a8daeb3be6e7c22bd96f56054
MD5 6dcd84b99e4bde31a40d78c1d9d822cb
BLAKE2b-256 fcf3841a528a3aa977c9d8afd2e2b2d68326c4abd74ac8860be4ce7a971d444f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 5ad4c356dba846725cb91c91e57420f8d66a33b288f809cdb59d0f1fc3195b3b
MD5 a29165bdb8cd7fd9a5abe9869793c234
BLAKE2b-256 050af3a4f5f19e05d53c70c5873cf3b368ac8a2c9845e99884626b0edb8b3a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 df1d5f6aae396d349c6d5f79eb15e0811f8d22b17b250c5c8f67b15e162bb76f
MD5 cc12bdab12a83b9e8c685135356d8c68
BLAKE2b-256 fe996b7eaa9ecb9a2c0c0a4ad9f53cbfd2f0d4e0d633c3534c5e3246794f1f0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 a9cde1e2250bdba40d7547d464227c21ed514fc868967c77efd7736e6a076bdc
MD5 e9bc055e25c360db7755607008d09808
BLAKE2b-256 0f445f425cbb7214d71d88f31821f2d061c4eb8bdf50b486082d87de8e501391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 d7eba558999bb36c647f6c74550ecfa7ec68a9b20a3299103e299b0a65699583
MD5 5e295d49d8bbd57419b3f6ca08647c3a
BLAKE2b-256 1035fc61b0d0b624d6508e0e44c14164f6d2df6e71a09922c225690a4cc5a847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 6adac59a5498d371c3195d8fa463f7ce7257f4da19ad8db2fac266f6bc45558f
MD5 7460b74b81c9bcf23607868d8baef276
BLAKE2b-256 8f96498adeffeb4e49145a37fca59d66306b6aa9cbcaadaa49aff761ade03066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 eb4b69bc6ecb6a45f9ddb617c9d9666485c8c6860b7a27b46e2403ab279b7d5c
MD5 9c132962ef3732f928b0f40ca91ff677
BLAKE2b-256 0fbd249bdb6b4c8acd58614dd51ecf3f28d06c1e4dd994ad12fb4492859c398e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.2-win32.egg
Algorithm Hash digest
SHA256 80be32b605961e37b7bcbaeef445b6f7ee83b307b91ed7e4ac57d74daa77b65a
MD5 bfa094777ab91843c623149298f8ae1b
BLAKE2b-256 0016228064a8a9176eef9e3891e6d71e33415ddf9893ae8d92ad3a6ea7df66b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 9af135092777585ff14356669f65f8e3d82f9d833c180b0a13e0f94512d7ed14
MD5 2a2c096664e0d6e80690ea159ace0140
BLAKE2b-256 24947ef5edd213f9c7fd3cfe213fa8489f3e524f76acf2e4d6ca2133041ab692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 8704c93870663ceab88803dafc18ebb147ff4896276e64a70cdd8f56eab6ca5d
MD5 3e8f5603e9eb28aaeb3e25bd3ca7c91b
BLAKE2b-256 bc5d4a7f7199ef7afc43af21bcca7a0fd8cbc4fb016d2cf45046d0511aeca040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 d512efb3b3a33c9f1be584173a89d93f3ce2c639e6e0f92f50cee1c018ea22a1
MD5 5d77ff5b33b61a30b53d4064866eb5cc
BLAKE2b-256 d151827d8bd9d4c87119edf267abc46cf57434d95e9123ad7686174578be87b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 320e0f9b0d6ac713d57e0cb897c0c0d482ed707fe218a1c54a4aaef1a454f51c
MD5 d57f66d756e858aeb1c81dde311db77a
BLAKE2b-256 9550844768a7ad029e48cabb44fe5499ad0ca4879f4f5a287713e7f65db8f2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 9681c0c285cf899d28ef7936c3069b084215122e585717790267b48428f5dc7e
MD5 611117c7a546ac015e38debc5388fee8
BLAKE2b-256 9d029a69c584aad4d369eae93eda3dd9632657f79903ebaff07e7d8cce54e67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 e19dea445809f271da38b816f882bde6aafc9a8a636d6d94404cccb6babd023e
MD5 9898368c8a80e0e5596822dd02f4fe78
BLAKE2b-256 e483ff92e5dacca3e539a0912a19583af96597a87c15051ed7b861ddc3ac0e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 16cbe59c8c4ee6fa17d1cd3f2aaa6bb346f295058fb4abec10d2d60e1724a4ff
MD5 8c5bd96d19535d898652794d569a3698
BLAKE2b-256 8d4383507ce7933001cfc532a9cd9fdd43a629c49d9c92dd829f2ff1823c953d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 a78a94143d5573898fac8b7ed5f940f0f7c51b3e6707c71e044928c617a96f78
MD5 483d5458776d829d604e636e78248cce
BLAKE2b-256 5b56feb6a2acf182af423e6b27d87e1e4a8c0698a1e2f5d2619e567664b81ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 db749521b68e1cd0bb970825f01b2cc197bb5e5a8e121bd31dfb959fd2a9309f
MD5 d912346cf7c299480a5291ade8c5cb23
BLAKE2b-256 88456bb39dcad5d7303defb5124c0bcb417b1f77f84a0c8dbdc2557b1e26813b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 acfc5d9972813d3d769f5482fe6b38230c680d343103f5a231b4c31863862315
MD5 6a88bb052244efd2a7448aa982fd18c1
BLAKE2b-256 c662c7814574062282bc94f09626c2e6c6a4a278699dff26be1350310f9dabbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 af93140fa7bb6cc9bd6fbbce8224b0b4b6d2eb01a5639c6a270bd1be17a89e19
MD5 478c82a23e1c8ec6cd81406096aa1dc4
BLAKE2b-256 652963aadf4ab2c8dd8e3126c9fd2a383966c64e75262ba7cdd784d091c0530e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 28992e990c0434e3b7bc039f2a0ece161ea83931db675b7c3fe2f15a13f58efb
MD5 4d22015ac90fafbc150491911ab733fd
BLAKE2b-256 f05a6831a45a624f065aff2d14a2b155bf055bb89684e70ebe37ba487d1633d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 2a299afe28a25aeeac0b3f05f3965dc08656ff8f08a9b84b1ddbf119eaca0070
MD5 1eddb279193ccfd56aeca8dd6f9d4f07
BLAKE2b-256 28fcaefc70c116bb5c3573d5bbfc37267dded94503ce99c3d396c7a33fa52328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 2969299f133067004823ac874517fa2c91f6385d480e6a17675bf76876e80591
MD5 0ea7d4cc345363e81fc0fc140ef46a05
BLAKE2b-256 bfaafcf65a0d95eba3807dbcc94b93c4f92f9580770f0a9e3761b4b1e7ec6b6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp35-none-win32.whl
Algorithm Hash digest
SHA256 540a9b5d65e2dc44e60f07c4eb409a3580ede6c53d78dc8d55c9d334e7fe41af
MD5 30739da1451ec86da7cd9a9736de6e71
BLAKE2b-256 9daba5532188eb3be79a8a09ba113921b4c2222bab3c9845fe7272860819f600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3418f72e006a027518f868e27c755923bc1886e9deb024738c91edbe734e7681
MD5 362874b2cad284a83d31728cf4b935c1
BLAKE2b-256 25fdb15d41db4316b23d45ab58445b8bd47cbd3f5906c8f989d4e96476614f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 ca1b1972457f74bc08534099c95167cc0f4450db73acb7a5dcc17320702dcb47
MD5 6615de4ea4ab0a7a85345ee72f7004c0
BLAKE2b-256 43bb3382b679f1dcf8bd1b20fa1adfd61570223930f0efdf0b0a48f168e3aea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp34-none-win32.whl
Algorithm Hash digest
SHA256 ced200eec21f31c76b0b9e37f31be3d93396dd58bb52a428f1afd11f3ec0da0e
MD5 e376d409c641ed2af21a0412a4c6caa9
BLAKE2b-256 ffe0b5bc64ba1207ffe075b312a4a45c3aa4473443d36f48188164d4993dc893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 cc32210fdf7f3a2e361e7e14f808f689479d473ae8125f3b76be59a0bd9526ca
MD5 05f2d27ce422411875541f7622ed823b
BLAKE2b-256 c332f838c4f931d12acf5fa581bd056b9d2e54a43178273730b1162b06b682f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 985407d50b1e266dc7385fb5f612600dc42f488edf6739f3a9dcdde12c07ae93
MD5 a0569158b0046a0312c31f2d01e6e593
BLAKE2b-256 60ff4910924d2100843e0d4f368bfc0bb561f317bb04ff7332ade1e31692edb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp33-none-win32.whl
Algorithm Hash digest
SHA256 b1d0e377a71aac071965d8ac68af6942f62a1e422598ed08f5fdbaca1a981d68
MD5 d2a255ca6139f26676cd3f87e8ce21d7
BLAKE2b-256 b184c9921d5d864dc3138b92af4e78ebac9c81fc3eea5b977c4ac7457127c596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 25acdfd9d1a2f062d99766fb9c174a47cb159ad5eb76592b503cbf5fec3f3156
MD5 d07692e0e6318470a45f7a7f65f9f2db
BLAKE2b-256 fa98c682635d831d3e4da40c6846b9091138b312227861ec91fd3534e2e91dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 5d50c6be33d20a82d9abae85ea6607c7406b103f15d6a2c17fda2281812ea3e1
MD5 fb2f1fed2ad2ce6b768196a876996ea8
BLAKE2b-256 ac27759dbeaec4a1957fffc6595320494fee569293e269eb88d8b9cdf6f633cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp32-none-win32.whl
Algorithm Hash digest
SHA256 2763c774e7f7a8001cc9ce66f7acb37559132628b72609a99173468b467700fc
MD5 bef5609e30bd34c4a23bce248746a066
BLAKE2b-256 799b933913d4b3b13e571776811c8f789e7d3d275adda5e8f9d255c417da7328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 6e23398814e51fbf88bd2ad9072519ee400d69c71617260a2e4b52062e3fb5e9
MD5 3832b87af95222b2fddd4ab716bd652d
BLAKE2b-256 52d90ac69719a930db7d240cdef5d4043fc94f8a8676272a226d0522d910a68c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 d398ed1b8b02bb3ad8f0386b4ed1a49b4c8b1679e84fa76ced0dc09e80157a2d
MD5 21327e42c024806058074b1c6e649beb
BLAKE2b-256 4001ed119dcd2f7830b92b92b12031afdef5449e26b3e8ba9e3e00826cbb2ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp27-none-win32.whl
Algorithm Hash digest
SHA256 b5474194826e5bf1e4b2076c4df581c781fa17189dcbed5453e171c110c10802
MD5 52aaa16335e847f258ca39b55d3c1d0f
BLAKE2b-256 e91b3ead8e1c24e37b0c9247e2719d84a2b1fdb8407d1143bc37f78c8eb0477a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp27-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 95f601ff65b93b19fe9732429ccdc97528601fc46565cc9d996f648912f20dae
MD5 6103a9c72d4a7e0208b82a72f50c5269
BLAKE2b-256 ee8b7b56bbb28fdebac5db0389fa825d3c9a4a9ab66cb352dd0e9fd01657d3de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 cacd136daaf4e367010efd8112617cd1a7a4261da92a5e78c1e5a292170fe675
MD5 df59085fc54cca0230bed121ea928d38
BLAKE2b-256 d56650d01bba68b5857e444bf9a7da3cc096907743d5ef987fdd774dc9632e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 37849581c78ddb2904d521bd5baf2d32ec251435bc6b7da8e97353b07803c9c2
MD5 d8ea78518f0db28f2c69b40bfa7f7a65
BLAKE2b-256 d0d465e905f18885384c144faba84611776f98a32777676123368f93a648626b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 c9eef8db3a57c1ac47b573fc3d2ede4f9691c1282c8f6ee9ab23791979a3ee3b
MD5 512d2a99bb46ed5ae7a007df41bb963d
BLAKE2b-256 3c88a00e08cfa5bd9f48ebeeb36f660acbeef28a75355cc5c129e20874b85317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 dce418ccf287562e624f243e87d2892af12a65a9002579cfb4bcde1606c34cf2
MD5 22ddb8cff567af4cef6d59df0612efed
BLAKE2b-256 4c136e4a68faab6e656d9195775fe617a1078d088658790cf871478e01972b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp26-none-win32.whl
Algorithm Hash digest
SHA256 acaf71190df58b383b9cbce4f2450fdd5f8c92211880ef448430900fbcfa9e20
MD5 1802e8f6d764c5f61b8255cdc6804176
BLAKE2b-256 ffe390cb0ea4de0703ca997f3f8ecc94364410850b5eb237ef33462ee64348a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp26-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 32f9fcea5c072aeba61543bace8b6542b130e33ed90d880396fa80fc2ebde6dd
MD5 1898c4c867df10aff983431c2ee78572
BLAKE2b-256 335812cad5d98779e88471586d94f921037ead0ce881cb26945b345de67d1a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 ef911097ecf042bfdce61d5d8fb8b282d49a3760740bd89301258f991879b7d2
MD5 215b2dcdab06ea466fb334d831279887
BLAKE2b-256 b0229249ac1635c65012d9bc75c3017f190338caea7940521d7939a60f5391e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 e181c44ba0fe35d8fb76d36aa163eee7c829f86ae85f235f5ba5b74ae88ef9ac
MD5 65db8eeb68bf5a490f1f1e051ae97349
BLAKE2b-256 beb23800bc1e46bb3f98d6773653f1875b7668e1ddf76725b1386c6eb67c372b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.2.1-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 a5b00c22c3b5ca6524b299386acbdc8351df6f0ed549ef5278ae676fa48bff47
MD5 40b1e1d2f5a76aa5f3493ee48822ca05
BLAKE2b-256 9708dfb0c564ab2ab335b37f0bcb8542eebc715f00242ea37a227d9ece475a3a

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