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.

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.

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

Uploaded Source

Built Distributions

pymongo-2.7.1.win-amd64-py3.4.exe (433.9 kB view details)

Uploaded Source

pymongo-2.7.1.win-amd64-py3.3.exe (434.0 kB view details)

Uploaded Source

pymongo-2.7.1.win-amd64-py3.2.exe (436.4 kB view details)

Uploaded Source

pymongo-2.7.1.win-amd64-py2.7.exe (435.3 kB view details)

Uploaded Source

pymongo-2.7.1.win-amd64-py2.6.exe (435.9 kB view details)

Uploaded Source

pymongo-2.7.1.win32-py3.4.exe (400.3 kB view details)

Uploaded Source

pymongo-2.7.1.win32-py3.3.exe (400.3 kB view details)

Uploaded Source

pymongo-2.7.1.win32-py3.2.exe (405.3 kB view details)

Uploaded Source

pymongo-2.7.1.win32-py2.7.exe (405.0 kB view details)

Uploaded Source

pymongo-2.7.1.win32-py2.6.exe (405.6 kB view details)

Uploaded Source

pymongo-2.7.1.win32-py2.5.exe (270.9 kB view details)

Uploaded Source

pymongo-2.7.1.win32-py2.4.exe (270.9 kB view details)

Uploaded Source

pymongo-2.7.1-py3.4-win-amd64.egg (417.6 kB view details)

Uploaded Source

pymongo-2.7.1-py3.4-win32.egg (415.0 kB view details)

Uploaded Source

pymongo-2.7.1-py3.4-macosx-10.6-intel.egg (444.1 kB view details)

Uploaded Source

pymongo-2.7.1-py3.3-win-amd64.egg (423.9 kB view details)

Uploaded Source

pymongo-2.7.1-py3.3-win32.egg (421.2 kB view details)

Uploaded Source

pymongo-2.7.1-py3.3-macosx-10.6-intel.egg (450.6 kB view details)

Uploaded Source

pymongo-2.7.1-py3.2-win-amd64.egg (416.8 kB view details)

Uploaded Source

pymongo-2.7.1-py3.2-win32.egg (413.6 kB view details)

Uploaded Source

pymongo-2.7.1-py3.2-macosx-10.6-intel.egg (443.2 kB view details)

Uploaded Source

pymongo-2.7.1-py2.7-win-amd64.egg (410.7 kB view details)

Uploaded Source

pymongo-2.7.1-py2.7-win32.egg (407.8 kB view details)

Uploaded Source

pymongo-2.7.1-py2.7-macosx-10.9-intel.egg (431.9 kB view details)

Uploaded Source

pymongo-2.7.1-py2.7-macosx-10.8-intel.egg (432.8 kB view details)

Uploaded Source

pymongo-2.7.1-py2.7-macosx-10.7-intel.egg (432.4 kB view details)

Uploaded Source

pymongo-2.7.1-py2.6-win-amd64.egg (412.0 kB view details)

Uploaded Source

pymongo-2.7.1-py2.6-win32.egg (409.1 kB view details)

Uploaded Source

pymongo-2.7.1-py2.6-macosx-10.9-intel.egg (432.6 kB view details)

Uploaded Source

pymongo-2.7.1-py2.6-macosx-10.8-intel.egg (433.5 kB view details)

Uploaded Source

pymongo-2.7.1-py2.6-macosx-10.7-intel.egg (433.1 kB view details)

Uploaded Source

pymongo-2.7.1-py2.5-win32.egg (409.4 kB view details)

Uploaded Source

pymongo-2.7.1-py2.5-macosx-10.9-x86_64.egg (409.0 kB view details)

Uploaded Source

pymongo-2.7.1-py2.5-macosx-10.8-x86_64.egg (409.2 kB view details)

Uploaded Source

pymongo-2.7.1-py2.5-macosx-10.7-x86_64.egg (408.9 kB view details)

Uploaded Source

pymongo-2.7.1-py2.4-win32.egg (413.6 kB view details)

Uploaded Source

