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

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

Uploaded Source

Built Distributions

pymongo-3.0.3.win-amd64-py3.4.exe (442.8 kB view details)

Uploaded Source

pymongo-3.0.3.win-amd64-py3.3.exe (443.0 kB view details)

Uploaded Source

pymongo-3.0.3.win-amd64-py3.2.exe (445.3 kB view details)

Uploaded Source

pymongo-3.0.3.win-amd64-py2.7.exe (444.3 kB view details)

Uploaded Source

pymongo-3.0.3.win-amd64-py2.6.exe (444.9 kB view details)

Uploaded Source

pymongo-3.0.3.win32-py3.4.exe (409.3 kB view details)

Uploaded Source

pymongo-3.0.3.win32-py3.3.exe (409.3 kB view details)

Uploaded Source

pymongo-3.0.3.win32-py3.2.exe (414.4 kB view details)

Uploaded Source

pymongo-3.0.3.win32-py2.7.exe (414.1 kB view details)

Uploaded Source

pymongo-3.0.3.win32-py2.6.exe (414.6 kB view details)

Uploaded Source

pymongo-3.0.3-py3.4-win-amd64.egg (435.4 kB view details)

Uploaded Source

pymongo-3.0.3-py3.4-win32.egg (432.8 kB view details)

Uploaded Source

pymongo-3.0.3-py3.4-macosx-10.6-intel.egg (461.9 kB view details)

Uploaded Source

pymongo-3.0.3-py3.3-win-amd64.egg (441.7 kB view details)

Uploaded Source

pymongo-3.0.3-py3.3-win32.egg (439.0 kB view details)

Uploaded Source

pymongo-3.0.3-py3.3-macosx-10.6-x86_64.egg (468.7 kB view details)

Uploaded Source

pymongo-3.0.3-py3.2-win-amd64.egg (433.4 kB view details)

Uploaded Source

pymongo-3.0.3-py3.2-win32.egg (430.4 kB view details)

Uploaded Source

pymongo-3.0.3-py3.2-macosx-10.6-x86_64.egg (460.3 kB view details)

Uploaded Source

pymongo-3.0.3-py2.7-win-amd64.egg (426.7 kB view details)

Uploaded Source

pymongo-3.0.3-py2.7-win32.egg (423.9 kB view details)

Uploaded Source

pymongo-3.0.3-py2.7-macosx-10.10-intel.egg (448.2 kB view details)

Uploaded Source

pymongo-3.0.3-py2.7-macosx-10.9-intel.egg (448.7 kB view details)

Uploaded Source

pymongo-3.0.3-py2.7-macosx-10.8-intel.egg (449.7 kB view details)

Uploaded Source

pymongo-3.0.3-py2.6-win-amd64.egg (428.8 kB view details)

Uploaded Source

pymongo-3.0.3-py2.6-win32.egg (426.0 kB view details)

Uploaded Source

pymongo-3.0.3-py2.6-macosx-10.10-intel.egg (449.7 kB view details)

Uploaded Source

pymongo-3.0.3-py2.6-macosx-10.9-intel.egg (450.2 kB view details)

Uploaded Source

pymongo-3.0.3-py2.6-macosx-10.8-intel.egg (451.2 kB view details)

Uploaded Source

