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

This version

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

Uploaded Source

Built Distributions

pymongo-3.1.win-amd64-py3.5.exe (374.2 kB view details)

Uploaded Source

pymongo-3.1.win-amd64-py3.4.exe (457.3 kB view details)

Uploaded Source

pymongo-3.1.win-amd64-py3.3.exe (457.4 kB view details)

Uploaded Source

pymongo-3.1.win-amd64-py3.2.exe (459.8 kB view details)

Uploaded Source

pymongo-3.1.win-amd64-py2.7.exe (458.7 kB view details)

Uploaded Source

pymongo-3.1.win-amd64-py2.6.exe (459.3 kB view details)

Uploaded Source

pymongo-3.1.win32-py3.5.exe (362.2 kB view details)

Uploaded Source

pymongo-3.1.win32-py3.4.exe (423.5 kB view details)

Uploaded Source

pymongo-3.1.win32-py3.3.exe (423.6 kB view details)

Uploaded Source

pymongo-3.1.win32-py3.2.exe (428.6 kB view details)

Uploaded Source

pymongo-3.1.win32-py2.7.exe (428.4 kB view details)

Uploaded Source

pymongo-3.1.win32-py2.6.exe (428.9 kB view details)

Uploaded Source

pymongo-3.1-py3.5-win-amd64.egg (470.1 kB view details)

Uploaded Source

pymongo-3.1-py3.5-win32.egg (465.0 kB view details)

Uploaded Source

pymongo-3.1-py3.5-macosx-10.6-intel.egg (493.6 kB view details)

Uploaded Source

pymongo-3.1-py3.4-win-amd64.egg (468.0 kB view details)

Uploaded Source

pymongo-3.1-py3.4-win32.egg (465.2 kB view details)

Uploaded Source

pymongo-3.1-py3.4-macosx-10.6-intel.egg (494.3 kB view details)

Uploaded Source

pymongo-3.1-py3.3-win-amd64.egg (474.6 kB view details)

Uploaded Source

pymongo-3.1-py3.3-win32.egg (471.8 kB view details)

Uploaded Source

pymongo-3.1-py3.3-macosx-10.6-x86_64.egg (501.6 kB view details)

Uploaded Source

pymongo-3.1-py3.2-win-amd64.egg (465.8 kB view details)

Uploaded Source

pymongo-3.1-py3.2-win32.egg (462.5 kB view details)

Uploaded Source

pymongo-3.1-py3.2-macosx-10.6-x86_64.egg (492.5 kB view details)

Uploaded Source

pymongo-3.1-py2.7-win-amd64.egg (458.9 kB view details)

Uploaded Source

pymongo-3.1-py2.7-win32.egg (455.9 kB view details)

Uploaded Source

pymongo-3.1-py2.7-macosx-10.11-intel.egg (480.6 kB view details)

Uploaded Source

pymongo-3.1-py2.7-macosx-10.10-intel.egg (480.5 kB view details)

Uploaded Source

pymongo-3.1-py2.7-macosx-10.9-intel.egg (481.2 kB view details)

Uploaded Source

pymongo-3.1-py2.7-macosx-10.8-intel.egg (482.3 kB view details)

Uploaded Source

pymongo-3.1-py2.6-win-amd64.egg (461.1 kB view details)

Uploaded Source

pymongo-3.1-py2.6-win32.egg (458.1 kB view details)

Uploaded Source

pymongo-3.1-py2.6-macosx-10.11-intel.egg (482.2 kB view details)

Uploaded Source

pymongo-3.1-py2.6-macosx-10.10-intel.egg (482.2 kB view details)

Uploaded Source

pymongo-3.1-py2.6-macosx-10.9-intel.egg (482.8 kB view details)

Uploaded Source

pymongo-3.1-py2.6-macosx-10.8-intel.egg (483.9 kB view details)

Uploaded Source

pymongo-3.1-cp35-none-win_amd64.whl (235.0 kB view details)

Uploaded CPython 3.5 Windows x86-64

pymongo-3.1-cp35-none-win32.whl (230.1 kB view details)

Uploaded CPython 3.5 Windows x86

