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 >= 4) and Python 3.x (where x >= 1). PyMongo versions <= 1.3 also supported Python 2.3, but that is no longer supported.

Additional dependencies are:

  • (to generate documentation) sphinx

  • (to auto-discover tests) nose

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.save({"x": 10})
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.save({"x": 8})
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.save({"x": 11})
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 install nose (easy_install nose) and run nosetests or python setup.py test in the root of the distribution. Tests are located in the test/ directory.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pymongo-2.9.4.tar.gz (442.3 kB view details)

Uploaded Source

Built Distributions

pymongo-2.9.4.win-amd64-py3.5.exe (834.3 kB view details)

Uploaded Source

pymongo-2.9.4.win-amd64-py3.4.exe (463.5 kB view details)

Uploaded Source

pymongo-2.9.4.win-amd64-py3.3.exe (463.6 kB view details)

Uploaded Source

pymongo-2.9.4.win-amd64-py3.2.exe (466.0 kB view details)

Uploaded Source

pymongo-2.9.4.win-amd64-py2.7.exe (465.0 kB view details)

Uploaded Source

pymongo-2.9.4.win-amd64-py2.6.exe (465.6 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py3.5.exe (700.2 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py3.4.exe (429.9 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py3.3.exe (429.9 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py3.2.exe (434.9 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py2.7.exe (434.7 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py2.6.exe (435.3 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py2.5.exe (300.6 kB view details)

Uploaded Source

pymongo-2.9.4.win32-py2.4.exe (300.6 kB view details)

Uploaded Source

pymongo-2.9.4-py3.5-win-amd64.egg (483.6 kB view details)

Uploaded Source

pymongo-2.9.4-py3.5-win32.egg (478.8 kB view details)

Uploaded Source

pymongo-2.9.4-py3.5-macosx-10.6-intel.egg (506.4 kB view details)

Uploaded Source

pymongo-2.9.4-py3.4-win-amd64.egg (481.3 kB view details)

Uploaded Source

pymongo-2.9.4-py3.4-win32.egg (478.7 kB view details)

Uploaded Source

pymongo-2.9.4-py3.4-macosx-10.6-intel.egg (507.1 kB view details)

Uploaded Source

pymongo-2.9.4-py3.3-win-amd64.egg (488.8 kB view details)

Uploaded Source

pymongo-2.9.4-py3.3-win32.egg (486.1 kB view details)

Uploaded Source

pymongo-2.9.4-py3.3-macosx-10.6-x86_64.egg (515.0 kB view details)

Uploaded Source

pymongo-2.9.4-py3.2-win-amd64.egg (480.5 kB view details)

Uploaded Source

pymongo-2.9.4-py3.2-macosx-10.6-x86_64.egg (506.3 kB view details)

Uploaded Source

pymongo-2.9.4-py2.7-win-amd64.egg (473.4 kB view details)

Uploaded Source

pymongo-2.9.4-py2.7-win32.egg (470.5 kB view details)

Uploaded Source

pymongo-2.9.4-py2.7-macosx-10.12-intel.egg (494.1 kB view details)

Uploaded Source

pymongo-2.9.4-py2.7-macosx-10.11-intel.egg (494.1 kB view details)

Uploaded Source

pymongo-2.9.4-py2.6-win-amd64.egg (474.8 kB view details)

Uploaded Source

pymongo-2.9.4-py2.6-win32.egg (471.9 kB view details)

Uploaded Source

pymongo-2.9.4-py2.6-macosx-10.12-intel.egg (495.0 kB view details)

Uploaded Source

pymongo-2.9.4-py2.6-macosx-10.11-intel.egg (494.9 kB view details)

Uploaded Source

pymongo-2.9.4-py2.5-win32.egg (472.2 kB view details)

Uploaded Source

pymongo-2.9.4-py2.4-win32.egg (477.2 kB view details)

Uploaded Source

pymongo-2.9.4-cp35-cp35m-win_amd64.whl (242.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-2.9.4-cp35-cp35m-win32.whl (237.6 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-2.9.4-cp35-cp35m-macosx_10_6_intel.whl (264.8 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-2.9.4-cp34-cp34m-win_amd64.whl (239.0 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-2.9.4-cp34-cp34m-win32.whl (236.6 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-2.9.4-cp34-cp34m-macosx_10_6_intel.whl (264.5 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-2.9.4-cp33-cp33m-win_amd64.whl (239.1 kB view details)

Uploaded CPython 3.3m Windows x86-64

pymongo-2.9.4-cp33-cp33m-win32.whl (236.7 kB view details)

Uploaded CPython 3.3m Windows x86

pymongo-2.9.4-cp33-cp33m-macosx_10_6_x86_64.whl (264.7 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-2.9.4-cp32-cp32m-win_amd64.whl (239.4 kB view details)

Uploaded CPython 3.2m Windows x86-64

pymongo-2.9.4-cp32-cp32m-win32.whl (236.5 kB view details)

Uploaded CPython 3.2m Windows x86

pymongo-2.9.4-cp32-cp32m-macosx_10_6_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-2.9.4-cp27-none-macosx_10_12_intel.whl (259.2 kB view details)

Uploaded CPython 2.7 macOS 10.12+ intel

pymongo-2.9.4-cp27-cp27m-win_amd64.whl (239.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-2.9.4-cp27-cp27m-win32.whl (236.3 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-2.9.4-cp27-cp27m-macosx_10_11_intel.whl (259.2 kB view details)

Uploaded CPython 2.7m macOS 10.11+ intel

pymongo-2.9.4-cp26-none-macosx_10_12_intel.whl (259.2 kB view details)

Uploaded CPython 2.6 macOS 10.12+ intel

pymongo-2.9.4-cp26-cp26m-win_amd64.whl (239.5 kB view details)

Uploaded CPython 2.6m Windows x86-64

pymongo-2.9.4-cp26-cp26m-win32.whl (236.9 kB view details)

Uploaded CPython 2.6m Windows x86

pymongo-2.9.4-cp26-cp26m-macosx_10_11_intel.whl (259.2 kB view details)

Uploaded CPython 2.6m macOS 10.11+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.9.4.tar.gz
Algorithm Hash digest
SHA256 46f358bb1d1dd27a75c6d19b9d9e113adddd4d1b75fdd1c1f4c9cf1c2b3f420e
MD5 f2fbec0e386fcd86bef4f6d7073dc464
BLAKE2b-256 f27fd7e0eecb108b4c0535c412bf7b98868c1b00261a7c9cb323ab7b6907f8d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 fc6896fc48be8dba4924d0f8ad6b01e9fe0cb0a610d7a4b4e99f29dde80d1442
MD5 3d9c432370531d731436574ed1435c02
BLAKE2b-256 b35f52365456ca2302eff2ba660e4b84df738c3f0ea37b867bf8b79532bf5ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 1803599c650eac0e9b4f95e174b94aeabfb37a41e5e53066d53ce69618792625
MD5 895307ae076519d4c32922339c047f2f
BLAKE2b-256 19df1b5a08039e3b6959d2aa100e24e42050227422cf4b8d1030c5d13fe0ff27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 dfdea6249e64254dffcb4c906a476fbee7b2c21e65554406800e979c3f69500d
MD5 e369e887d7ea0fa3b8c27352b4a820f2
BLAKE2b-256 26913f2bd96197077aaf98f838ebb72a5ce50de55638bcbf6b6dbe18a0f5cb01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 9a9648c4ea3e0aa63a80b1d624c98cbcf00f1a1aa1c2bef446e35f8c35f2c61b
MD5 b71ab3932bb8a0f168022076cb807674
BLAKE2b-256 bec35073d1c3f61919a654a1d30183defd3f5d725274a784190215ba948906c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 f35e633f700c00aea0f62640b9870e227375e43d1e0970851f2301d64ca0c35b
MD5 838bcdad6f15b70dc3da4460f2b16334
BLAKE2b-256 cb3ab1d7b44511b0d51cd6f80799d08981a5ae085fce95cb7d550d5da3db1042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 ef51c74bf95c8fa4e19ff2731d7dd5bcedbd53c0d78e4ac77d8c0ba0d62bf5c6
MD5 41d09075a55fab71bbde0c7bc0bd9e95
BLAKE2b-256 d80c50f66ca25c4438d35da1fdc93bf1e6b462bbe82ab6aea670c25cb988b688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py3.5.exe
Algorithm Hash digest
SHA256 079256cff23ec9ad88e83f90080d6e4b1af12d514c24ee43f1ba52f16c864d30
MD5 ea65ebb199c50966f6b7745f46fc6604
BLAKE2b-256 0462a5831157bab57dc7c2d63fb4f67813929dea080744093a8268567cb9180f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py3.4.exe
Algorithm Hash digest
SHA256 d994cd04a82f2ea21f64a5a6e4825f4d9ce0a80f3c6a300a65751244022a638a
MD5 911d02f5d93afc40e449b1b61af71698
BLAKE2b-256 a8f417e2a5271b239cccc8a53ed685c261d51361876cd4e0ad0185e066d31383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py3.3.exe
Algorithm Hash digest
SHA256 1ad01b6bfbc70c8bd9ac9c9d5c0e3cd60020417ee49a151e9556c9125d426b6a
MD5 384d88462d09536d72e4118299084e53
BLAKE2b-256 2933075528876960049879aebf0d720585a9ab760a97e01cad92819806242c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py3.2.exe
Algorithm Hash digest
SHA256 5e23321cd27476710b48921fba6cf01ff36f3245ec966793a53863729abce81b
MD5 26f893e6baa59e8da616289210d11fb4
BLAKE2b-256 4bb5503462171f8cdf72a847f2f3ef9282fe596cb6d8ad8f828b40d6d093f296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py2.7.exe
Algorithm Hash digest
SHA256 aa487c5fa98890dab4d33dff018a01981a289fe37f35d38827a144bf412570e9
MD5 3bf531f5b53dcd514edd5baa8a14a061
BLAKE2b-256 466d269b4dd61f8030012197dea5311656d31778cd971c3a98a96b9056b0f3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py2.6.exe
Algorithm Hash digest
SHA256 4f3e5e6488866c53748459d4ba6ef18d0a2192fe6c83f93424cd79a8ecfd785a
MD5 6acca477536d7c5d0171c290f64f470e
BLAKE2b-256 e524821f2515dab15da7570d6a4dd5352e0cc48afb65d824b446e9a73b52d2d9

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4.win32-py2.5.exe.

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py2.5.exe
Algorithm Hash digest
SHA256 b751601fe034351332355582f448b0328323b0b8a4314159646c46420f5eb131
MD5 cc92bad44e30affeb7cb7949aa83b392
BLAKE2b-256 a41c2f22dc939cb48ba1a6c83682f9cf1533dbe434854f1ae337773856bddecf

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4.win32-py2.4.exe.

File metadata

File hashes

Hashes for pymongo-2.9.4.win32-py2.4.exe
Algorithm Hash digest
SHA256 09154f2e248a82cae6f0bdd57021c321cdd7098f45e03de0ad6699ee9956904e
MD5 89666d61398962ab0e2fe2190dfc675c
BLAKE2b-256 88dbbdc58cbe34c00ff7edef0334a54b11cd5e82a34ce30e91c791628fc8ab25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 bec034b5f2113b64e641190514a6fb09dd1c1aad08c1f63813440015e02d1713
MD5 c5a2a6bd71c42dc920445c5d8ed40bac
BLAKE2b-256 7874e1096af5f7c2cb07709129299b9779bc096b2ab11a5a17ba9fb54d50b065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.5-win32.egg
Algorithm Hash digest
SHA256 b34eedd1de25e58ad9d1c1eeb22a4fef0cc7ca040f22d29f2f6a01cb5f84a656
MD5 2eb627345f92a0ffe71e8a07d92891cb
BLAKE2b-256 60381ed3650209825b2735dd27fe7d74d1d9a74af991755af0fd21265420ab51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 05fe7072b52ef0dacaf5ff66fcc826bb08e7708b94a5e2cfb7caa9fa212aa835
MD5 163bc5e80ce1f4ea0a6951584a1140ea
BLAKE2b-256 ca1afd586aca72c98c678dc364aee69fee8e5922fc37c5382084183aae09aa6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 f9b19d1350cddd1e8004a5cb844073fcaea7a839f1fd8ea2fb35407c454e270f
MD5 5ad30011b1ffd1f0c11bc58c59c34a7d
BLAKE2b-256 07be8144493d6cb7e5a175c6c55a01fd89a97b61ea268bed80076153f71b46c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.4-win32.egg
Algorithm Hash digest
SHA256 3ccd3bffa1251e858db0eb449514d7113c3e148dae1dac6b09e4ac97e9e6814c
MD5 93d4af82fdd2c9fe3931dec13bd4f0cc
BLAKE2b-256 aa5b96e6ef36ef7d86ccf7c38db39114f9a4e40b39acbbf505b04bda1014b1d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 3384e9c29bc284fd28f4655a3c8131a8313a418bb7f2df7f16eeaa77a90e5a46
MD5 20ee1edd23c07d1d47d93e9cb7a94ce4
BLAKE2b-256 74fc12c409ad69648ff75696f582f56ce002ed23b26b2e358c49c3a35d578b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 d075cb12ca6e9fb01c5874d447bd819979c012cc7fb3c74543fac461d657a23a
MD5 01ad80c3a106faf5be0b4675ab1006fa
BLAKE2b-256 33671cda82bfaedadcefc001bfc3b02b911208246a59ee21cd804b7d5f67c44e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.3-win32.egg
Algorithm Hash digest
SHA256 5bffcc08a14f75cf85eedd83c57082fc725c08561aee9618110e55d8fe88ea5a
MD5 2bbcebe2ea403778cc530fb84579a331
BLAKE2b-256 d39b010278ea783394c24d5057ad3df65281f336e1db3ec9104bc3b54293e5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 ea7c60592177f3c23aa5ecc7dae940d1e8b57a5ce8d2bb1484ef72336f186610
MD5 67ba484154a85ec951f4ec1b8fd7efbf
BLAKE2b-256 ab62f3c0fa43f0b7bc99610247e254684586284f5c5eb240e5b6d8f745f63057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 9fac40a63214e2fbbd0906a8daea482078b317906f11f22ce3627c58dff727d8
MD5 4b9476becc80aca61318a668547da3ba
BLAKE2b-256 9c6be709859a25bffc555f6c79d4042e35c55493995d886b0b8e906551ca74d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 6aba2125a63f8b1a4ca2653c2f8701790c0f2d6d994898119b48e9fe002a8993
MD5 350e7d1ed86b1ff8d4cecd8b4eb6ddfd
BLAKE2b-256 b3c525fff7c77ef785f863c94937cdefa4376312bb92cb25ac96396740eeb1aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 36b784b5d6b7704f783ac75d4d50d63b9cad3a452a6fe787eae2ea02d1362d4f
MD5 4ac40c76355c553b9d3d9fe3f6a13a4a
BLAKE2b-256 c541445be9d928cac02d0892556b217beb11bb989b25049de861c323e979519b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.7-win32.egg
Algorithm Hash digest
SHA256 6d72466aef1e82b312d9908756a1ed0119c8c49970d1ec79d3bd75a5385063dd
MD5 12dd6a008563260f41485cc488e2e36e
BLAKE2b-256 9e33c8175a3725f018f46567defd00d1f4ee20dc246840b4ee9e9aee44f01501

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-py2.7-macosx-10.12-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.7-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 aad372d49da0dc86ea18eb113d85ab3c5592c3a9c4c3a6559fcac77daf8504d7
MD5 7f89bd0bc7c09e2c65f1e6cd86bb57f1
BLAKE2b-256 d31289924bd3ef726f40b22d965668b383b83fe5ac48cc4c787b18b1121d9f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 1b43aeaf116b51d6190a1844654d30ad1247de9149b4de5648c80b7dccbc3917
MD5 015043c0e0ae7f1d0f1f0498b694df9c
BLAKE2b-256 787662c97c6eeb80854d74db75b3b062b2d77d1d68be897359cbaf94846bb0f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 527a621d42aa3739fd23cffc66675d8e49f7a3d3fa20c670ed0105c1a0212fca
MD5 9c8f57e944a8ce239857093e0e49d168
BLAKE2b-256 f96b18ff31884a8fb1bf1331b41fc13705d1f421de8fc0fc8e71cff6a47b3803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.6-win32.egg
Algorithm Hash digest
SHA256 0c982388160d913d5286850ebb989aeea94b5164b8211a3ecd84ce09b287d744
MD5 f9e753dee6f28f9b849061da1eae2748
BLAKE2b-256 aabcee67a3351aa292c8069799248b503b43802fe310b4b3f171a4119e515239

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-py2.6-macosx-10.12-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.6-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 20669263250e0c117bbe75445cc7682088894802e528157f3a83892985735a46
MD5 c065e9f9e1582a5ef04d3fdfc694a7b3
BLAKE2b-256 06d98a5d130f5a668a99e5b6a4c6f5546c346f20ba4c7e32720dc49483d10438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 b71bf2311fbd801c2a6796df3573166a147054f04f4909077a42a8a31bc8601a
MD5 5199e6caafa78cf5064fd8250770df62
BLAKE2b-256 fb29158b8ebe4c193dd2af2e26b54b666a0a3e205362a5018a17a1c3f778d997

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-py2.5-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.5-win32.egg
Algorithm Hash digest
SHA256 98a6d4ba568a422cccf1cfffb6773845dbcebdb28e789aea0dc77ebb86753565
MD5 770aa778b087f6c6b606b15189d1f864
BLAKE2b-256 7fcfd255e93e8591de9b707f231fa06ce5818ffb37240eecb81c45591b9373c7

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-py2.4-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.4-py2.4-win32.egg
Algorithm Hash digest
SHA256 76d4fbd7762725f4166da897da9d735a0af2283db101790465b2145df7b19429
MD5 b7948755a0c7b37d42d8863ebad4eefa
BLAKE2b-256 490243f3baaaeefd21895f0ef39cea1fe99fa41235eb030aac0e6215fa788e54

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp35-cp35m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 93b9763c2a5432a4762e9c09f3f1ab3ad4957b954636356cb4b27582fd2176d4
MD5 130811c93923fbf107d8b94889b0b280
BLAKE2b-256 224d05daa0475a2d096435797de5fef70bf5639e196aaa5f20c13985e5c5d3b7

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp35-cp35m-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4439d255a78e4501da7e33aa874ae0f1b625fc7f3274cd678f9537ee1a01ce23
MD5 c87daf1bbd74256f43b5f6c378a20dae
BLAKE2b-256 bdee61193cb905a9c2d6e6fde61336c2d473a9d671d558429bcce7ec37a1b450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 036304953480932f7cefbc7957d903da2fb3b6f413799501e72e4ca8c8df51e0
MD5 e2d10c43c3b3972404739c7ba0754627
BLAKE2b-256 38d594f600b10c60f7b1fe7581932ac0d20c4cadbac0e3ed8ffdef80e76a38c2

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp34-cp34m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 3c27adb8ae0add35bed7bb270e989486e668fabc6b7819a8172fb33597544f7d
MD5 774d832fa51586e5099dab84b888566a
BLAKE2b-256 0d168ed70f74b8f1c34263518bf803811ec4f9ef42cdd09b3c424be16adb5aff

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp34-cp34m-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 54bbb352f5b5b403f5b5f17861e0d5590d73a50f5124f6af4616384a058b1407
MD5 7d31809bd272aba1e066a078271224da
BLAKE2b-256 007ae427bf6ad166446bb300a1f909e48572ba6f61552145a086f3a5d12382f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8db10e6a6999c9e0dee56a99c8a70e57f4e990eac061578ffd6c4e7caf14d054
MD5 7230c336bb3ffecd62e0e322416e5164
BLAKE2b-256 719918b7b585eeb569e9fda7ab4783385ae9c05a09b022a1a872780f78636f64

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp33-cp33m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp33-cp33m-win_amd64.whl
Algorithm Hash digest
SHA256 1a40d7bafcf7b15dd7812479563b751b932d00845f3a305e98913b65e49b77b7
MD5 c2dee2c7fb9a1a409b80be0b206ddbbe
BLAKE2b-256 5acb6a01082c5a5cfc25003c4fca7c8e2c1bfeb5556db030f4fd9166069117c9

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp33-cp33m-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 98f0a742a263c5a4f6059641358cfb331e3cc51641700c7067028271ea456ea6
MD5 5346d10d760aadb802ae32367a2a17e4
BLAKE2b-256 dc8ddac369516ccb0399e9879ef1c615437fad9ccef93bae4e143268726abd8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 de9a559fee5dcb1aa2f53cdf0330481a137c19986720965a3ee4c2444fae9dca
MD5 a51b71f03af1129ccc6ebc03024f08ad
BLAKE2b-256 c11a54b12342bceb2389392daf5b79e4b2a35d07eafc6a2bfe67c0ce0242c336

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp32-cp32m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp32-cp32m-win_amd64.whl
Algorithm Hash digest
SHA256 63257dfb3f175b2328392331ee784e63bdd1574ee89bffa50f5dac926291d299
MD5 09226903f485fff70fd0a58469747a86
BLAKE2b-256 f1c27c9a9d233a1cef40fc9224352dc99157f4de9660253ccc0ffffcbe6a5601

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp32-cp32m-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp32-cp32m-win32.whl
Algorithm Hash digest
SHA256 fcab7839886142aa9c5467923150689159cda52d8d6a7881ce1c47ea294066d1
MD5 dea530e167dfeb4b1533e2e6c2da6e32
BLAKE2b-256 cd61c79c8a23433e0c569fa9bcc37fa333b05b4ffb98b4b0f8f89fcd0d2c5834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.4-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 9806badd9ee69c82bf6cdd1dcf4012e12933aa4bb80d5f005d81ced2a5f0b237
MD5 ae98708817b59349b1b862f104216593
BLAKE2b-256 be1b6c8f1783eb56d1d4f98605b4b99deefcc74d07c67f2a91f7ad6941cf9775

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp27-none-macosx_10_12_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp27-none-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 ec8e0e9ca104c28c03010e7defe7dd7a8744eeabba2ba1b14145ec9eaa686304
MD5 b1f98d5dac561470867de8043b847b4a
BLAKE2b-256 bba57b89b6636cb47261df07e42727d0c9bb52f414b978bc026f7bb83c3f67e4

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp27-cp27m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 faabbd2003fabeed400501f164a29a8b887b3c4e0873cb795d4ecd9da51f0351
MD5 2bb3ef0fb69f142130b10396665fd765
BLAKE2b-256 24247311b5ff8512562535d57902aa88c2f6ef10b648f8a88becd8c8e512eb8f

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp27-cp27m-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b0790ed5575b185c8c45345823b9971fd9983f63e628ad8862c4d07887161418
MD5 b0a980c91385e3475b55530fcad199bc
BLAKE2b-256 26349c4b7619dac440a11c36de8c811a0000cdd35220a84130b9fa9b26825daf

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp27-cp27m-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp27-cp27m-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 5b9fe60b942ca4a4ad40200aa8c210d5eba2c95caba4c9161f57d95509704175
MD5 382145fee76192aabdfab767346829df
BLAKE2b-256 1e91155b3ee13e6ad5ccfae6776f3d06fb7a0dad3a6a3ec7560954b32a54c056

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp26-none-macosx_10_12_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp26-none-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 c6d2d7746757b3703cb3d3aec262e82e374b3ce4ad8641591b8193c114b7c57b
MD5 c284fab57e8b7eba0433bc9540d26c31
BLAKE2b-256 7bf4bcb52ba4b1c4b099fadacaccaa3e63bb6b634fd2e24195be8e84ab5e26b2

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp26-cp26m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp26-cp26m-win_amd64.whl
Algorithm Hash digest
SHA256 976a09c276ae017b0848419127c2a355838da4cf475d9210873fc6747ab429a1
MD5 88083f0a079643b53ad8de9e79b9ce33
BLAKE2b-256 26cac14bda7be86b4d33eb6ace2221a625787b991b6fbd82505163b8462db59a

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp26-cp26m-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp26-cp26m-win32.whl
Algorithm Hash digest
SHA256 22b365c27f883e49690efbfbafb5587b5a39dece6099fab435c43448881e1a82
MD5 0a7643eff20b329c3b31106a064672c9
BLAKE2b-256 efd427702e4dec7980397708531950f3834837dbf0877b8c0e5ffacb653061c7

See more details on using hashes here.

File details

Details for the file pymongo-2.9.4-cp26-cp26m-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.4-cp26-cp26m-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 40a93dc3342fd04d5c853ba21062ba7c26d0547cf5755cfdf77d893e3d6cad15
MD5 e104b69433152f6d99cb5425c66bfd79
BLAKE2b-256 bdff5a2eff8b37cb1c8fd0c81f7e2145647fb6af1030b47b045b7c9a1bd2d87a

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