pymongo-3.0.3-cp34-none-win_amd64.whl (217.5 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.0.3-cp34-none-win32.whl (215.2 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.0.3-cp34-cp34m-macosx_10_6_intel.whl (243.7 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.0.3-cp33-none-win_amd64.whl (217.7 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.0.3-cp33-none-win32.whl (215.3 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.0.3-cp33-cp33m-macosx_10_6_x86_64.whl (243.9 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.0.3-cp32-none-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-3.0.3-cp32-none-win32.whl (215.2 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-3.0.3-cp32-cp32m-macosx_10_6_x86_64.whl (244.0 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-3.0.3-cp27-none-win_amd64.whl (217.5 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.0.3-cp27-none-win32.whl (214.9 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.0.3-cp27-none-macosx_10_10_intel.whl (238.3 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-3.0.3-cp27-none-macosx_10_9_intel.whl (238.8 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-3.0.3-cp27-none-macosx_10_8_intel.whl (239.8 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-3.0.3-cp26-none-win_amd64.whl (218.1 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.0.3-cp26-none-win32.whl (215.5 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-3.0.3-cp26-none-macosx_10_10_intel.whl (238.2 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-3.0.3-cp26-none-macosx_10_9_intel.whl (238.8 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-3.0.3-cp26-none-macosx_10_8_intel.whl (239.8 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.0.3.tar.gz
Algorithm Hash digest
SHA256 3c6b2317f8031bc1e200fd1ea35f00a96f4569e3f3f220a5e66ab6227d96ccaf
MD5 0425d99c2a453144b9c95cb37dbc46e9
BLAKE2b-256 bd911857471b63eaa192127c985b29362c094ae925720d5571daf286222c9716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 266871ed2726ba7cb13d1de1ad63ead2f36ebe5a22e51d9a4334fd3c43c98a25
MD5 d10ba040a9e600ba5950f99026984ab2
BLAKE2b-256 0e80448436ff3af090b1449fdc32a7831c5f8c976c2514704a9b90d31043b2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 f500c8da510b07c90f42490e3c78ea693dddf87bc8fb42d3acaa5ab7ecf12572
MD5 2ce57f6535b4b789dd34286ad9dc79fb
BLAKE2b-256 8f8810a2887c5acd24f5fea43849c73185a17a5e22bebcaa97496b279710da77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 6b281f2c047d3b30a7f4a1e5967725c8db2988fb2df21eb0f7602a531dd088f1
MD5 a8a8898162063ee919c688792f1b153d
BLAKE2b-256 3502843e391cdacab9dccdfd5d10efef4cb716e85295649726ef0f97ee654d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 b8cee1dde031ddb67cceb79f314ae9ca6dded20af3b73bad2f1de1590b61ee1f
MD5 6bfeb9f57b80dbb1b3e53268f1ddb822
BLAKE2b-256 d1ce389e71a11c6dea55c702daabcdae4fede795173b61f7fb868f25b9202022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 6a3df68ea539788773cfda11dd5f63741d39d15ed7138453dc15960dcdc91a6e
MD5 f65c947c020b18798708ba2877d71a7f
BLAKE2b-256 3c4c4ee66149c4e0f61f065da13b8f498ecdc4bc5abb9fa472ffbbfcaf84f72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win32-py3.4.exe
Algorithm Hash digest
SHA256 7af7beeeb254f42eab8e634ef4628c5f95e23dd5e8d02e390b05bbbe58c99e48
MD5 c0f4aa8bc9eb28efec8a99b6f9656164
BLAKE2b-256 2df5649fccd479f00d94337117734d10e5b4a8e8838906fd62c5a41b44f6bdc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win32-py3.3.exe
Algorithm Hash digest
SHA256 86a1b4c718503c3ee0e35b5055b6feaab3f4810920f261339e57356b349645f3
MD5 1a9b4b1607ff00f2872d6de6f391dbcf
BLAKE2b-256 2ca233a63e27b187d8402f8b29f52798278d0524449f9fb2f56a87d2d80e609b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win32-py3.2.exe
Algorithm Hash digest
SHA256 73b2e32aabe0ddaca47fc737fc9e0acbc4a3d8e1c18c35addb94b122f6936753
MD5 5b2d444443f610f753d140ee4a09cc7a
BLAKE2b-256 2ec1a2a7aa43139e100d08421305f3ec31bf56c796b2b6c493018abc7774d12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win32-py2.7.exe
Algorithm Hash digest
SHA256 b7dda0e7e047bac59742ecc972cf3b229dcc4d95c8913336febc0b9df1eacac1
MD5 3d3b5ada13f7698b0af8fe2317a728f9
BLAKE2b-256 440588e2639a98759449a2ccc90d4cbcc05d9473a46d304109caeeee570758f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3.win32-py2.6.exe
Algorithm Hash digest
SHA256 14d23f364f4bb8ab027222f36edccc998ec2e1ed356f4ae2a47b9ab44df38f98
MD5 8039d419fedef3e850f448d5a842d011
BLAKE2b-256 06c77e062d7dd64194ffab6178151bb50f3fce0b02df6feef4da396c5938fa9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 bd9cac9968d9c79e9c23fea61e2e7766e5d1a93b12610a30c493c8d98f6fcaa7
MD5 de7d88f858725ae2b0f88b8530578f8d
BLAKE2b-256 f37e92e893940d62dd981f95a4e86c1d30d2e7b1d35c808cf1d4c0da0b123fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.4-win32.egg
Algorithm Hash digest
SHA256 50902a6d472069aba9ab19006a911f4437e7373769a150207685a7c1bcb08886
MD5 288c8d017a90fd5f60a1d4c1f1cdb68e
BLAKE2b-256 ce0d9da77c4e1df928d6396e9bdc1023baf59f39196e381a2d8a85c0544d852d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 4d6f5564269ad64dbbe07d146bfed9c69ff3d38de4b79af522df52dc2d025fb4
MD5 5bf8f9e38f3ddb3c587f8e62c9c8c408
BLAKE2b-256 d9ea97ae9ea74a75d3ad370e6754756a1d5ab7bcfb487a28696fc49d67962075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 7b85c44281ecfb45f13a3f479a66c80a62fd8917504dbd07d02440825db6e50c
MD5 c614bc695e5620d276acfd5b483ef071
BLAKE2b-256 f706f62cb5dc593d685a8ca56643f16308467abfb209c84fc7f16ee2d813ea39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.3-win32.egg
Algorithm Hash digest
SHA256 f31ad9dd6eaa5c156dc1bb7851caf592cff7a9e3d94f9805f2998aaaca2a9cd6
MD5 d8b92ac5fdf5d69961b9e6d30499ef6f
BLAKE2b-256 85e0a9ec194f9861b045281b006630c660c70dcb7120077804793ba80d084232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 544d8fc9faf1b749b1db6a861f148530fff326769198892d3dad81c0b329f267
MD5 474e03c23b79086ffbb9e9cad829f313
BLAKE2b-256 0c09f7671f26c54e9d4c476650a2cd2ecab74c9d0c1b0c18100315637c96b188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 0093b91240b45f69bf1ea645185d31a96ae6532040d405018422d16bd5e62626
MD5 23f977053c73646a9c2fa8dcc815a980
BLAKE2b-256 71094add184476d651af35071243fad50b0d6008950cf49ac7b961462c8bddab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.2-win32.egg
Algorithm Hash digest
SHA256 72b4e67813e946e0397e616d754380ace8406c20f46685beadbc49ee42395b1e
MD5 f2a97c9fd0af57c4b027629b42b87418
BLAKE2b-256 2bed1f557257eed1a701c9395ceb0e7b5c118512b45e9d9cfb90acb494ea0b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 4590e2b6398e7ff620f6e56b12dd87fc21b023b96cc687cc75353cc998bdc5bd
MD5 40b7b240869be936acbfeeba1ca14468
BLAKE2b-256 fa7212640b000afe6e1307d5c846f83e91c238444f72c26d4a8bb3d44518bdd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 b7f8fbc14281f9aa65a967f1ecbdd04a5beb0320fe6e6780ab1b670087b70f8c
MD5 7b6cd09fb376668aada8b0d08497c113
BLAKE2b-256 d405979e0e0ea7616790913dbb508d12ff6b79d3a0634dc8117b9e9c910886a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.7-win32.egg
Algorithm Hash digest
SHA256 0355c52c3b58246841a226881c9c07a0f98dea8f44c9480eb91a599cf4ea47df
MD5 d8c9e1fb8265f56a64226c1b7758108f
BLAKE2b-256 685550f5d20070d735387220fd48396cb96378065273b8a06a8670796c143d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 4ac6b67f4ba00334f26fc09cf40a6f66a91e18cd8e91a8a898c769da534662c2
MD5 558e9021691bcf1051946d1f9e122d59
BLAKE2b-256 d6f50882610d2dd5aa99eaff8b8c2ce8b091efc6a47181c2015d1b7c1951d7f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 3df13341df4016b8a09c55f15810edb452cdd67a1a3688e22d09e75f9e0cb1c5
MD5 5ec780b831f78151cda5c96d486a93bc
BLAKE2b-256 a746016c9da1f4a1b43ce07a7bc2330fb46c54c5a5127764e9327993c78990e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 6cd1dfcf1bc341908f8f9676d38a90654dab0220be84d3712f3d2ad7ace88787
MD5 0e3a22ccb450a57a351fd8829dc11232
BLAKE2b-256 7713d58c42066a7457ee52ac471eafe21ae6089569f07de5d60a9bf887edd210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 8ffa47106788f1c3249eb86303fb7d829f3760530f7d10620cef6285c13d3c75
MD5 f41f3994545c48d73b61a3b432158d41
BLAKE2b-256 7e2035b0c3c3c6e7b833804c0c9fd3eb329fb17ca5b8134fd922fca873d1162d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.6-win32.egg
Algorithm Hash digest
SHA256 ccc378925b143c1e2bf1442239cef78a2fa060bbf5f514d114037b4917e92921
MD5 5fe64734c3ae69bc1f2b9cb6c672f62a
BLAKE2b-256 2a1099651579c6e1dc39f769f06546d7d953f05eedb6be734a558649a91aff0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 5328f337633874de928efb92749105ddd142ed9fc32e042a62f24916c6eff021
MD5 46b67066f744596e12ebac1219a4731e
BLAKE2b-256 0f5d83ccedf8e7fabcdb9b6039c0f4bdca39a71648a61accab6ef73dcec5ba5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 4c3eea6f9c5ec96ef5da0aa69fd2cb2de8eabe7ba664182c0ec62656ab75c181
MD5 172e7c07618fc1c042f7a0dfa5b40548
BLAKE2b-256 51ecdd2e9cae51ae205579854e1604c5c38fb22c7f82bfbfbb7bca1cd73699c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 b71c31e51c3f99cec020b8cd90e8f5cbcc6a42db695d38cebe1c9bf5cb194021
MD5 3d89fb7d91328798e0ad5310479f3dbf
BLAKE2b-256 06fc8c906fe8263c44b00973fc92c41c5b9ce8b8b2eed588f57dd94f189f5007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 f119d2b20dc705f7fecf772ee772bb2667b458777d4aa058ca4de1ecf90614b0
MD5 df5c3c6b8732794256bb1ff928706e39
BLAKE2b-256 2d907149969ccd74ebbcfe47f06f6b95489e5a71a49d2f343936ab265a33db98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp34-none-win32.whl
Algorithm Hash digest
SHA256 410a62f3be04882f04ec201c49059808a339a55507eefbff4c917d662ef34ca9
MD5 4dd993b2b97cfd547119f53286d580d6
BLAKE2b-256 ed690cf763acfc98bfcd6e78205d23b4051c5470d83fc2d420e451b05ebc165e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f5c6263f49baf43141d610309be4514a1bf4aebdd80b8da4731160faf25a012f
MD5 a89a4f881bf91951d90b5f1627547302
BLAKE2b-256 4bb280abc9b28d1e72d823868647c7d425b725ab0dd525243cc166e9d720d4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 196a58e13f222a3d47cb812c41f1013308323ee3ae42c81ed0d1dfe26b287ea1
MD5 10b30dd6580969b340785ce19fea68ee
BLAKE2b-256 bbb4cbca4d64478c39d0e504ad57f22c3906534e933b78fd7e9210a41280f194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp33-none-win32.whl
Algorithm Hash digest
SHA256 addddf65a199e9d81a39b7fd6b9894e98d68c456a19c28d27944f47784c9bbea
MD5 492434b5360f07538032bb67aa511b6e
BLAKE2b-256 03a5b66d9a5a9b1c87daf5a1bbf5027d6de43505727c6a4ef7b3cc9ec8dd351f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 bb3cde7a2f7fa69d2b08aed2b7601a348529492a871289420caa850a9a02d54b
MD5 fd024caefb0a65e11ac6fc019b00095b
BLAKE2b-256 e0a31073936192d1293baf300465ab6cb7fa7ce3f1dc3a568ee44b39cee9f67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 06aa0ef467c2f1e1f32557b656f2cc3fda6e2ab689ac0ceff820b9d680e1484c
MD5 3d5b2eca71b8ccc9798fbda89c505868
BLAKE2b-256 db8475c1a7752b04a8fbc1d604967768f8b99a059d4ab3826889a3af4a0ab3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp32-none-win32.whl
Algorithm Hash digest
SHA256 cee83649a66c6fba4136d1acb34cfe878b4b8b83e0744785b121695d323ffd2b
MD5 0bd7addbf3fcbb4847c4c33fad0a9c1f
BLAKE2b-256 6368a9ae45088ec2d60ca73d4f9b36a995f79cd83c4384cf48db71b9dea93ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 f71a374f98e2812a4f3fcaf74d5d22d9c6a064fb1740e1f0a72ac236af96118e
MD5 4d690333b21e60a643a232ef79ab6964
BLAKE2b-256 8edb3ba0a0f10a072b5c2b822e8f9e5e7b4521e3b4496ee387368217ea9ef907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 12d6e3695c610ba4c23ac2d0d514dc1641bbb0db3a691ceba79134b8bbd86121
MD5 9579624ec9104c8d4af1e50b2577b1a1
BLAKE2b-256 dd146cb2c1695300647d760cb3a0b80bbf570108ec65214a9ab3c07bfd5dfef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp27-none-win32.whl
Algorithm Hash digest
SHA256 d3b5aefe035711ddf89e311dd2f06bec6d49bbc97d066bfa470cb33128771c18
MD5 99393d93cf4eff38fffd46f448ee59ad
BLAKE2b-256 6939d25f67b298e3db09faaf24255a5c6af5dd698a970d204d0d262460639c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 d924b64880be29cf421857409d35e8f6cfe6b3e870dacc6f7d37a3a36e41d802
MD5 158f43b1f73a66b08631d3f910c76d69
BLAKE2b-256 259bc54b9ffa16a44a1fb35bf1a091aea11c2d691d2665d25ec1e5741a391db0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 0c650b54c7c57ad843d59a94919565eb3c3c0d605da1d1fef1e5f033dd3ab525
MD5 765930d632fecc630ca99e038635b605
BLAKE2b-256 e130d20f34e2994391da651d0f677ed5e2837057ad3769dec53cadd4c56c062c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 bd9568a772e61bb43abd05f2e88f82d73f6fa51f9d42cf8e40c63446f5308211
MD5 e1e22c5fafcb706321b1d691e21e93a5
BLAKE2b-256 08622bd89068731c1d6bd700a95c72e74aa3de79183c5ff5d57276e660e7c232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 5cb0542e6d1b1c0ed1fc5103c7ea8029827c982a5b9f673ac5808fd0bed9dda6
MD5 752735cb167c6777b87a7624dde1aeda
BLAKE2b-256 42169aadf8efb1e61344a7620b53dc35c132f46e842e0391ede553de644516ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp26-none-win32.whl
Algorithm Hash digest
SHA256 7f2d5e1d90ec5762e4398fe803b4dc27381645701d0e36be7a564fd315fbfed3
MD5 d9972bb1b2701464d2759196ca99edb9
BLAKE2b-256 108c7b433555794e99a306c25cf63cf1084e58e9dc10fba0b9a74f34ee95cbc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 c79e54a800b51c831cd4da51da1c7daa009530f06df4cce400a91016efb085d0
MD5 51da3863f36e4d84ff6783ec07fd1f2a
BLAKE2b-256 a722b3c4f73ab8ea73afed433e0a8b59b5d4069d9508f2c4bdb2ae6a1d8a76e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 dc26942a1e18afffe6a9fd0e77d8c606119afa6fee37beacc027a86b1574ed8f
MD5 9f3a3d9e08399cd0c4573d15489923a2
BLAKE2b-256 a45f9bcca9abf5d3c70686fa0b1ecf31ca6f7546f3c0eb11a4be96590b6e8e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.3-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 1c527cea4fcf7405e083b63a0d592a62cc91a75d6b9b9fa1c90b5584aa0eae5e
MD5 78e9ce90cd87f2207af3d00c053fc637
BLAKE2b-256 4879400440a4f0ccc174ce8086d6a8ec46aec87e97fe4ec74e3ec7bc0e46a188

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