pymongo-3.1-cp35-cp35m-macosx_10_6_intel.whl (258.1 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.1-cp34-none-win_amd64.whl (232.0 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.1-cp34-none-win32.whl (229.4 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.1-cp34-cp34m-macosx_10_6_intel.whl (258.0 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.1-cp33-none-win_amd64.whl (232.1 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.1-cp33-none-win32.whl (229.5 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.1-cp33-cp33m-macosx_10_6_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.1-cp32-none-win_amd64.whl (232.4 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-3.1-cp32-none-win32.whl (229.4 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-3.1-cp32-cp32m-macosx_10_6_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-3.1-cp27-none-win_amd64.whl (231.9 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.1-cp27-none-win32.whl (229.2 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.1-cp27-none-macosx_10_11_intel.whl (253.0 kB view details)

Uploaded CPython 2.7 macOS 10.11+ intel

pymongo-3.1-cp27-none-macosx_10_10_intel.whl (252.9 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-3.1-cp27-none-macosx_10_9_intel.whl (253.6 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-3.1-cp27-none-macosx_10_8_intel.whl (254.7 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-3.1-cp26-none-win_amd64.whl (232.5 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.1-cp26-none-win32.whl (229.7 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-3.1-cp26-none-macosx_10_11_intel.whl (252.9 kB view details)

Uploaded CPython 2.6 macOS 10.11+ intel

pymongo-3.1-cp26-none-macosx_10_10_intel.whl (252.9 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-3.1-cp26-none-macosx_10_9_intel.whl (253.6 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-3.1-cp26-none-macosx_10_8_intel.whl (254.7 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.1.tar.gz
Algorithm Hash digest
SHA256 fe7033007100f825a67640e77abdafee28713f255da88fcfc8d6abad0bb34285
MD5 c554257dfb98e68aea46a6e3e9880ce8
BLAKE2b-256 662d61e9a37c95844e1ded69095f29ae779a8fda682567edd2a5990e37b0d927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 ce4bc2ca491563a5e67db2d361fb19d9d584608c889add0bb5f755a24acb9d7f
MD5 8d18eeae7657df491e64097779e6f787
BLAKE2b-256 415e79abe32d51af3666ca317dbef126a601ee5bb22c81e006ec3d3a05ddd4f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 a327eb1a4349b628ede1fad3fd45452ec8ebf880f8aebfbc4dcf2b41fa769d7e
MD5 23fad2d18b51360715b42c01db836f12
BLAKE2b-256 c5a0a147505e13c0cb55e2350b770e924c40125cb4f87baaf752645995fad20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 e2294c849981d590c24143291db5117614af0653d383099d6c1e142f459f4d4d
MD5 2d54541b41575ac04680072a2a1df4b4
BLAKE2b-256 528a0b54af03bb94e88ec80da431993829d768ead9d0a0df45386b32bf9f33e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 ed9f06230c659ce02fd803643af2925c44cee387483fd4750d007f17c41e539b
MD5 8a5188a75b6642795d5e6b938965447b
BLAKE2b-256 fc00aac756369437e4c30f70690f78cbd56eff38c5d759229dfc89016989dc51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 e2bb6ffb2769bb62b99b2bfdb839fc72edad30f398a64a33ea14211f8ee39edb
MD5 a6225a91ef0a544574fab8bca9579c49
BLAKE2b-256 c31e6c8c9130f26497116a2b9e9993149b5a028abd9f66626707a6726ac61865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 924576ed214a382c9acb812076f9ddfae90a5103f743014cbfbae590e632a023
MD5 65b69d87d06fbe43ab59a3ccbfe67dd1
BLAKE2b-256 892404bfaf902a0233792355c368fdaf04df55f753262523491d0bc9dc3116cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win32-py3.5.exe
Algorithm Hash digest
SHA256 b8eada0b216a07f3e1879d04cfd6692fb4fba17b63dcf83e9846e9e86220fb40
MD5 a23f9910fa996866a395d590383a826e
BLAKE2b-256 2a1745bfda303e78f93882bfabd3d700673272a9cdb2b5e8d48f36e61d348c71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win32-py3.4.exe
Algorithm Hash digest
SHA256 b8d078ee19f4055ce4e047f47147f00ffa4b118e70202bef6978ce038eb1c2f7
MD5 c267c897f1c1511345e16cd3a646853b
BLAKE2b-256 bbc9a82b003fab28214a2867067b83969a27f8b0645d067e91bdbfb6d2b1b2d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 a4f17f0c6ea69ec63d43c489be7f83a5ccd9ce6c8dba41e181d80b4c9f3d2e1d
MD5 6540916b4b3befdb8fb93fb2a7cf5cea
BLAKE2b-256 7d97c0546a691796b8354ed5a27020560414e82a61cdc8dce6cd458a46bc2987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win32-py3.2.exe
Algorithm Hash digest
SHA256 144a42001cdab98d1ed66ca30882b0e60a94e0906668d9739bda57705940c034
MD5 04ae5061a14679a87104e307f33af29b
BLAKE2b-256 97759645100b56ceaf20ee88bf7435d640f75aba83d3e9a55fd64be76882b9ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 70a50fe4a8be7c921ad745935fa566613791e0454bbde39821fe705f55ff5015
MD5 f5e44ba29cb841c1fc26a211055c9942
BLAKE2b-256 e81e09233b305323364ec13d7f0d6cd0cea93992aec2505db49a6882367d068c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1.win32-py2.6.exe
Algorithm Hash digest
SHA256 60429a67e7cd2609d73295c5acecfbb5617da80bb92ed7fbe7db6b54c3658eac
MD5 088d1c8a33342cff6043a7b01062dc6b
BLAKE2b-256 76a242d7388e76eff56f5c9a1c5b346600bdcd08ed7c8ef6f0361d8a222b1eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 39714885c3341f12de2f829224dd5c36ca937b962609f838f61b027a94705bea
MD5 3069adbf18acbe9215fd126fe2e01dc7
BLAKE2b-256 6fa28a6dcad2b6386493871183cf5752770bf4145d7ac4844e8cee3df081f6b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.5-win32.egg
Algorithm Hash digest
SHA256 5854353c4268dd3f06874cf17dd11a603785aeb31552aac7726a691a8a3b24b7
MD5 4d9a5bc92b615b1dc14c1e1b80863210
BLAKE2b-256 c90fe0df93a0522403120475b8dd0b9bcd8e03e14af54f186d30daa604b4d5b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 85f99e7761bd435ed39884cc138c26fc082cbf41a89bc305f1d870589d29dfc6
MD5 7011c8f6c325514889e1b6826992c6c7
BLAKE2b-256 7061f1009467703b313b70ea20ee699057354448e9f3d9063f47878081a4bc66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 5eeb53aab7ac8eb0e62f90941a50e94d0a565a3d8ed21ca2c0583ba6744b90b9
MD5 debc48b04ac91b0900cb1b29e8131b80
BLAKE2b-256 fe51151d1ff32c7c3eecaee018572375b6ae44f66fba0455862bce5ac176b30b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 7db120319873bbd5d5cc8d3753e9bb434a349cc59069c14e7ee01c7e5b6b2598
MD5 4dc7a04bfa8b48fffd4bf66554b622f2
BLAKE2b-256 961d21b02a861053a5677093803568f0119cb3f96b476520857e901a462eddd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 d5444ff784c047b040d826f44489003ec445e4b3c732a896453761fd92f06192
MD5 7f30291ff5694c8a6fa6abf7df450ead
BLAKE2b-256 977ab56e17dc50da327222f10b380376b29d515d0d4bde46e9dc199f8a55c15c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 4d022fbc39cfb8c8653f4414ebd5403abd2f0b5941b3b518fd9150ab0810f194
MD5 5271c2a4cd67d7dc1d42eb9091c5340c
BLAKE2b-256 4ca9067fcce65c09852e207dcfde70e0fa3f23b21858401080c54cf64e96577c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 b68da8757f47e81ff3cab93eaba179c901f45642e21c9cad9aed4c1c89f5c38b
MD5 9c337fe3f3fc9089c1938d7e3dd5aeeb
BLAKE2b-256 777de02f3cd823de50bfd40e6eb2992a88a63ab3082fba11a4a367259b1acd30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 91bcfe086e2b34b940743944b910cdc915f62ef93d323ebcd2e866d026edc0ef
MD5 0114ccdf58e387ce7c29908b57ce09be
BLAKE2b-256 5fd08e9cdd5cf9e7541716db36057f9d45823321c38e951ed69a34623b6c3e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 a92709d2594ef8201099135a1e6ba350a56df1065ed4565d119a4a94b50a238d
MD5 4ec5febd5ef30e0feb941dc92fb03445
BLAKE2b-256 d0c13db21315ae6cdb5295571f54f69c919d3d5479378e6e197a8e48401e3626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.2-win32.egg
Algorithm Hash digest
SHA256 5787378d02c580939640893ee4dcab124793dae22da6eb8d79af1af2bf7422d0
MD5 ba0d29f411136502239bf025af01c199
BLAKE2b-256 176455ad84e1b0baa4aafe419d0b85bfe7d9581c6d7a28e092145318f437288b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 5a1df34e71ecb686f5a21ccb63e79ae6c36c936005ad1ec3fcb749a721ba2ae5
MD5 d65c3581cbd4886dd6d69c526eec0ecf
BLAKE2b-256 e463db39ffd4bf819bc7b7c52bce8b4b9e4853e939d881f2b2fe80b9587c8215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 f74e7b7dca1e2dc6d27667176ef136118b2d10f0bef823000edf4efd2357abe5
MD5 8d79591f59b7f210acf0b4417e31a4c3
BLAKE2b-256 39b25512f60915332079be71acbb7e7d9ac33c8ef6b3b169d00b254ef8c31214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 a4e0cffd542da8e159d2b9344abeed2b11a6ff3614d9000b19cccf683bf3e4ae
MD5 f7468c26ced0059ab087254856c044d7
BLAKE2b-256 2237661a803f81c61c923174319409576fab932d1f0e24d35597c6df5aae8d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 e853237acdc7ba1e3e1aeb39a9d0fe8adbfe6f83b6002a24fa23dc2836bcf641
MD5 2576c46b5e1399d4800efcad68c5a7ad
BLAKE2b-256 043d6b51704c508a6c0320ffb27fa8923ce456f085336930b1df18da36123d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 40d6960c9c57c53172bbbcdb83c6eb2133934fa52e72d30010a32ef1eae836c4
MD5 84f0afeb75a64b676002221834313028
BLAKE2b-256 f71250825cb380ca255819620de0059a5544237721faa2d3b282af270bebbbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 1b8bfd6626d43865215b8893df8777e965c8355dbad5d0dc6d982d3c891fb03f
MD5 6c35b5163569d0bfad6e945d46dfe84d
BLAKE2b-256 ca985d7730b986e190430c19f7815b3a4a41bae3e941f6011f952140d3017b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 fd1aa980598eb77d4fd2d768ba9de233c72c5e28d8a4eded070421ee882a2b4c
MD5 77b255f014c482d93702ff3eff44057f
BLAKE2b-256 a9f05d95968070a392c44e4e944f95dea5c070c4e2979660eae47227e8dc3041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 b0c0b3cb15f95387c1ee57b01cfced0bb52ce523689e473b272c69c6921babd3
MD5 84a54a2a9cd0ebd3e5709e1299f996a6
BLAKE2b-256 77da73098d70ab230c2ba0cbb7df4fdc57c388a89204b7c6c4b5f73721acb9b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 3fa846a03f9921220a44af4ea576bd0b4dbe416f7dd979ec4c686a767f948a70
MD5 53b96e63b63db7a7e185d54433bcb0b6
BLAKE2b-256 f709f12087b9c4cd0008d98fe22893e4904fe446d2c80444ee64e1199a8de799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 f71ed64a8a7a47dd2f367a00c27d2c804664afa3ae8deb7c9ee8390400a18e8e
MD5 2f06cb5c06cc534936d5775313c48385
BLAKE2b-256 eb31adb065243634b3c8f843c3fa348a53e53eab3fb833f77be2a290390132d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 d01eb08807dcdc15c481c79c4c2ad6e310044a5bdcfb176eca47f150a0cf7d6f
MD5 336a8c87024cd921aa3ad828e5b72195
BLAKE2b-256 c8856926020f069e8cf894cd54a7c10dbbdf2b579028460590398c01a3e6decd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 6e7567f02908251dcc329578ba2693f87c41e693f33565b9ade6ddd7960dd9ca
MD5 d466074b45fc92dd1b8b20cd7345fc3d
BLAKE2b-256 8c413e24ccc431b2d2a772e836a2c7aff48e7a6c872e730e77477b359998d587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 e41970c3b3fa19275ba00169766d6c3c12046d4f93dc96f511e087b68858aa00
MD5 b21a9aee2d43dbaaf2c61b130098de28
BLAKE2b-256 4e84134738c3283ad9ff95032fd57680cace059e81743a18bacaf362cb4d4473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 8664ff54e6f02127198174ce49c8b0821d54ccb3ed52a7c629b614769d738cee
MD5 3cac8e29e722b343c02a22ad57608714
BLAKE2b-256 84c564ce0c0c721736fd9b7baadac2b48d037f5f6bdfd16043dca8923967a01a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp35-none-win32.whl
Algorithm Hash digest
SHA256 63519ce6364265cb271dedc689c1f66d0ea6f6c26781c26db4b3169cddbbd946
MD5 3645220c817940593d1e6519fae2d0ca
BLAKE2b-256 39499b50b8856a7fb3fec8ab07186e3fbda71740d5a3deb8103f96d589abde5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1beb4c708c1e804f0f0380d4ec674b0a008ea465883c7ce91e4d41ae007db37b
MD5 c3d941eb460fb86228ef108155d67d96
BLAKE2b-256 b8a4d3dc7c860e11a41d1439b784967c1002278a712f358f7613d02be35d1f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 1bc7667a85fe605c0fa2ead36cc9afd1df77570b035e9b293e42a7896af3a131
MD5 a1583bec61ee9944fa3241e5167682f2
BLAKE2b-256 f8f90c8067bf4b76b1d05a2b7c0297f6f8a5832973d9081d835354647149e39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp34-none-win32.whl
Algorithm Hash digest
SHA256 2d6860d1b58b5aaae5e111bc07adc45f10ee19be3dbe6c0850c80c75db3ff02b
MD5 bc688710f09cf2328790aeca9469f36c
BLAKE2b-256 0a9e447b33c03ed5c44da0f69432f6c99eec08d109565caa47a636db9ca52842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f6f55fd854605982c0d3ce6f84031f36b2eb550dc2ef7b735ab5612fe873ac1e
MD5 05edd3e33b24f40b192a294cafc1f1af
BLAKE2b-256 525d46998e4e516e6c331d6cf7f0630cc8ec054c1b4661bdeda021c4ede42f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 d516c1c23af46e641779b2d8a8aa1abcf24192b50ba09bcbf5578d9b16aa4f21
MD5 516776ef1f013a25b4026e70cf6c1762
BLAKE2b-256 38962e2acb95119d8a74f773d70d242ba47044c780ac1c76b2633ebd5d8295ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp33-none-win32.whl
Algorithm Hash digest
SHA256 ac0c385cedccd481c23fd715868794cc93ba0f1aee6fd830401a08fe647893be
MD5 19cba5f1cfc414529fea8411b45c24dd
BLAKE2b-256 7f0582240973d4eabe6988abe3d18e2e7febc5004f4aee53d2ea50c527dbaeb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 95b96ae6f6c3b21ccc4c88904e2fa70b0fe1b19816a7c1b6d26973698a4b1436
MD5 5664a0a48ac7dd1da237cae77a1ef456
BLAKE2b-256 fa248b333ceb6b0c9f669b82e7ba2984a1d7787472683f0b7f428e3a73005e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 209d6d9affd48ca29e155589fa8bf29b3653be95733fd1d3502cb9a4b2766dac
MD5 b2562487a9da1604811bdcaf2b6c7285
BLAKE2b-256 61bc83a75b73bcf89fa0a948583d7e672db2d05ce98c0bd715f877e77ecbd953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp32-none-win32.whl
Algorithm Hash digest
SHA256 8739623fbdcf31f4603e0ce224889ebcee076b6657f8111ec2ce38af069e9a68
MD5 cb79fa95888a67c562e8d31f81e969e7
BLAKE2b-256 1dcc7a7666f75e722d10ae6f0d0e944db6eca021ceacf62a7ca15b10d9a1db5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 29bb6aa5ddbb48f7f2ea9832465e3e8bbcff0acc89f82af4a249218725c54a8e
MD5 7c3bcde8cfb6874f9380d97a7afa7351
BLAKE2b-256 30ba6c41915d91938f1fa6285bda3a648c88414a3787b824b67cbdd84e70cf9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5a0aad5dd3d194fe4d7c5bbd74d5d821d470c82be7ba6323f8d1d902562cb70
MD5 da5ffd7f78c51bb70fbe22308b0a57ac
BLAKE2b-256 2b669913fbb2d262a3acd3a900a11a50d330598e131537dc601c8b768fad2cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp27-none-win32.whl
Algorithm Hash digest
SHA256 09cd92c62afc68bb0c0fd655a018952ad481525004a7f58c5f14c1b23aec80aa
MD5 ee0282daefefb5feab6288ae5acb5ce2
BLAKE2b-256 b06b940292f870d184987bf1e80b52a63c000bef214cde199d80ae14d9b58b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp27-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 31d354441859150b45ad116678fd3265266eff25bc94b18622655e2d655ff6f8
MD5 c93a9b2561abeadaf1d0047aba99e1b0
BLAKE2b-256 7aae871b0a257bba882e4255517364c2c95717f5369fecce1c8b642d097d6450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 3d4c8a745a55dd077c36b2bd5eed8f8da492722587754e232134e2d4f707cf94
MD5 a69799c4a54ce507b8c8dafe8f6039ef
BLAKE2b-256 b5235989029edc46ddddaae765c68836f3500542e9fd61b9af35048fab1f4940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 6731e6b8b41d2b716aabd2ee7652cc035af1db2787bbd42346bdf9f0da557d45
MD5 6082d8877920ffb3b5e3202e2c039309
BLAKE2b-256 1159546c6b4c578c88fd96bad1749b601f24d8b8b7cbdffb7f089dff0086ec37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 b7dd18f38ad0b6791f040a31c5a48ecfe9c2b2cac39fd8404f99a10726fec39b
MD5 7b47d683c6bed07388d7e0a49716ef7a
BLAKE2b-256 beb163c27b55e6e71453ce25fcda5708da60a51f813ac276beb5e01f3030822f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a241717ccb4f871a705a116771c2afb0f09ebcd1579ce3bc7feb1918d2bc544
MD5 9e12305ffa8b79cbb8a0b82f765fd7af
BLAKE2b-256 55bf5bad9165dc0da3433ee85345c72209e4457193900b3fd079eec3660ebb5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp26-none-win32.whl
Algorithm Hash digest
SHA256 91f40632871253bdafdd7c536e4b425c083bcb08a4138d348d69c2a17c749690
MD5 f062ad6ca93c2c86d52f68272b8da77f
BLAKE2b-256 f4abc803534ef9a7d18edeb87a8f7332c48d321e70b06eaab5025e0a3bf3d292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp26-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 9c326e74724d63880291a95d044c2d2dae4e072e69dc518000826b0f1be1590a
MD5 7d509d5875f1b9ffb241454555e45041
BLAKE2b-256 6499f8835150517fc60590ca9adcbcb1510dcf38187b75f615b04cd0bbbfbd1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 561b927cfc9430c0664e1b7c24a6221cde740c78d92680099fcbb978fb22704f
MD5 b6c656077a6fa0e735e512d044d844b6
BLAKE2b-256 1302c3e319de6ea6d34ecae4e7ded38965ed973063b5e7f96d55dee3640d4e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 a0c539f93dbeb3f75bdbf45ff72d34c7da8f6abf402ee78c394c7df76d596122
MD5 1ddda9e16cd527dac8e8ff2827ee599f
BLAKE2b-256 cb5e8e8e613b780f853f4436cefc9b81dbb30518adbf6671043daf4902fb6c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.1-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 0052b36d60579195bbe1b5c472a6c25a664a4f8578043623fe14210f3e27c396
MD5 44569d9aba3c7af6a2875cfa72265610
BLAKE2b-256 ed1b6adfe19de2f4f1c3093b0d6fc69d7d01a175ef56426aa087b90941f4ab87

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