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>

PyMongo 2.x is in maintenance mode. Support for new MongoDB features ended with the release of MongoDB 3.0 and PyMongo 2.8. Users are strongly encouraged to upgrade to PyMongo 3.x.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymongo-2.9.5-py3.6-win-amd64.egg (482.1 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.6-win32.egg (477.3 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.6-macosx-10.6-intel.egg (504.5 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.5-win-amd64.egg (487.7 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.5-win32.egg (482.9 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.5-macosx-10.6-intel.egg (510.1 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.4-win-amd64.egg (485.4 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.4-win32.egg (482.9 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.4-macosx-10.6-intel.egg (510.8 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.3-win-amd64.egg (493.0 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.3-win32.egg (490.3 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.2-win-amd64.egg (484.5 kB view details)

Uploaded Egg

pymongo-2.9.5-py3.2-win32.egg (481.3 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.7-win-amd64.egg (477.4 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.7-win32.egg (474.5 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.7-macosx-10.12-intel.egg (498.2 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.6-win-amd64.egg (478.8 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.6-win32.egg (475.9 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.6-macosx-10.12-intel.egg (499.0 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.5-win32.egg (476.2 kB view details)

Uploaded Egg

pymongo-2.9.5-py2.4-win32.egg (481.2 kB view details)

Uploaded Egg

pymongo-2.9.5-cp36-cp36m-win_amd64.whl (244.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymongo-2.9.5-cp36-cp36m-win32.whl (239.7 kB view details)

Uploaded CPython 3.6mWindows x86

pymongo-2.9.5-cp36-cp36m-macosx_10_6_intel.whl (266.5 kB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

pymongo-2.9.5-cp35-cp35m-win_amd64.whl (244.4 kB view details)

Uploaded CPython 3.5mWindows x86-64

pymongo-2.9.5-cp35-cp35m-win32.whl (239.7 kB view details)

Uploaded CPython 3.5mWindows x86

pymongo-2.9.5-cp35-cp35m-macosx_10_6_intel.whl (266.5 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

pymongo-2.9.5-cp34-cp34m-win_amd64.whl (241.2 kB view details)

Uploaded CPython 3.4mWindows x86-64

pymongo-2.9.5-cp34-cp34m-win32.whl (238.8 kB view details)

Uploaded CPython 3.4mWindows x86

pymongo-2.9.5-cp34-cp34m-macosx_10_6_intel.whl (266.3 kB view details)

Uploaded CPython 3.4mmacOS 10.6+ Intel (x86-64, i386)

pymongo-2.9.5-cp33-cp33m-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.3mWindows x86-64

pymongo-2.9.5-cp33-cp33m-win32.whl (238.8 kB view details)

Uploaded CPython 3.3mWindows x86

pymongo-2.9.5-cp32-cp32m-win_amd64.whl (241.6 kB view details)

Uploaded CPython 3.2mWindows x86-64

pymongo-2.9.5-cp32-cp32m-win32.whl (238.7 kB view details)

Uploaded CPython 3.2mWindows x86

pymongo-2.9.5-cp27-cp27m-win_amd64.whl (241.2 kB view details)

Uploaded CPython 2.7mWindows x86-64

pymongo-2.9.5-cp27-cp27m-win32.whl (238.5 kB view details)

Uploaded CPython 2.7mWindows x86

pymongo-2.9.5-cp27-cp27m-macosx_10_12_intel.whl (261.4 kB view details)

Uploaded CPython 2.7mmacOS 10.12+ Intel (x86-64, i386)

pymongo-2.9.5-cp26-cp26m-win_amd64.whl (241.7 kB view details)

Uploaded CPython 2.6mWindows x86-64

pymongo-2.9.5-cp26-cp26m-win32.whl (239.1 kB view details)

Uploaded CPython 2.6mWindows x86

pymongo-2.9.5-cp26-cp26m-macosx_10_12_intel.whl (261.4 kB view details)

Uploaded CPython 2.6mmacOS 10.12+ Intel (x86-64, i386)

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.9.5.tar.gz
Algorithm Hash digest
SHA256 912516ac6a355d7624374a38337b8587afe3eb535c0a5456b3bd12df637a6e70
MD5 173a54cb5e37c8209f87d86288aad0c1
BLAKE2b-256 e79abba267f4bf47833d4d2256a360fbde2878f22bf7923bd973dc8a11937f9b

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-py3.6-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.6-win-amd64.egg
Algorithm Hash digest
SHA256 f529788c284f2d3b704bc57fe8c8bfbd0d21488ab76d8bffbd9d3f6ddc0facff
MD5 606244f5e7fd2d9b49897126eb05ca0a
BLAKE2b-256 9ff8ce0285c1c38920470d372516643fcbf25fc6443228b0bfd3da2f3bb028e0

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-py3.6-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.6-win32.egg
Algorithm Hash digest
SHA256 2f340dc530572be45a23f2439754ffbb52767a56d62c5eb95ffbfe4724285f9d
MD5 ec7e40d9a875a6d31787ad82f6efbe4f
BLAKE2b-256 636af132b15e149071c1608091a4e193fb1410cf2421fd3435e6c6436b801b7e

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-py3.6-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.6-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 43a39563de1ac40b6c063f472b8ccd195611bfb5edba2cda907c96ab62e3377e
MD5 317445068432cbd316415555eeb7bc8d
BLAKE2b-256 1135b3211796a50e0e0f8016fdbf0fbb59ad6a1c16ba0f22dff0736b86be21d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 bd347ca5f65fb40206ca50799f7d1ec3395fd0b2f7d327800c225a1a15f52d06
MD5 39fb35e728ffdd6a106db36b8edb7681
BLAKE2b-256 0c622b130cc2ef12ce7902d96cef7531aab0cf509651facf0a15e586878fd3f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.5-win32.egg
Algorithm Hash digest
SHA256 af8ae48aa05def1107a98035dbdb7f79c8a2cc2539e765c53bb15c2863939861
MD5 c092917c945e586942b70dd9b87481d0
BLAKE2b-256 68753258994c69438d77615f2c161aba21a02566aa6647a5986bd450e9f73aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 614cd505a9e074cf70b1c3218cdce48378c93573556ffde65e04f10685074b45
MD5 fc8fc2b7eaa26ed1cbf353c04d44995c
BLAKE2b-256 254bdf2637c84ba236f156fb4aa7a99bb388b4c6163c330aee3fe340f70c9af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 df7977387bc4d9b5b2c3bff031e1bad696a2188dd5b2161fb3c094b0c5c006a4
MD5 68fc5b41614f0c76cfc03db5ba38b3e6
BLAKE2b-256 3a39c90fb67f970a5ef9edefdc15904a27e2e7328a9991edf8bde6edda123183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.4-win32.egg
Algorithm Hash digest
SHA256 62357d5313796d2e2fb77f778f90262662d588a58a2837ccd947620e66daf468
MD5 a391e80bd920a96a66567df3c89047aa
BLAKE2b-256 da3e12d0f0cb3f8057c7f35b8e0c48cf2c5ec4040978cf4c697ad8525efeb09a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 19b4fb6fb50d17382aa1f0c8a3bd612478ea461551a050f35821c14894374b58
MD5 6d1d07ba141c69b7df1f0c3753aca3cf
BLAKE2b-256 7bd3e2d0f2f44a6ce026fbf68ee424fd84612da615cd9297e300d060d9413de4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 5db86f60287314b387b6af9a403d9c1e86e4b8832e43d8589bb169422218d0cd
MD5 c1ad99de0481d0f1b3673387abb110c4
BLAKE2b-256 7d5bd9c9db1a699410270930f2fbb57d94e976eda7b8b373b7f073ef5b890dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.3-win32.egg
Algorithm Hash digest
SHA256 e3a501f475a59f2ab9473b33c174045b9a34326a50996b9f1b7aa9b024b5e0e9
MD5 e00c2b34f5634525d61ea7981ee0c21f
BLAKE2b-256 88d71ffc01a64845990eab5cd587e5d6cd11f6b0c4cf3cc849d410de5d54c4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 5890f24803bb59a717ecac74a19e1909484f324de3d0447ba6bf5fee87efb9c0
MD5 974c3420a930c0c5c9b5e4853a9b1c33
BLAKE2b-256 91d07a317f8f139a4f24c14907e69d2203ad7cbde88121ffa4bd500e08d9437d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py3.2-win32.egg
Algorithm Hash digest
SHA256 2049071f9957d21b8a7bfa335129dec4b26bea2f7015bc03aa723b36987acca7
MD5 4daa6ffe38f60bc8e054d328983b7c4c
BLAKE2b-256 34c59b561c74e988bed4f305b5f1ab4806fd2a06e520f2f7abafe30662e29f58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 6dbd46510691560125a9696153d50247fe638ec1220bc8764f4c467ef109f09f
MD5 688b17f6a930accdee1e54196e422e56
BLAKE2b-256 1b683e42470350eb71c35a371f06efcf5ca4e2324f8943a5cd49e67d7fe7fef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.7-win32.egg
Algorithm Hash digest
SHA256 8e6d2104bd44f5c356cf87aeb817dac0baeae581513bae56ae4213fabc58a3a8
MD5 be91f5622c8f0f81d52bc2953094edf3
BLAKE2b-256 a0ae519500d11da82841273aa7ed59fdbbcbff6c12640dc3d504d2e89d0d620e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.7-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 448cb4cc5cb28d8dc2e93a2e5dfeb52fe75d3dfe9fa4a65dc6b5226d0a544cbc
MD5 31ecb68f5ad05d2463eabf34e8f028b3
BLAKE2b-256 10d86e5c64d4c6d9e600d72688b211448014c02fc52472bbf3241e9ce8140f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 e5cc923f520fd480d12eb9a7b65904bcb28985bc0ea2f738fb3b2184bfe32894
MD5 3c4be0e75c47d02888446d3d52b057d7
BLAKE2b-256 823f4eae7775f25e92a23246f98a3cab4f1a9fa808be54722159fc31639ee7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.6-win32.egg
Algorithm Hash digest
SHA256 dae15d72da9f07a0185b6b23a5c3a087bda62ae1dedf427314f996c312d5b6c1
MD5 0a0f43655ff09eaedf8252c286e2792c
BLAKE2b-256 b8d47fea95367a98d001b5b2562737340b0eb37998861711abb8d4857976086a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.6-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 28a46f7ce1b88915a3d61fa13e5ad26f1eb9f14e80037e42b7d10ca27b136f5d
MD5 56a5240d4de48fe27032bf052012b4a9
BLAKE2b-256 a74aca1241059bba7c33711b0178cf2842af97ea47457b962a963b56e067fd64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.5-win32.egg
Algorithm Hash digest
SHA256 ac73021c4e011873e09f465eb90983f408186f3d774486d015e5ada25bedeb3e
MD5 16cbd50d41c93ec502af97e664711ad2
BLAKE2b-256 a1092acb3ed653b54b89eda1a6d4a2863f96b5ab14ee24af0bc346dec548a3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-py2.4-win32.egg
Algorithm Hash digest
SHA256 78e9540287d8b74828111557c453052c92f7a9acb06c10f1a730decf54fc4346
MD5 dd99d22cf3e385bbb35e214355f22b19
BLAKE2b-256 e02847d58cf374e1b1921ff62e48adc113c35c7f19a5733206b70210ba3ea2b6

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3147c1f760178cd20a31d5882c4c589c11377bb5006657bc6770b7656596dc26
MD5 57bb1a1014d6f7d460868aaf1da1010c
BLAKE2b-256 d17cfe6311712f68d5fd93f12bd63079fb09e306cf995a462f5ca9793d8bc43a

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 45af0191ddad29cd41e8f5be4b6deaf3bd19d17752fd19a84650b7bd44da667d
MD5 77d163036c64544e68f5aa2b9595c57c
BLAKE2b-256 d6ae0581d19cb89854db4278b8a5ef4225a1ea51d507c0cc37656468c3d36ed9

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.5-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 2feba92baf6bf187f67dd5ae97636905581c9fe19eaca901375343609568d130
MD5 bee78069d4dc27c5eda8af9b59e7c9b6
BLAKE2b-256 157ba84a072371487da157df968f1aa42615acf6a2a9d5b07cfbd28008e0a2ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2845ec49ac37220d63e0344fea669d67872049854f6928124b5a3f1d00fa495c
MD5 3c250d776ec9957a297ac4dfa56d191f
BLAKE2b-256 99ff02ae9630d6e8694578a96e9575b66f61dc456a338c3b78e94d290dfe67c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 064bd685432b2bb22b2d80167dd9e4c05838656e8efa0e963f6a07961fe7eeb0
MD5 a52a3953dfdba5a2d1616dc9aea90131
BLAKE2b-256 ac757a2b1b6615fb16b5cf62a0a83ce7c3af8800807b755017c48e30df24dbd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b82a3d3a2f89a98a60f542abb6fc99c30ae6a2a6153313b3ec4ee486cc4d4a46
MD5 7d4b6a36bd57aaeea3ae9be8abc8ec33
BLAKE2b-256 7bccdf58c3dc3f4a904d55c7d862e908242df2f03d582b3c82bf1a901301b0bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 376ff27bc6bc6d014dacc9315ab11ca9e4f1f4b546806bad25f6ae7bc32fa43a
MD5 0486b7292e2a4ea1f0b5a202eaa1b5b1
BLAKE2b-256 f37de5c77efc81fa129e0fa28744b103feeb19a106810fb67b34212525f2e61a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 a3231830d6561c129bb3db28a6149cf63616002275e79949127e30ae0bc430f2
MD5 0f4a18d28a54342694b3ad95db9a4256
BLAKE2b-256 7144f943d553e337f4df13754130aec13ac0148f2cd275687e9481f92b0eab77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3d01d3d412db4ba92a9f48338be87b96ce02495b1eb2a510b5879aa2cb6d4f90
MD5 8794bf22598355cdded15b36741d374a
BLAKE2b-256 f853b37ccdb66c9517c603aa163c35e7182702cc46893d42b10e26f08916082c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp33-cp33m-win_amd64.whl
Algorithm Hash digest
SHA256 6003b57da1beb62afcb61d523cab35e7eb36d15ab108dc29754195f2b1c8d72f
MD5 1b24baaa8954e43f6e731e2f947f2989
BLAKE2b-256 d059bea38b84160073ce75a48b20096c0d2ce1d880d62f43910d73becfeebceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 9e4ea3dff7fa472589ca9efe03a9334b638a91a63f5e39fc3fcc2201c35eeef3
MD5 bd9eb95016a31e6b6bab3785ea863a26
BLAKE2b-256 8e0b1ccfce24b6acfd5efb467f226aa71d7e8e257cc6f871a033d6e390349dc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp32-cp32m-win_amd64.whl
Algorithm Hash digest
SHA256 6ec6c6fd7d2cd377a55b84062feb4e40df7bb4f5da30dfac366edba52843db92
MD5 4d6692661a19999ce4ccf27371594233
BLAKE2b-256 6865cab70c2186af028be64f2ecf819fb5ddc93ee21bd4203032fd2eec440907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp32-cp32m-win32.whl
Algorithm Hash digest
SHA256 66b91df771dbe500ac6fc8387d3b4b3adf9511ac1c2ac0da47873abd6df8d157
MD5 6977065ce4ea31fe936199e252371f5c
BLAKE2b-256 ceaf35c7166e0dfbe8199e05e1e2d81f28970b0a9170272e9c4ec3d71996ccc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9d320f9d88dcd2d78cca7ba77535c86edc96321228ed82e24a3f0254b157dbdb
MD5 7f72cc12758312dcc7c544addcd12885
BLAKE2b-256 7f84051c1cb2fb76435409440c34805de67774290c277d5041d899ed8e867bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 354e46ab8effa3032d604acaafa77e402b8d1846317ffef67685507eaf647ca4
MD5 718bb3e3c19fc33c63654c5b60cee7da
BLAKE2b-256 0023f0321f92c35feff1fe8f4d8dd972ce69dbf60bb10f28723b23970090c921

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-cp27-cp27m-macosx_10_12_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.5-cp27-cp27m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 ed0db71b12731602081d0dcd1121983ca40a6540e3adfecd1578f0f79e636551
MD5 bf5e85a26b390bc2bbd0e0cfe282bf63
BLAKE2b-256 b4ff458d3a250f7729403cb83fed0be578140dbe3844a8bb0a6f337b7d10862e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp26-cp26m-win_amd64.whl
Algorithm Hash digest
SHA256 f145a66beb3b1270d6641d8c38d5ff75b105e1ce8adbbaf81d124a57c712d473
MD5 6ac2b38873fd82637d718bc8884e5c28
BLAKE2b-256 cfcc625bdf746e861c6a4936b7e827fdb2334dc419b438f4c48978cd27c5b276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.5-cp26-cp26m-win32.whl
Algorithm Hash digest
SHA256 c68e254d1361e6f9676f81e2d3c6fa8cd7d71ea2587742b87f8df2c65c091b87
MD5 e2ea2502ee48a9ec934e3270a2b7f43e
BLAKE2b-256 5af7d7701c85534e3ae0d0c9943065c1af5b97e37e23b3e4e46c32c9a0828c96

See more details on using hashes here.

File details

Details for the file pymongo-2.9.5-cp26-cp26m-macosx_10_12_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.5-cp26-cp26m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 7bd20d428c559e3e8949505d12f3088acd8aca6bc426127491b19eed6b274ba6
MD5 d24e65348c2e2cd2be8921cca27e7ffd
BLAKE2b-256 fe709e8e241b198f1b858219c9b188bdf8b790228ac054b8d4f4eaec6ae405d0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page