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+.

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.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongo-3.0.tar.gz (375.5 kB view details)

Uploaded Source

Built Distributions

pymongo-3.0.win-amd64-py3.4.exe (440.5 kB view details)

Uploaded Source

pymongo-3.0.win-amd64-py3.3.exe (440.6 kB view details)

Uploaded Source

pymongo-3.0.win-amd64-py3.2.exe (442.9 kB view details)

Uploaded Source

pymongo-3.0.win-amd64-py2.7.exe (441.9 kB view details)

Uploaded Source

pymongo-3.0.win-amd64-py2.6.exe (442.5 kB view details)

Uploaded Source

pymongo-3.0.win32-py3.4.exe (406.9 kB view details)

Uploaded Source

pymongo-3.0.win32-py3.3.exe (407.0 kB view details)

Uploaded Source

pymongo-3.0.win32-py3.2.exe (412.0 kB view details)

Uploaded Source

pymongo-3.0.win32-py2.7.exe (411.8 kB view details)

Uploaded Source

pymongo-3.0.win32-py2.6.exe (412.3 kB view details)

Uploaded Source

pymongo-3.0-py3.4-win-amd64.egg (432.2 kB view details)

Uploaded Source

pymongo-3.0-py3.4-win32.egg (429.7 kB view details)

Uploaded Source

pymongo-3.0-py3.4-macosx-10.6-intel.egg (459.2 kB view details)

Uploaded Source

pymongo-3.0-py3.3-win-amd64.egg (438.5 kB view details)

Uploaded Source

pymongo-3.0-py3.3-win32.egg (435.8 kB view details)

Uploaded Source

pymongo-3.0-py3.3-macosx-10.6-x86_64.egg (465.9 kB view details)

Uploaded Source

pymongo-3.0-py3.2-win-amd64.egg (430.3 kB view details)

Uploaded Source

pymongo-3.0-py3.2-win32.egg (427.2 kB view details)

Uploaded Source

pymongo-3.0-py3.2-macosx-10.6-x86_64.egg (457.5 kB view details)

Uploaded Source

pymongo-3.0-py2.7-win-amd64.egg (423.6 kB view details)

Uploaded Source

pymongo-3.0-py2.7-win32.egg (420.8 kB view details)

Uploaded Source

pymongo-3.0-py2.7-macosx-10.10-intel.egg (445.4 kB view details)

Uploaded Source

pymongo-3.0-py2.7-macosx-10.9-intel.egg (445.4 kB view details)

Uploaded Source

pymongo-3.0-py2.7-macosx-10.8-intel.egg (446.4 kB view details)

Uploaded Source

pymongo-3.0-py2.6-win-amd64.egg (425.7 kB view details)

Uploaded Source

pymongo-3.0-py2.6-win32.egg (422.9 kB view details)

Uploaded Source

pymongo-3.0-py2.6-macosx-10.10-intel.egg (446.9 kB view details)

Uploaded Source

pymongo-3.0-py2.6-macosx-10.9-intel.egg (447.0 kB view details)

Uploaded Source

pymongo-3.0-py2.6-macosx-10.8-intel.egg (448.0 kB view details)

Uploaded Source

