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

This version

2.8

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

Uploaded Source

Built Distributions

pymongo-2.8.win-amd64-py3.4.exe (443.0 kB view details)

Uploaded Source

pymongo-2.8.win-amd64-py3.3.exe (443.1 kB view details)

Uploaded Source

pymongo-2.8.win-amd64-py3.2.exe (445.5 kB view details)

Uploaded Source

pymongo-2.8.win-amd64-py2.7.exe (444.5 kB view details)

Uploaded Source

pymongo-2.8.win-amd64-py2.6.exe (445.0 kB view details)

Uploaded Source

pymongo-2.8.win32-py3.4.exe (409.4 kB view details)

Uploaded Source

pymongo-2.8.win32-py3.3.exe (409.4 kB view details)

Uploaded Source

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

Uploaded Source

pymongo-2.8.win32-py2.7.exe (414.2 kB view details)

Uploaded Source

pymongo-2.8.win32-py2.6.exe (414.7 kB view details)

Uploaded Source

pymongo-2.8.win32-py2.5.exe (280.0 kB view details)

Uploaded Source

pymongo-2.8.win32-py2.4.exe (280.0 kB view details)

Uploaded Source

pymongo-2.8-py3.4-win-amd64.egg (435.5 kB view details)

Uploaded Source

pymongo-2.8-py3.4-win32.egg (433.0 kB view details)

Uploaded Source

pymongo-2.8-py3.4-macosx-10.6-intel.egg (462.0 kB view details)

Uploaded Source

pymongo-2.8-py3.3-win-amd64.egg (442.1 kB view details)

Uploaded Source

pymongo-2.8-py3.3-win32.egg (439.4 kB view details)

Uploaded Source

pymongo-2.8-py3.3-macosx-10.6-x86_64.egg (468.8 kB view details)

Uploaded Source

pymongo-2.8-py3.2-win-amd64.egg (434.7 kB view details)

Uploaded Source

pymongo-2.8-py3.2-win32.egg (431.6 kB view details)

Uploaded Source

pymongo-2.8-py3.2-macosx-10.6-x86_64.egg (461.2 kB view details)

Uploaded Source

pymongo-2.8-py2.7-win-amd64.egg (428.4 kB view details)

Uploaded Source

pymongo-2.8-py2.7-win32.egg (425.6 kB view details)

Uploaded Source

pymongo-2.8-py2.7-macosx-10.10-intel.egg (449.6 kB view details)

Uploaded Source

pymongo-2.8-py2.7-macosx-10.9-intel.egg (449.7 kB view details)

Uploaded Source

pymongo-2.8-py2.7-macosx-10.8-intel.egg (450.5 kB view details)

Uploaded Source

pymongo-2.8-py2.6-win-amd64.egg (429.8 kB view details)

Uploaded Source

pymongo-2.8-py2.6-win32.egg (427.0 kB view details)

Uploaded Source

pymongo-2.8-py2.6-macosx-10.10-intel.egg (450.4 kB view details)

Uploaded Source

pymongo-2.8-py2.6-macosx-10.9-intel.egg (450.5 kB view details)

Uploaded Source

pymongo-2.8-py2.6-macosx-10.8-intel.egg (451.3 kB view details)

Uploaded Source

pymongo-2.8-py2.5-win32.egg (427.3 kB view details)

Uploaded Source

pymongo-2.8-py2.5-macosx-10.9-x86_64.egg (426.8 kB view details)

Uploaded Source

pymongo-2.8-py2.5-macosx-10.8-x86_64.egg (427.0 kB view details)

Uploaded Source

pymongo-2.8-py2.4-win32.egg (431.9 kB view details)

Uploaded Source