pymongo-2.7.1-cp34-none-win_amd64.whl (209.8 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-2.7.1-cp34-none-win32.whl (207.4 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-2.7.1-cp34-cp34m-macosx_10_6_intel.whl (236.1 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-2.7.1-cp33-none-win_amd64.whl (210.0 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-2.7.1-cp33-none-win32.whl (207.5 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-2.7.1-cp33-cp33m-macosx_10_6_intel.whl (236.3 kB view details)

Uploaded CPython 3.3m macOS 10.6+ intel

pymongo-2.7.1-cp32-none-win_amd64.whl (210.3 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-2.7.1-cp32-none-win32.whl (207.3 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-2.7.1-cp32-cp32m-macosx_10_6_intel.whl (236.3 kB view details)

Uploaded CPython 3.2m macOS 10.6+ intel

pymongo-2.7.1-cp27-none-win_amd64.whl (209.8 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-2.7.1-cp27-none-win32.whl (207.1 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-2.7.1-cp27-none-macosx_10_9_intel.whl (230.6 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-2.7.1-cp27-none-macosx_10_8_intel.whl (231.5 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-2.7.1-cp27-none-macosx_10_7_intel.whl (231.1 kB view details)

Uploaded CPython 2.7 macOS 10.7+ intel

pymongo-2.7.1-cp26-none-win_amd64.whl (210.3 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-2.7.1-cp26-none-win32.whl (207.7 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-2.7.1-cp26-none-macosx_10_9_intel.whl (230.6 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-2.7.1-cp26-none-macosx_10_8_intel.whl (231.4 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

pymongo-2.7.1-cp26-none-macosx_10_7_intel.whl (231.1 kB view details)

Uploaded CPython 2.6 macOS 10.7+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.7.1.tar.gz
Algorithm Hash digest
SHA256 4810d302b8e132b99bfb6eeabcc71490cfc9d4064d84df593feb305121ed3535
MD5 4e4c75e5362f422edb47d27ea6d17a96
BLAKE2b-256 6325819aa53171d4034fa2ff7acc61215016d25db6c7414cd82fd34fdc52a349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 5c09391d0ea7f2e18dc516574d111fbe43899e9431f6d471d5555e271f57ab52
MD5 32cb739d799fb4f7780243ac94a9b967
BLAKE2b-256 bfc7ad41e85411d39f63f811c35680b65f4b22d80d79cb770821e3cda1fe1c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 006afed04d63502c7ce627bc72c98677fcdf7e1f2a1b18d150b7ba860c4fe97d
MD5 0546ecc30b139b977b145f1cff20dec9
BLAKE2b-256 da9ef324af15202aac9607ff446686d202be310c3876179129cabcd8396283e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 5b8261d46ff0f271bcf73fdb15358b758dc34e90fd337389cd238c2c627aaa9f
MD5 add47e8c3dfbbe1d1e6fbd0896c271b9
BLAKE2b-256 82e4817ef21092ce5ea765169456dcb9dbb645dbb219e5f667201f8dcdc5b374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 cbbc20108fdad3a230213ce0db28f116185342b5f31cc4faa552dd0dfc512ff2
MD5 a7dc90a161d0b11cf64548ef7585125b
BLAKE2b-256 f0f67b3dcec29c7a8002054c8df4fdf28ab95f94c6db26d5901e40b73aacf0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 a329a7908acacb68e61167865f82e5c915934e6f326b196d8b937cc22f0c160c
MD5 84c710c90e48155f353b180abac3ff90
BLAKE2b-256 df10acb7e79fa6c11d04054f6b4e8aa89b9bd1bbdfa19c5433e0f923312bac7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win32-py3.4.exe
Algorithm Hash digest
SHA256 2309cad9c3b46f577f1f9aad80af6b8f2f9507a82606186e26dfcf674e76e761
MD5 7937cf7568802b23d3600d58db1dc59c
BLAKE2b-256 a7ebf6dd02c8efdc3c93cbef97925181f3629009e0e9212a487ec75808255b26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 b678d16b6ca72fb7e60105e962272605302cc48f399d67d66cbc8d90903b86ef
MD5 64ec941be9af8b35c4a9c51eb0bf89eb
BLAKE2b-256 251fdb5da9fb308c7e41cf71682f3a1df84a48a7ce8b0af8ccbeacb36ed3d299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win32-py3.2.exe
Algorithm Hash digest
SHA256 c6c32da2a186752f4e973e28dca572008deb616315de88412d5d5c515fbdcc87
MD5 1b29c0e44fb98411885b161d31b7c1dc
BLAKE2b-256 d2c3bb64059ecb6b6a839e96ad16298ab2dc48b24144254279b60d86cf01312b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 5285ac47f343ac23458457d1028cb9895c4249b958b1f2e129f897345438ec7b
MD5 d4c1c5cbc1651fe5af35dc2a915b8803
BLAKE2b-256 5abf03337dc8d53e4b7ca45a8ac88ff8e8d672ea2d9f0c7e9ca64cbc3702c3de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win32-py2.6.exe
Algorithm Hash digest
SHA256 767f1b4772d6cd95e398aac4d1366ea24bd22ab205fc94cf66a69777d9787049
MD5 2faf16e9196f0b8b040b3facf25e414e
BLAKE2b-256 2af3e44a4d26139b64b9ec9a62ad6f3c8f40ddba856bbc7451e8d0797b4d9b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win32-py2.5.exe
Algorithm Hash digest
SHA256 ed5021e8faaa2a47354a72da20dfb10319597899b23124883647e0550d56e38d
MD5 f679d59abf1d10b58c07f7d747571288
BLAKE2b-256 40f7c6d6435e8d458dba2527de975084c7c9b0e30c67424116e2e7b9868d1f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1.win32-py2.4.exe
Algorithm Hash digest
SHA256 3b2cdc877dcca3b2ff8f45836f04687461f5179c127bb16f5ee24f36f1beec93
MD5 f28aa138d49baadedade3656fbbb3628
BLAKE2b-256 a81437cd572af517bb61ceaa28cadf37170cd1fbfe923d46c4f04414d24f97aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 adf5c2ad974b1f0ad3b297e7f95f6e5938cda9ef298b3e02022c64012dba4249
MD5 fc41b053ad8b6dd9be81ef5e6519711f
BLAKE2b-256 4f90c75e2c1d9096c61a4df062a3e15d93f02a2abaeb36f66396e0299f8664b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 0a21c06b93fc05769a4d1570adb75579f75f8adb246b10517b161c3c30b9f333
MD5 04166ede9cc135ca23fcbe51794c6ac6
BLAKE2b-256 0d8db6d8d2776d3fcd6ef880807fbe29f9b8071f8f613ecdc3609d734902365b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 67f07eaf842372f47ccea6ab3556dce234700ab7a5bf1b7f63654d7db0e72288
MD5 eacd727d744dac2352a52c109b4f7dee
BLAKE2b-256 fe84b6a306792ea5393eb9b4992dca125f82fa5459d0a4c4f1ba6c8cd8f5ed87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 adf4dbd7ebc908051dcba75f8b7aec00e9d246ef724c6c079533ff5ee6d774ed
MD5 ba93b4a94c79af4f4f6238babbbb9eb4
BLAKE2b-256 c887c793fb23f5336bef524330e1038437eff66ba7dbbad49a71fc2a33684db9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 3a2be467c312d35865133712ae23c4db94fcbcfa899f50bc1f0408fa93e85e03
MD5 65e4272b93a687f7ecd4849fd9588846
BLAKE2b-256 4cbb0b2a4e536fa8a8f3a0d2977ae44bb0b1afbec9e920c8aaa9a377defc3d45

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-py3.3-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.3-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 8e5d22ff57c3d986a3fc58588d58f0c45c80a83812e4a3b9feea96475d53f1ed
MD5 8e23b6ba97ca4e0bdcc55eea3e8b5e0a
BLAKE2b-256 48e3d3cd2329a8b6f5e7df9d160005f09ccdbff9fcaf206deb11e4c2901c3dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 d050e920d08afd7aa813d302f664caa84241bbeca252d83524966b5ef00f4889
MD5 4627401591c3b266720f768b7014f06c
BLAKE2b-256 d50a2f76f92d716dda21cd26af1a9c21724bd949108282e8bc5b7fff263a59f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.2-win32.egg
Algorithm Hash digest
SHA256 4bff9d0130aba83cb7c0d2f131ea341f78cf3a061ae4779a9074cd22916d59dc
MD5 4fb10b96fb1496cf4c835606fae8a17f
BLAKE2b-256 8061fb3e81f7d9db1aefdcc01a2efcfe7da7069fbc1cc53663f5ae59c3bea4d7

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-py3.2-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.7.1-py3.2-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 d830e76dabe5c15cdee368375139d6b2b4d6616260c26cdfa200ca04c5bf11b9
MD5 745a93e6113df65bae22705cca779634
BLAKE2b-256 348eac89ae26c99cdfcc81f1b8d58926558c8f5dee14bb47207775a4dad5aaab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 647924cfeaab014ecccacff9b069c8df13513e9c65d221323e447d31c14d2581
MD5 49bd5194ac3aa12f6f9ed682be617b05
BLAKE2b-256 7ecf39c6aff3ae79e6580f7892f1902696d7294151120ad4775e5a7980c471a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 8380dab1dd9c6f1da178cd3ac98fc9ac00edf406cd531ba9db78e02be4bb2ee5
MD5 de43491045d0254df616d3b11c830ecd
BLAKE2b-256 de5072be3f8f24d582c17b0bdc9a4253ec5bf9f82a831c4c1676d4a4e86453da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 cf4e8f3b4fcc640bc1030e9352b7508f00a69641e6ff68f327ef9513740e7534
MD5 046e783e1af2e6d0f831c9a2f84340bc
BLAKE2b-256 d578edf986dbbb491a0a1d4c5794978c475c81ddaf040a186d2f4c35b6de327e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 44510e17d90c632f21d8d015e83cac68d126b23eff6c01c8c2f6484ba923ac92
MD5 003dc975d57317fb4945606f11716fb4
BLAKE2b-256 27f8d5a3e48d475058c69fe02e387901f57be02823db08734d8f19551ca4c7f8

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-py2.7-macosx-10.7-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.7-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 60cf559bb63336b9f6ac23d067cee2ea685826e784e80e9812ab9e7680f7f690
MD5 c6081db59f073810ff9438cd79151106
BLAKE2b-256 7e5ad696d60f6aaab940fd6c19fd06977363d4e7a97c5f117185a3e42045c72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 4c936b93444d783e9de5b2ae6b3e240ad4f96c069578fcf3b407df7f0b79c207
MD5 2d2a4efda178f96252f589b679c6a662
BLAKE2b-256 5495aac51f86300c550860d56374bdb440c8bf66c7ce4c56db27368bfa4b3d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 8f02097ebc51494123258b1f8b95faa73c87993847717a348a6b4b844427f2d3
MD5 4a9370161c6f4425b9603e15995ebccf
BLAKE2b-256 cfbf7b9a1f0c4da45c2cbceab7752786d1844625c57c2888b76aa7524ead69d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 676a5036681193539ef319f7ff0d6301c1bac203bcbb76121ba686b24a626292
MD5 33b63090ac0bd444d17f4b7803db61dd
BLAKE2b-256 b9ce8158602917d67a82b5904b7566e15694d75d231709c2a5436e71aa368f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 2c77b2ff1275a08ea18fe2c2177c976fc2873fbbe7e0568d068ed325ea75be3e
MD5 09dc643ce74df46afb3c4984bb41e804
BLAKE2b-256 4622ba461c1656b1430817e1544b58566cd1b9b0b19f120893905f57edd2ceaf

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-py2.6-macosx-10.7-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.6-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 7529b46b1f55ba516d3314bab7bae8c5ef3aa209f037808faa3b178b0806c105
MD5 3412435256af18a43c80cbc9ffb2ad19
BLAKE2b-256 fc9e3315ac371e10f5f74b144310520afcf7a36d05b44a03587780abd01afaa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.5-win32.egg
Algorithm Hash digest
SHA256 575114c464c809a6956f83fedfe907dd942c6ee8286253a0f85d3e27bcc626cb
MD5 48b9a6bab8acd019ec485c45754b14fe
BLAKE2b-256 bc8c12fc39dde333c39331c5df457a422935a1e8c71ee56050eacbe89999d15d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.5-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 53f03b9b021a4e52e7e55f05a63302474f45666b84ef14e06d6039ed68bfe3f2
MD5 6c5ff22f543ba787a84480c01524803d
BLAKE2b-256 33bbe77c2c3c3982b3c1d22db2e8d73588548b023841b35716632a0722326fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 4f8990529dd0944eef8f4f6ec24893c1c6478b7caaac55cf95ff3b9a449551d7
MD5 8d2a6948afba8c9fe4a6fa0616244423
BLAKE2b-256 90b20078bfa62cd259e83bc5780bf516e92cc39e1a17ec2361952c149a45c5c9

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-py2.5-macosx-10.7-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.5-macosx-10.7-x86_64.egg
Algorithm Hash digest
SHA256 a85037af7648619e910afb9f5f37c6bad1c3368d1423602956d0593dd9ba13e1
MD5 7a1576da21f7739d233e55065480df92
BLAKE2b-256 cca0909da06cf114d4605422de14a4b8fab7c4b056107e3c74319d7754eecd23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-py2.4-win32.egg
Algorithm Hash digest
SHA256 9b81bb6802db457bf1119b40b2492e04e6e3aa0ab5579729592bffd7c615d437
MD5 b8806767f5b12cb15b765f8bc628ca09
BLAKE2b-256 2e81c05ffa2f395cd757661e2f88857f7e1dab55de3ca34546dfa290ee815761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 1a1d81d5825a641a6a473f493c7c40e01bd6a2686bc3f236b037dcd447d95218
MD5 9dfc8783e4c751e416f6b527201ba35e
BLAKE2b-256 90b077c7bf4b04a1183fd81278274e109bc88de7060f5fc01c319b778ae1801a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp34-none-win32.whl
Algorithm Hash digest
SHA256 8308a298a5d595210c6efcffbd94580b8780810186d0a21781e8d4383935e788
MD5 9f55462786a61bdbabb9fa0200e37432
BLAKE2b-256 de79a891d974c42c075188f538b0bf8cc9700fbfc562540a3733a121fcf41a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 75911fd9f5fcf99f338218206d3e2c0cde8b3eae9dd33acdf7e204c8e4fbe394
MD5 c8a9e5795588525096623b3b7100249e
BLAKE2b-256 2962036cec004ec183e5369f318100b92c590ae296aef9667f6f0e6dbc67936c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 d2828b7ead7c572748f7fbffd2c1bfa04681f902c952429615e551d9e67ba159
MD5 a7b686a4a03f124af0c7da1ee4fd6e06
BLAKE2b-256 95a768ada058df5f2cdcac74447b879eb6e772a4a3535f03bbe37693ca0d56e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp33-none-win32.whl
Algorithm Hash digest
SHA256 358671142395cd39cec19586b425a093024fe0750ca48d731795ff0f9e96a18d
MD5 7fbb0c675f3817a1ed9c2106e805656a
BLAKE2b-256 1fc300a0e2bffa1329b8298c0850ddb68d30a23bb0271c800acdb518173e27e5

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-cp33-cp33m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.7.1-cp33-cp33m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d829b00ebb7824daf134e3bc1b1b35ca38d265fcaf22958c246098fde25a7fb9
MD5 b9ae144c880b84b679225f5c17f62db4
BLAKE2b-256 7600686136f741e8c088f26943d87732ade55b1bb1c2259c6e2e525e9e6439e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 333185f62fa744a01042959ded1c28d63014da2579ae65577257b0ea5aa11c29
MD5 ccbaf070e486d83f25656743f27f6277
BLAKE2b-256 fc174624184c1506977aa7e616ad85af948efb3ae414f405609391d6c0ace0d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp32-none-win32.whl
Algorithm Hash digest
SHA256 c1c0e3fc078d9dcaa9049938b5728a791c1539a9fcf1e39c7cbc46e9653794d4
MD5 39fafc75cee64a63b4e172852571e36c
BLAKE2b-256 40a51cfe72b7cdc893aff09f7c50878ca066ddd1c2ccf4a24eefad9cf146989b

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-cp32-cp32m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.7.1-cp32-cp32m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8d4fde47ccc082de37ff0cb2e08d8f4f8dc95c8df35085032c2edbe9d1111ff9
MD5 c7600df9cca84ea4467fabd639ead87d
BLAKE2b-256 fb0c3c37c2502faca247358cac7b090aec376e8284a75ea8b5288ad5ee090333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 07ccd7e0224085ad5d33b722c539dac2fc4813754f4d1b9501125b8b0b3c1e62
MD5 ba0b08c83f20c4393bdda7bec57af2e7
BLAKE2b-256 7385be71ed65102326d8828de2dbc082a35162f02b85c1cfe5cd3fb01195fe89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp27-none-win32.whl
Algorithm Hash digest
SHA256 b9de74680d5dd53fa9db11231aa28127322238a8bd41d99e5241cf476f49be8b
MD5 a2acae39d5a15244011c51559a25dff7
BLAKE2b-256 06d5796857ab705a9dcf54836ef0f0a4bc4de227117599f5d657eec74c40423f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 d8f03c01b85f7f7697060c32134cd4fa60777c77700833309fa0978e84c34bf8
MD5 6dea45df132d0442596919e3bea77f8b
BLAKE2b-256 ee5d0fd0d3572476e509b2082305f918fed91ec2df8d2ca8405c65e344443801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 a4f95d7740020a7ed5f6b6a428e8ac1f09d7c7cf4d0aa57891b7a42501f4319f
MD5 d178a8bb4e408c69063c4340e4414097
BLAKE2b-256 b380b6e0c2b30dd6ff59eb2d034413cd46530db344ca47e05bcdea6deeed9973

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-cp27-none-macosx_10_7_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.7.1-cp27-none-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 0dbf156a5a811c557aba153e3d802650989df08f2e52f1db3dc6eb39d1d2f902
MD5 2f5c35f677f83541871837438d7db97d
BLAKE2b-256 5fdd6223f96096d82af87907f771407643547830daf6767c2f1baf3cfb19be5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 63a964fa762651ccef12f9ed6818f2395c1fdf520624f3ec46223520f40df5b8
MD5 27d3fc1df9c99cae66d7fa78afb2b898
BLAKE2b-256 69959dd4c0f9c8d5d63bf93eaa920cee8e9c9fd8039cfaea24853f80cc8fd4b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp26-none-win32.whl
Algorithm Hash digest
SHA256 1a14ff484816d3bcc947372f210fa40dfcbeeb6101a6e3b76b74839a2dcdf777
MD5 a45c37d003aa74a4b10b5816efdd924f
BLAKE2b-256 ac8f897147e1b7a8de850c94b6208ae20f45549f8dd5633a6aef11420c958567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 6a34e73473ccd216d8920e10de97da11865649b89491b40ae75a9de344d50e08
MD5 30fcb51436d01878647b407eac86e5f8
BLAKE2b-256 7d75f983a88ce91df688acba684dcaec64fd997d860f21c2111188dbaed8d5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.1-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 815484d4cf5ca8ff576fa88b5af80adfc0613f008d591a39d447964505951b02
MD5 941be8c724b8a0a37f47ce4aaca2bab7
BLAKE2b-256 6a2d5292b49917a64cd0b89ebdb40d6d0e7a4a0b845f9d0fb77718ef483cf9d5

See more details on using hashes here.

File details

Details for the file pymongo-2.7.1-cp26-none-macosx_10_7_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.7.1-cp26-none-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 6b58ca65a91017c3771534ba2b4ad01650899a0dee5c19a622674c7f26f88af8
MD5 bcb5f7d7857fd6d61773594c8f17401c
BLAKE2b-256 740f5c1873ec4c838c979eba8781406edc3a7a7acd1bbdb9646b39f5eb85170c

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