pymongo-3.0-cp34-none-win_amd64.whl (215.8 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.0-cp34-none-win32.whl (213.4 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.0-cp34-cp34m-macosx_10_6_intel.whl (242.4 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.0-cp33-none-win_amd64.whl (215.9 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.0-cp33-none-win32.whl (213.5 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.0-cp33-cp33m-macosx_10_6_x86_64.whl (242.6 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.0-cp32-none-win_amd64.whl (216.1 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-3.0-cp32-none-win32.whl (213.4 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-3.0-cp32-cp32m-macosx_10_6_x86_64.whl (242.7 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-3.0-cp27-none-win_amd64.whl (215.7 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.0-cp27-none-win32.whl (213.2 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.0-cp27-none-macosx_10_10_intel.whl (236.8 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-3.0-cp27-none-macosx_10_9_intel.whl (237.0 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-3.0-cp27-none-macosx_10_8_intel.whl (238.0 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-3.0-cp26-none-win_amd64.whl (216.3 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.0-cp26-none-win32.whl (213.7 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-3.0-cp26-none-macosx_10_10_intel.whl (236.8 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-3.0-cp26-none-macosx_10_9_intel.whl (237.0 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-3.0-cp26-none-macosx_10_8_intel.whl (238.0 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.0.tar.gz
Algorithm Hash digest
SHA256 1919bed7ad5d73940a6628b7420d326128dc68f3f67d4158abacff8b72a4eaa7
MD5 2e7c8228ea1107fa9086bf13486c4060
BLAKE2b-256 72f04a0a2088b110dab0bbb211778c5d101624ba6e6250686a5a1cf9a8e76311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 d28bf2ef79db9d54d6a77fcaef358cc6f340c0e3a6d1d896d017c826f8fb1744
MD5 7343d9e9b0c18400e52b7da17623e52c
BLAKE2b-256 fb0782ef3abc20cab9679225faceeaafa5c913ea069c800339ae539191e85089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 8d69a3b7e8858684ba93c786458d7125fff29e50afa9b21dde0f5a11de3abbaf
MD5 193e1f5a006344c59d70879f6dd3ca4f
BLAKE2b-256 a1047d22c18c0be08eaedd240e2fb65fd806ea2b82b47e32d4bd1b5eff9be696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 6fd0991ac7459e69818f5d25b9312de51b3c949a5de60b01f2bbb7f5e5013bb6
MD5 d7a7f83302b3f5771d693fa2146dbff1
BLAKE2b-256 108d128cca2892f0ceebde15a549f8b95097268812b4c7440e76d7bf80cea48b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 2b29c7a98220a3a8f7414cbe8fa74708a9f9ea7cc9871917a33c6fad525ddb10
MD5 89005686edfb00f924e1f92d77d3ad1f
BLAKE2b-256 a02626191d077b33c2a1a453630cab9e11add28377d57bf2566324ce592c7c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 43f7e2a8935d970a860f4081a0c2f4d8cadd3baea19346ba4f6c6f8bcbdd4bbc
MD5 054e99d515e30c4ec48f90eb12956e8d
BLAKE2b-256 911eef1a5fe0c53af8a305e72bbc8b2b813b23e02b2abc730a562e0bd83efdcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win32-py3.4.exe
Algorithm Hash digest
SHA256 789747380e52bd4ba68306292b776acbcb28b61591d2b844f7e8f92b5b740ed3
MD5 82d22e61f7830bb9e72ca09d4bc846a7
BLAKE2b-256 b446384851b437414c1df746a8010b3b2d412ea74e99714fb8fb6a167b9c12d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win32-py3.3.exe
Algorithm Hash digest
SHA256 7c651942dcfecfc00c2936936aa6748a6111d949c9ef8f4fd7a5468798d16ec4
MD5 c7eb4aa9fb7b252db43eb4b47c4ff82d
BLAKE2b-256 3e096363b16c915c37f6b1d8c9a9a53f2aacc7c407d98a3e5c15e98b48cc7cb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win32-py3.2.exe
Algorithm Hash digest
SHA256 8c1001c1bca2bbfadccaea1d535689d0c07c0819dd967a4c695e77be43122944
MD5 53cef8cd1ca353c79ab5ead622f7e7d6
BLAKE2b-256 98c8a6366e0dc218baa1cee5b8bc0559f361613bf87e14e55016fa14920fd550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win32-py2.7.exe
Algorithm Hash digest
SHA256 9f6bf4737ddd8c766686228179fb8b5c4d1c4fc4fc1aef7c6367bf7cca61008f
MD5 70f84d589151540496f79c6d125de2e0
BLAKE2b-256 70984c29ccb1ae0846184bc016bdb6409e1355246b95360018fb72ec096f10fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.win32-py2.6.exe
Algorithm Hash digest
SHA256 a06e876e6f55e0f3edddf6d4b4a5e2e4d6d28acaf0c232700938873208f2655b
MD5 3b61b78a58975871b3bfb4d28ebb9892
BLAKE2b-256 f1b15c2d99198ed2bbc4ffff5e939525b89e7631424602d6bb2ae7b693195a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 42609ca8a124a54d1558f78d1300faf5f08c08ad28b6cde6d754c306a10cb093
MD5 994619194b4e94bf8b887991c0218b4f
BLAKE2b-256 bd76af81ac626ced38da21051d10913bbb755bd8b12dd141b5e6329ccd1ce42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.4-win32.egg
Algorithm Hash digest
SHA256 006107908e3f861c056ba1bbe5e478b75c454c293940678cae40bfd4ef6ce6e1
MD5 c2c9544fd21ad74d2e488d55259cbc1f
BLAKE2b-256 8e895b45734c10aeb7fc0228e04ea6969da9310aeffaf7b865633a45eaefade3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 293dde1f89e50ea9b1216a6e5e6c83492bfc368556921baf3abd537238833759
MD5 b9d2e15c7629d38dd879478c4cc3fcdb
BLAKE2b-256 904b7e27f80c841553ea7ea0230a1f2babc2db4250aa76be7f9a14c683f9baa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 af7f3c796449bbc2fcaaecdc9503c1a170864c7a1c47061cae856f7a81f138d0
MD5 42eb2846095482dd2e5f2612831bad56
BLAKE2b-256 947de32f947d8dca99b576808576696fb5cfc437a2c301a657614e435fef6046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.3-win32.egg
Algorithm Hash digest
SHA256 e27fe3e55f15632d1705460a898492f83ecf03c88762119851d8409f4708b2ef
MD5 7af0df538e82165e4b6b17ec5a153c03
BLAKE2b-256 7c7b6b9fd042bb0cf576dbe4c17ea435ea5ce654effa0dcfeb9bb6127eb5675a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 c8374699751a94e870bb4b21f5c542ae10c342c377de2a33299dfc9ab62a3f02
MD5 bcfccf25cf3da5057521d8cf247a7b9a
BLAKE2b-256 32b6c470457ab7b26dce931244a9c85c38fb98e99d0750890eac9e844711973e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 a3abf5c6af7e2ca09d665dde17235ac347b974adf80a8f2a9495da6a533f2498
MD5 a3187555ccc51b13dbf21cfd6875b3b5
BLAKE2b-256 e9b0a62631ff6ae4cc0b17d2ebc64cc0fe4e98fa4e1cabc307a9dc87a7f4dace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.2-win32.egg
Algorithm Hash digest
SHA256 6afffacc723c587a5298906f868510236d616d125726d19ced1d76259741aadf
MD5 59e4721c970d14d7afe879d9c3e0f312
BLAKE2b-256 6d93b69006bc5e00e230d940e8c8c0411ce0666dfcf4a62d4ef208b045f0d7ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 d72ffd4e7b51aea021d6b07eba8dbb9f886ce90f23f5a83b4e807733b961d83f
MD5 2546ef8cc26e1446b5e93a4650cac10f
BLAKE2b-256 ed28934055618ca2d8c36332e9d6216c51e67a836348be778402c9637bb0b7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 e13506d148ce31718c85daad77196182e25e4a7c3aed2bbaa79a301aeb1a5217
MD5 79bb7799d4959f5ebc4d32f34734dcde
BLAKE2b-256 98b378ceb00df9a83d7474f6c48a50cc36df481be45ae5a03442506fa9d28be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 705f48c861e69a807d55c22b1edb4a6fea9a2975493ebe276012458e9d3a14a6
MD5 196cf82e0f27a57c0d9e994d8cd98a24
BLAKE2b-256 948fde90422530ab49638189171861c1b9a700bb7f4d2b31ae44eb41f98e2621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 4e249bc7677b7bf2b01989a529d8599da758877950f47a17526e530cfa60e086
MD5 64ebd67327a5ea2178c1c93f40172b2d
BLAKE2b-256 102849a06dc85d4078d8e31d114a103eea47de65f2cf45dc4587c4ef24e961f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 63ef7b1926e47ad41e743c65d83beef850c294ce7abe8abe5fc8004da216b47b
MD5 1ea2b4022a2465d3278ab303cc45d325
BLAKE2b-256 33e5225dc1b452b7a5a7e2586a02f4ab9cec3f807856c1e438767800d9aa3291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 d6c69edcdc91c644ff0fb7be8e4cab6a230c1ecd9e303ef6e5454791782f646d
MD5 cd7ea32edeb32f73df95650f57bf17e6
BLAKE2b-256 ad1f1081e44bb1811b22df7c55b0b07aa9e6713b85b23c9493a18c0d8fef43d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 111102f3ac5c8a3c14f2dc2f9d5227fe4bd449215a1ad35025c41586abe122f1
MD5 c1f598eb41097c792ac3cada3e76659b
BLAKE2b-256 de4b0bf8e3b7daa2de54c606818ea58f2c3782397087aa3ca9df35c8e7999655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.6-win32.egg
Algorithm Hash digest
SHA256 0e8807b1c3c9e9cc3c45dc275c2e3d5a79c87ae17f34c12643f8439816907596
MD5 e905563f56958ef76c3b8a50640cf132
BLAKE2b-256 b263fcf4093b240c5debc392835fa6a08ca4a9b004e2ab24e9a8f18f06de153b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 ce0039132f208a4ec954eb56586cc630bfe340e0f719883990741725b2fb56d1
MD5 5f7277d4fb978b6a3199fd58cbb8c7af
BLAKE2b-256 23a407fd6542603af227c92ea6be7451e1b682a1b8c592e21f688655c0db3b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 429b9dc7c221543fb701ebcacd6fe4aa438e14e3fc0898a9213b1a2f24be15ac
MD5 da2311dd26bd4ed5e411c058d6eaa27a
BLAKE2b-256 39bd1709256401fd89717cdaa72ec078c8bfb8ec0f74766d7c886c8a47760ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 06aa6fc9483e7badb28753add12f54c22d875d7415624e0ead09be025665478d
MD5 983290e3e81e6b1607f72a44a3e4149b
BLAKE2b-256 ec04bfc1297450b3ec3f26229f49af11d3d61924578135dc423ebd9301de5dbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 2ba248be488daaf830cbf0843d3e8b364f875aa9917d6fccf108a29224b8a73a
MD5 7e2d29dcf831e233c764f27db09e1432
BLAKE2b-256 7612a65ce5ee614a6785f22951b3aca01cb47a1d1d77556f4b2278baf9ebcd94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp34-none-win32.whl
Algorithm Hash digest
SHA256 372099c411947b5e3f254e28a0fd40664f0d884cd03398cf53d906436420abc4
MD5 e5c645c42dd3ff280c4f9228fecb02b9
BLAKE2b-256 ec32341897db14a2297f9f38ef585a2cd875e9c015ab8124130899142d9e9e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 66d68747de05b9d766a2d493f5231a76cff1b58540ac780bbfdecf66563d5f8e
MD5 dd6924854e1a32ae26e62134fedd50e8
BLAKE2b-256 5afa183193f4da77c28bf6da799c215acf5491caeebd2c443030174c26e3a4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 531e8694359a481386c105711bc5c876c377a5a4c6e7f0b2705fcf13703925bb
MD5 19bf71e36e38da081bfcf47db8d84fb3
BLAKE2b-256 15d6eb908947fc06d6ffd7b7fd3b7dcccbd641be9a4cc9049e3f9dce19950358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp33-none-win32.whl
Algorithm Hash digest
SHA256 fd3260571501d5e25be7df1e55409c14d5f002d6d871a79067f3f6858177f743
MD5 0e896a9e57522be33706f2ed45d13928
BLAKE2b-256 be41784289542f3e5dcafede039d136f244153b41f9d76d84865b60bba938bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 691504a0d514e30629d21fa744c097445b7728e276484eec8c9f44b17fbdb767
MD5 e46731444bef35dda2bacfe9e8c0b297
BLAKE2b-256 43ce682e9a4c00d7f8eae8645542175f2b9d3f940f5c76c46386f67b7d271062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 d3f3aacc5a386a47b3bd55e685aab0d5142cd6dbadd931eacbf120ed0fdfc604
MD5 82fb6589df9eac045d1d4cadf20725a2
BLAKE2b-256 4dc20ab84444d499f4b72ba4df8aa7d1081e7e08ddb5a664acab7b0163ac6080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp32-none-win32.whl
Algorithm Hash digest
SHA256 a7178537b5344891ea22a9d7bf1ffdd0d965663dc7731b6ac4286e3292388b97
MD5 53e19bdd0d30a9ea8461a9b3d1a5bf2f
BLAKE2b-256 f0cf35e9391a26c9a810645356781e2d344a55b594b67457c498190273d24fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 a0157f62dc20f39ce1b36f48a01f80a510333d18142a4e76c592bf522df35d67
MD5 050f0a819f20f1ef121e1afa99f45112
BLAKE2b-256 098be6ddb575b60d5b91e30a133fb7648396f54279865b87da025e15b3d57341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 f618dcf3e429f590407432410a2fb72fb64b61077b2340896a4afeba4979e8f6
MD5 db5e78ce0b4c36016b0945613551707c
BLAKE2b-256 1e74d3307ded3e9cef3de4f6fa92f70e56e80ea1dcff2f0049a9400ae6a736c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp27-none-win32.whl
Algorithm Hash digest
SHA256 029cfdc73fa518aab4710f43e1a11227d2e68bdb03641f7f0836c605afa5be7c
MD5 befe3365f2ccb9c42fe94872b404caea
BLAKE2b-256 8864cdcdd815b20df911c7c4f4e365c46471a95fce24162d67609d81cf40e404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 b62e3d67c810bc555625ae1edf6c93cc8caa5d9ff2da1c0568b65cd0eada7dca
MD5 994d4cf4945f6b74cdb3874c807472a6
BLAKE2b-256 d7a21ee93590b0f885559eb3b76fe3baecca846811a6a729d7e40a3513a60f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 515550294438fa6996d51e383e39abc782f748b9117f1092ebd049b5259f0e04
MD5 058849d35a976efe0d8900ad3bf5a722
BLAKE2b-256 62612520affc31b935dd9817f99058f077db54f1f677df8762e60083ab99a6ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 a2a29adf418ea3f689c95b9910709642a48e09012a8b58a6fb2be9312ec4ceac
MD5 ef3f8e09349005e396ee898da65d2a77
BLAKE2b-256 e80e44dc8d178361f775e5c04edb818f08a6efcb67d38a8df429e509cdaf1c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e70c1d847199693646cf160cefc0b97768e27d792d3a50e4784ac153bf6abfa
MD5 f0019ec829a58febeb477df0d5d101eb
BLAKE2b-256 fadd57ee543995d62c44223d54355fa93d6658062ce7f7007efb1aa4a3f8fe19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp26-none-win32.whl
Algorithm Hash digest
SHA256 f11c297f87a032069c59a5cf92a8d7f598ef1da9988554ba5cd187579dc0e0d0
MD5 089760d3ec177db82c7d036e3e9f3b4d
BLAKE2b-256 95cf0f850fd976915e206774d5eaeb6288cc6f6328b62c8561573d5daad8d990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 c38921a4f836fa872d76fbd1ab7cb981eb19b82c63bacc6121e76f52b86d5b2f
MD5 017eebe26678e6ab29ff8ff1846ded1f
BLAKE2b-256 ede5222f8a16e9168fb48b60734d887b70940ee56d3dcfc93b338c1276518b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 4b53fa7c6028e0814e1a2f14f677816368958d4f572181f733df090376c1f0c2
MD5 b96f143d048c2457d41212207c677c20
BLAKE2b-256 2755b74ed45ba621b55fa5760edb4db6d595d8d5f2dff485d05605ca5087562d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 ffe0f318aa21a79a268bb8a8b5afeda2997f409c50ebf9dac0abfc23b1406aff
MD5 72a865733489cf1d8c2556eeb44c3c32
BLAKE2b-256 65540ff6950afb1a1b53aff9b9725f8d4aaeaa06a90c3c37b4ae68d9949f9069

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