pymongo-2.8-cp34-none-win_amd64.whl (218.4 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-2.8-cp34-none-win32.whl (216.0 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-2.8-cp34-cp34m-macosx_10_6_intel.whl (244.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-2.8-cp33-none-win_amd64.whl (218.6 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-2.8-cp33-none-win32.whl (216.1 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-2.8-cp33-cp33m-macosx_10_6_x86_64.whl (244.7 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-2.8-cp32-none-win_amd64.whl (218.9 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-2.8-cp32-none-win32.whl (216.0 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-2.8-cp32-cp32m-macosx_10_6_x86_64.whl (244.8 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-2.8-cp27-none-win_amd64.whl (218.4 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-2.8-cp27-none-win32.whl (215.8 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-2.8-cp27-none-macosx_10_10_intel.whl (239.1 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-2.8-cp27-none-macosx_10_9_intel.whl (239.2 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-2.8-cp27-none-macosx_10_8_intel.whl (240.1 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-2.8-cp26-none-win_amd64.whl (219.0 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-2.8-cp26-none-win32.whl (216.3 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-2.8-cp26-none-macosx_10_10_intel.whl (239.0 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-2.8-cp26-none-macosx_10_9_intel.whl (239.2 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-2.8-cp26-none-macosx_10_8_intel.whl (240.1 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.8.tar.gz
Algorithm Hash digest
SHA256 0543f65364fb54fb54b954136cf6b5e689ab12a7c1d15c59c52d3d0c5fa73935
MD5 23100361c9af1904eb2d7722f2658114
BLAKE2b-256 d62d580ac9ea77d2b03c53c6f0a7248edf668577d5e1e4b9f37d278f90b52cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 9b0cf867737561320149aa8253570666ae6f3149da4c5d2fd8c2774689968e86
MD5 68a5f88c1abd3cee737805e4a20f77b3
BLAKE2b-256 14e9b4c72891f738f759078417a5d9882de57db60f8a27f1177e0ded098ddc2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 796a79499a55a6f888f2059d8caf96adfb53fb2781044c4aa14c2f05b145b4b7
MD5 b380d799f4c893e9273546809e05601e
BLAKE2b-256 7ca96becf2f8375fd1db61e932739863cb258c4d3243744d12ae8a94ea5cea85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 59b53ffc2062be47dc68d5f3363e6c3de21899c20537b185e4e6262bc592a4c0
MD5 9537451f46244200d16d0484250c3a23
BLAKE2b-256 8cd48d83db2cd18894a022c7ce8b32a16c793be2eca6bd7fd360f8c9005b5513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 149973182942a0c7f2c1f6c2bf0f21c4431fcec7e88d7cc5246a26b3201d8a51
MD5 a2300efcc821260e7e739a0cbdea624b
BLAKE2b-256 6837746aae47dcb78c245b84c0ed5dbd860d1ab404675e3359456ef1d4ce1612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 04c8e3addc6d695bb6dc2924c492bc12f07ebe7c939c2f6cfa5d0e0f016d4640
MD5 2cea0d1cf520c223fb1eb1b78d70fc75
BLAKE2b-256 3a23958a20dedb8966d6e427c8d28cd10470010e71e62f525228749965371b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win32-py3.4.exe
Algorithm Hash digest
SHA256 399521acf66031d87bcf0b005aaf479d519f8d4c40b1f2ab748ae8aaa3fd3989
MD5 95abff7542369865da1aba6883684a2f
BLAKE2b-256 d9a5c1af9abe4465e13d1f861303062494dd9d7d807268d06898ee737d0ca5d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win32-py3.3.exe
Algorithm Hash digest
SHA256 f2632e377d9d9cf99716996907e2886e8d6fdd362c04fc7c7b375b990b67cf9b
MD5 7574dc6f8abd721ecc5c89d271654bd4
BLAKE2b-256 142389d036ef939e2634cc2a04743ecf42521425dea6be63b74136d03460c591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win32-py3.2.exe
Algorithm Hash digest
SHA256 bfc227896c05286b9eb09f55d0b0afb7b4a10b39205dec109cbf29e333c89d4b
MD5 44ba5acaf7aea5ee5bd7764d943db7b4
BLAKE2b-256 b4af43b786170f9f60a54f5eac3c44656a61d533c6d6d9adb66ad484f006cf5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win32-py2.7.exe
Algorithm Hash digest
SHA256 3236492e8e140f5583819593f95f0067e11f54ca2d669ffd45e4e19e6862b132
MD5 e5545daf3fe4f6e23e80f6ff08a7b33c
BLAKE2b-256 258116458afe7152382a9f50842a4e6bc1ee1729815005fb397d1a9d44ec1589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win32-py2.6.exe
Algorithm Hash digest
SHA256 bc32cfd807d6da908ae6314e8fcbf0ffa713c50edd39b12ef4d592628f8d5fbf
MD5 0571dd4d12230914253d791772bdcb8b
BLAKE2b-256 427aeb9ef68dce51c11cf6cc89c620902fa6514cf0073330fdccea5cacd11c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win32-py2.5.exe
Algorithm Hash digest
SHA256 07fba04f6cd7e3a9a2e6054632cc940236196ab305c0a52a76b81f4b482ad5f9
MD5 75fce3cc693dd48c537b75b8ab7dd73a
BLAKE2b-256 373d44218411cd884226d493317f9c36dc53728b2980ad2ddde6567db832bde3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8.win32-py2.4.exe
Algorithm Hash digest
SHA256 552b53e3f4071959f11ccb052a7ab6c137bb6dffd1d819f21d7ab143d605e951
MD5 300bb01e3d3c3ded3c11b6ee477de1c2
BLAKE2b-256 e4538ba2a83a37bef3466045ea88ebba488119eed929088a26bcff6eaa1fcadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 386d89696c17f991386a722e4c7207e6e36e22ff628145524231d7b5a8c6192a
MD5 1e3d0443a9bc01919324643c30ebfec8
BLAKE2b-256 49cf977def61998a06ec31dbeec8bf3eb9afb845df236de73720abdfb6c38803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.4-win32.egg
Algorithm Hash digest
SHA256 770252171ce59d3ca99a5823847210ed52b9ccd669c1b294aed61a9b47a08e2b
MD5 151d6749e1ba3326bbbb61bb96fb7e08
BLAKE2b-256 115309e47142d0f5215f341c7f4dade829f03cef81c03d8d33274eea125d8928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 d26765a1e8389343199c05c6a2bc96f0b5a3b16ae5745fd849f3ae1f7314c999
MD5 3b2ba862b1b3e9b5f5a55d553101df77
BLAKE2b-256 62ea64e207b8b18221597e87a5e3e0137c2a7e0a965c90f171ba61f7cbb53c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 d6fbcc3562aed1bfa1d76063065dad7f64f310a480c7304a387f75ec8c3188f0
MD5 91d55c421ae23452e6e00f8078c92008
BLAKE2b-256 a75402609e860c5d3b289ec947bc22ef4b42c803b244a827c8700d33aa63075b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.3-win32.egg
Algorithm Hash digest
SHA256 b7d83ebaf4a120f7991fd4348ac63d96799e9d766aaea5ea6af384e6ce94a2e6
MD5 73284138081ed77974890484e9e40881
BLAKE2b-256 1d5d1eaaecb26e650e857db941362e6f37dac399ba4ce188cc81de2820fc69de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 ba5c4b4b91aba994e330bb4f36f3d63a8aff662684abc56d8c7ab0c5a0002c15
MD5 e8d17f02b65c0ff482dad4001a2d3af1
BLAKE2b-256 d0d41c344585e70dc87f6b879fc7bbccd8f7b374408e253c839c0e1e2fb503ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 1326e29c7ca011329b041e9506f4663b5c1accb68ccf16b13a4bc27dc1326c22
MD5 ff810442f9a4f8b78208b2b654c5ee7a
BLAKE2b-256 bfdf7dc40834e2412daf2f65240744969e702d8cf9e7909d189320aefcc88f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.2-win32.egg
Algorithm Hash digest
SHA256 5b92b313a5800fe92e9fe814215f5f01826162654e65f45cbd2b07e2fb16c7f5
MD5 06c7c3d799da61be4a1a29daac857033
BLAKE2b-256 3167ebb518dcf8bcd312003ca2773f3acee31df2be8ed6e1bf8519544d02be62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 f5a6c33f8097d1c7e955754871163ad824b040d7e3a38a5de33504f5733a8eb9
MD5 9a6d55a495166b6fe38df794ed0602ce
BLAKE2b-256 d4aea0c8eccaf39dea2ef0cfeb8d5a5543d5aecc2dad6e03a71254b855d2c140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 911620b04d736f147f97b339ef948622c9bfd2a2398b86a0b135851e4b89c2b9
MD5 88f44c1b3a30fdb577e58913636bf6bd
BLAKE2b-256 1899483444adb0957d1c1db8234ab1ed8459fba748b0d242dc772209babbee4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.7-win32.egg
Algorithm Hash digest
SHA256 95a92a6c935e5fffd331d3bc1417d2c731b44aa31b616ac2bad6e7f06de6d739
MD5 5232230fdc5e5b26cc84c8f2c09e538d
BLAKE2b-256 efeb935aa17de59a4430ff2ded38def018b13e725a5a6f073c48a98ab3614b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 2977640df42ee4b359009586917e9ae43a00c781dc083e2e3509623e9a63514f
MD5 f24c1350f06faf18e5059ef40b147468
BLAKE2b-256 24938c630f331c7f04ae38cde1fd32154566a1edcbddfef2c382ee1ae154e974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 ec7bce08532ef294cec0210091fa5a5d1065f4956e7700315c19362ed91286b9
MD5 6e775831cda9b550f6a3c0341ca6c1f1
BLAKE2b-256 7b0fa618be6b07852a0489329dcadb53d019b72051d88a287af93baff8090f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 c513933616c25ac67856f3c5278e34008e2f405e8f14eed1bea3ac24fbda2ef0
MD5 bed5b42c03262ff9ab2ad82ff1d2a726
BLAKE2b-256 2f101b854c2fb9eaec3d297f3a7e3e4a129b9c27576e364effc869fcfc0ca5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 ac49ffb70ea8a85e17c823a8b9692e43c1f97511eef5df324bba5470f6c8ea62
MD5 225f9433e3f287d726adde75f1f52e1e
BLAKE2b-256 8e1e9ffb1b564abbeb8f34c8c4ccb7bceec73a08c5aace9a8ad53c0e2da8dcc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.6-win32.egg
Algorithm Hash digest
SHA256 eaec05ac650811aa9faeda3cc07b4ab20f973319bac658d982dce752f68c87fe
MD5 aa02a20598139445373eef937a088453
BLAKE2b-256 74f9bf75da9d33c94ffaeb03467b77ae44c9308eadb8cd3d24f624b17eb0834d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 8d0cdf4319d36f567bc9d6ad9d61ae28986c2e7a42b307ce19460e39ed95cf5d
MD5 fa5699d9d59742c73b6c01d7a4c8f6b1
BLAKE2b-256 fe01faa7810ff39a34bf1730c8d6743e706958dd4cbbdd20191ed5b9a4d3e8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 582d6501f087d8421c58190e840799e7734fac2aabd1d016e2e1e21bbf1581cf
MD5 ecda0bc9b78de8f8c910020ee2304eb7
BLAKE2b-256 988f432d027109a3010f574ae91f7228700dc6509d6d0f6a5f1119cd12defa91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 f14c0636eda28412ebb2e583cc1453b65c44ead96bf0381c0d49bb63162f7712
MD5 8d44334e3378d1cae55eb289629fbe77
BLAKE2b-256 3491f9ca22dab60b36e830ba48ed53e69fac6485dba74abbf655ff27cfd243dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.5-win32.egg
Algorithm Hash digest
SHA256 cbd65a8357f50f3d79fdc4027f204b8a295e09b474614432800a5799a207fbbf
MD5 985befa463310cead5fc1a101d8e70dd
BLAKE2b-256 1e227e4b1fffa4f0caaaf6c5e3ea91f59b1da0388b7e5799ee7e96327e6122e9

See more details on using hashes here.

File details

Details for the file pymongo-2.8-py2.5-macosx-10.9-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.8-py2.5-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 1d96aaac7806697648443922770dce6a49d9d46f7ae1e71ea87485321ec55adb
MD5 c438a421f4a84dd378100604708605b0
BLAKE2b-256 bc0df076b5bb2acfcc8f2102f6c5cf4c5319aaceebba9899a323c18162fbbd64

See more details on using hashes here.

File details

Details for the file pymongo-2.8-py2.5-macosx-10.8-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.8-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 c1443b59a7fcfa5db732a19c077057dd8dc65836d0eb951fc0db2731cffa30ee
MD5 abdf75d5c6bc5a0f7bcde5f5c2ffce71
BLAKE2b-256 fca937f8b6370e563894635da1f9dfa4739da94f04225c874c2ae0cd1633d76f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-py2.4-win32.egg
Algorithm Hash digest
SHA256 df68d27d02cebd56a5fa584fe3242ee6634ca01c811305eef4dbee336d4a8ef0
MD5 8faa576ce18615020c76a9619d798674
BLAKE2b-256 4f1f65b0886adba48e982436af366af0247550075f24e2ad8e362308af271767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 ea57ecaa11b912f2b0339de3b59b27971c7315623f28fb368fd2ccaa35f8c8c8
MD5 103252f8d209aecdf949c4a7b2265643
BLAKE2b-256 da454919c33891716ae7792e9b6528b050a0962ab8da8e149823f3f7b78f012d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp34-none-win32.whl
Algorithm Hash digest
SHA256 2f3a720aaf3c7f376754bdd128007b792af6fc4c1ad215f18dcb8918ade7ef36
MD5 f4929bd68ec11c96ac552f143de38b0c
BLAKE2b-256 2512b1d37e2ba3a084bba582549675ecc658742ea1afaf9eb2c15dbe25e43c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 39e014abb53ed5ef302b69a07b1e6c6ef1d7395af15283001148949ce9676c2f
MD5 8e3ff1c48c504fa30b8f34d1991ad455
BLAKE2b-256 665f475b41dda347f99ff1479de4b23287ef52d1921c75987e788c9e2bfee5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 28d06f38fb8b20df792c3436724041c330902f3bfdfaa71e6e5825a00f328179
MD5 7585182756f0a62be62eb17d1b9239cc
BLAKE2b-256 2c17a3e4e75269f83588370cb4993d37abc45f125a3ab92fe4aeb3067f064866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp33-none-win32.whl
Algorithm Hash digest
SHA256 66e946612d932f6b5800c6324fd9bcbadd16de379f4ec56e57538ceff8c683fd
MD5 6a9258d9865652a91ecd6f089f0fe984
BLAKE2b-256 bda25b8846d262b7749c701f856f4a3eca11a9133bd2836975d1160e094aeacc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 1108c3f21541b03d1a8ff49daea5cdbf76da75ff9c09057d8cb0b16c17933ef1
MD5 d00cc91ecd6c7c9360b5e6db063e7a49
BLAKE2b-256 89e72e7836c11e4424442f7f7fa04ccb4fb9b58719c2184e35961aa0be437e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 751918b7dc3bbbc05c071073a50e85a4a265fe5ca2d6ed939d65c1403a0701b0
MD5 21ca96c9af8735278c9763f4e737ef62
BLAKE2b-256 1a8b109f8b19d3a9ed38aca100f5607608b9991840e78847677edb4cdd9a33bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp32-none-win32.whl
Algorithm Hash digest
SHA256 fdcc535924c10515e588d841a2cfe51debd760a2c636168182cb56b63ba42a89
MD5 55fb33838d612533465725f25a5b28f5
BLAKE2b-256 238e398a35739e9b90b74a2686420785d18f7f8d78bdf944694c2522722a06db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 e8a60148a665ff8287559e8fb3835cc144256ee708e3afd3bfa9f23766350af7
MD5 f10f308052860f56b6561e6e85f7f5f7
BLAKE2b-256 2ac673dc6fe30d9ec673e0c18a7d6e680f76c94e787e5c355d9f3eda6ee427a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 a99b554bbeb2f3c8b2df793f187f5c969a3871aa613abd93cc3280c353573dd1
MD5 5c4e328e0584b1221e2c7c4d624b18f3
BLAKE2b-256 974f01d65b04f946d2fcee0ca644c3ca83f054dc2c44cffebc7a374496cdacb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp27-none-win32.whl
Algorithm Hash digest
SHA256 e87c320a1f723dde4ae13bb56b8d91c1af39d99b79ee7b2484bf38f6a447b2d2
MD5 c5cd308834ce4db53d07113ad87d5fe4
BLAKE2b-256 d2db2aae6de00dc16653e7442dbfed1f065f37c50d98c73f491d4732d2692566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 e7483795284e961e33f78637936b14dd99fdc4c004ffdcbdec9b0e5017a7e7bf
MD5 4539ae69c1670c9e896a57e0119b8892
BLAKE2b-256 5f99693c1bf974d51501ee6c349153fa2a92790ec3ecab260f8a005a159165df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 91bd48766b99094f646ebf34b35055aa2660d6c1fee7b8d5102ee838213f9387
MD5 59c2e650d31037e2162c71bf7c3a0a5f
BLAKE2b-256 d4d7213c7c0540883d67dd3259a2e14ed60368629eaadceb699e5aac68164791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 65e217533c332a85dfe58e0fc1f44521103f030f97e5429499e0c880f50b666d
MD5 37a87f08a29ccc59904c831abe0e9934
BLAKE2b-256 b6765cb98e2ddf07eeaf2e37d612f7f8f8d3f390570f97d52f0950fb562182f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 e410bfbfc880d63c608c48a787db46284e68642197068855ef1dfc5ff2771b01
MD5 a7deab4f3509f2dfcbc37c02d7c2bacf
BLAKE2b-256 f7637f31cea9f2ebec6b6956c0fb4b53dd277d8fdafb8157cf1fe0057d3d3ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp26-none-win32.whl
Algorithm Hash digest
SHA256 c1aedbc6044d5e70ea7a8f81205ae89742e7f58d96fd4cb7ef17312e016f20aa
MD5 86e795478bff0518d34745c224a419d1
BLAKE2b-256 bf3073d3f970594c5a21dbcf008b1b525af499f31f27b2b0aed92a0ab53db783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 8bc017a05f95e6bcb281cc64386822af484f04e8e74a2eb2351c96615a97490f
MD5 66e7319d9bdccd9f0bd76968287188f9
BLAKE2b-256 a49764449ff6c6d28bdd4b1a8e65d7b96fe3e5263bfc9de9f7f63f2f59c03bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 cf8d4cb28188705da876eb64adacf5c582769dd7c96425e8aaba3e0d6e2d9e77
MD5 5679dc24f81851092dc7bf561e77dc82
BLAKE2b-256 d235d539d31133a8dd2a83cd1bff0152dd46c2f6f3607e52304ad49fab369eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.8-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 f06963ac44d5d8110cf7a3602c990f9196c06160b73a58bf54285667e71d9a22
MD5 c3a5babb9205da7a8f0a724cd350caa9
BLAKE2b-256 8956dfca895ad655443cf6837663193a0876b61f95af1fd7e7a3d7d06d00bcca

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