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

This version

2.7

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

Uploaded Source

Built Distributions

pymongo-2.7.win-amd64-py3.4.exe (433.4 kB view details)

Uploaded Source

pymongo-2.7.win-amd64-py3.3.exe (433.5 kB view details)

Uploaded Source

pymongo-2.7.win-amd64-py3.2.exe (435.9 kB view details)

Uploaded Source

pymongo-2.7.win-amd64-py2.7.exe (434.9 kB view details)

Uploaded Source

pymongo-2.7.win-amd64-py2.6.exe (435.4 kB view details)

Uploaded Source

pymongo-2.7.win32-py3.4.exe (399.8 kB view details)

Uploaded Source

pymongo-2.7.win32-py3.3.exe (399.9 kB view details)

Uploaded Source

pymongo-2.7.win32-py3.2.exe (404.9 kB view details)

Uploaded Source

pymongo-2.7.win32-py2.7.exe (404.6 kB view details)

Uploaded Source

pymongo-2.7.win32-py2.6.exe (405.1 kB view details)

Uploaded Source

pymongo-2.7.win32-py2.5.exe (270.5 kB view details)

Uploaded Source

pymongo-2.7.win32-py2.4.exe (270.5 kB view details)

Uploaded Source

pymongo-2.7-py3.4-win-amd64.egg (416.4 kB view details)

Uploaded Source

pymongo-2.7-py3.4-win32.egg (413.9 kB view details)

Uploaded Source

pymongo-2.7-py3.4-macosx-10.6-intel.egg (443.1 kB view details)

Uploaded Source

pymongo-2.7-py3.3-win-amd64.egg (422.7 kB view details)

Uploaded Source

pymongo-2.7-py3.3-win32.egg (420.0 kB view details)

Uploaded Source

pymongo-2.7-py3.3-macosx-10.6-intel.egg (449.5 kB view details)

Uploaded Source

pymongo-2.7-py3.2-win-amd64.egg (415.6 kB view details)

Uploaded Source

pymongo-2.7-py3.2-win32.egg (412.4 kB view details)

Uploaded Source

pymongo-2.7-py3.2-macosx-10.6-intel.egg (442.1 kB view details)

Uploaded Source

pymongo-2.7-py2.7-win-amd64.egg (409.6 kB view details)

Uploaded Source

pymongo-2.7-py2.7-win32.egg (406.7 kB view details)

Uploaded Source

pymongo-2.7-py2.7-macosx-10.9-intel.egg (431.4 kB view details)

Uploaded Source

pymongo-2.7-py2.7-macosx-10.8-intel.egg (432.4 kB view details)

Uploaded Source

pymongo-2.7-py2.7-macosx-10.7-intel.egg (431.4 kB view details)

Uploaded Source

pymongo-2.7-py2.6-win-amd64.egg (410.8 kB view details)

Uploaded Source

pymongo-2.7-py2.6-win32.egg (408.0 kB view details)

Uploaded Source

pymongo-2.7-py2.6-macosx-10.9-intel.egg (432.1 kB view details)

Uploaded Source

pymongo-2.7-py2.6-macosx-10.8-intel.egg (433.1 kB view details)

Uploaded Source

pymongo-2.7-py2.6-macosx-10.7-intel.egg (432.0 kB view details)

Uploaded Source

pymongo-2.7-py2.5-win32.egg (408.3 kB view details)

Uploaded Source

pymongo-2.7-py2.5-macosx-10.9-x86_64.egg (408.1 kB view details)

Uploaded Source

pymongo-2.7-py2.5-macosx-10.8-x86_64.egg (408.4 kB view details)

Uploaded Source

pymongo-2.7-py2.5-macosx-10.7-x86_64.egg (407.8 kB view details)

Uploaded Source

pymongo-2.7-py2.4-win32.egg (412.4 kB view details)

Uploaded Source

pymongo-2.7-cp34-none-win_amd64.whl (209.3 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-2.7-cp34-none-win32.whl (207.0 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-2.7-cp34-cp34m-macosx_10_6_intel.whl (235.8 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-2.7-cp33-none-win_amd64.whl (209.5 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-2.7-cp33-none-win32.whl (207.0 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-2.7-cp33-cp33m-macosx_10_6_intel.whl (236.0 kB view details)

Uploaded CPython 3.3m macOS 10.6+ intel

pymongo-2.7-cp32-none-win_amd64.whl (209.8 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-2.7-cp32-none-win32.whl (206.9 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-2.7-cp32-cp32m-macosx_10_6_intel.whl (236.0 kB view details)

Uploaded CPython 3.2m macOS 10.6+ intel

pymongo-2.7-cp27-none-win_amd64.whl (209.3 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-2.7-cp27-none-win32.whl (206.7 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-2.7-cp27-none-macosx_10_9_intel.whl (230.7 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-2.7-cp27-none-macosx_10_8_intel.whl (231.8 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-2.7-cp27-none-macosx_10_7_intel.whl (230.7 kB view details)

Uploaded CPython 2.7 macOS 10.7+ intel

pymongo-2.7-cp26-none-win_amd64.whl (209.9 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-2.7-cp26-none-win32.whl (207.2 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-2.7-cp26-none-macosx_10_9_intel.whl (230.7 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-2.7-cp26-none-macosx_10_8_intel.whl (231.7 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

pymongo-2.7-cp26-none-macosx_10_7_intel.whl (230.7 kB view details)

Uploaded CPython 2.6 macOS 10.7+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.7.tar.gz
Algorithm Hash digest
SHA256 8320bbbb8ca76de86bd47c253cfbfc4aedae3439fc57f6a9f8fdfa15a00bd601
MD5 8d7f8517b4f979bae531fa81dae6215e
BLAKE2b-256 a7d02e111479fb925fe868ecda6b4e89d203c4c1de31aeacf5506fe175142168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 d537897d7bd673a9fc32240e482e4fda5b394d9f7acef26d80b1e4c29b585350
MD5 bb15d84223b74457590f95ade0af9abc
BLAKE2b-256 c9e5b9e971e01698f6682a11d68ef72b745742ee768f4220af99067d97498c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 9e08879b63e97cea4bf02d7e8a3555abf1c2d50cfe4aead6637a34ab2e307cb6
MD5 b577b1c054d383edae549048ddb0bee2
BLAKE2b-256 4195246302b518ce96b81654d2a3647d71a5793dded0492bdee4f1b6661babd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 bc2df9758abb9bb9b038e3b010961ce9223592d0b58eb58e70c2fd0f9c99d68f
MD5 5a927f4de4372e7aef5bd1af1fce7daf
BLAKE2b-256 86988d719df15d06ec807e4ecef52df10b2ac63d87f31e1471a86665d16a1a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 4e071ad6e3d210e12e55da0faffa6a119e8f2e1a278580f22c8715a703b33aa1
MD5 49b67f41b530717aedf3ba5bdd1535e8
BLAKE2b-256 ae92488dccede1efa17aaaff68288daabb5dc288eddcaf06360907fbd431a89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 3caafd76ad166557d1d0ed22348bbf0eceba5396ec6f7f75653b7c3726e1642e
MD5 34b427b56ad78f949f9c99cfc2008344
BLAKE2b-256 eede6ef3f30adf9e6918aa0bb17f4789dc36418173ba21edfd9e41182fd7a27a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win32-py3.4.exe
Algorithm Hash digest
SHA256 c0c9d12c5502434e09bd1e3604d2255973b43eaa3d03ae9b35eb11a8b195e9a8
MD5 6a65880e6fbc299e400ee1093a9bef33
BLAKE2b-256 622006429678091b41791f39d257dc63cf7cbaeeba892fc831f2a9c63581701f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win32-py3.3.exe
Algorithm Hash digest
SHA256 8af47b3d8b78b5f726c5d6309a16dfad14066d227e861fdef8d05b9e0acf183a
MD5 f1a0d2208cf87d1939f4a828a77bdd8e
BLAKE2b-256 29ca39793751ef8ab6610b0e5a0577604b2f2f51179c946247bbfe193785db69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win32-py3.2.exe
Algorithm Hash digest
SHA256 c8e7671979fce52bd9a812ef65bdb288ea286f1424566714564df7c6cb117cd4
MD5 7dce411ec3fdfd96c5ad8d2df784234a
BLAKE2b-256 1c7de7d05e9beb4cb0846e2a796d8db463d7bf25911c94af45f628a9971db207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win32-py2.7.exe
Algorithm Hash digest
SHA256 899c1f7e09e9f7181008a858ecb9fcf0bece83f40290d744b31ac6a1d72ca320
MD5 0760172a1c3d008ab43dd54be4911459
BLAKE2b-256 49f324e66fc9e1d55b6dd4dad569c98f40a5bc713be343e7c2f94c8a7fd25b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win32-py2.6.exe
Algorithm Hash digest
SHA256 182552a8c3d94242b636296b5243aecfc4d33ff337b4e2233e2ce5b16dd86943
MD5 1f0ee32ba7ffc6ceebf69ef861d9ccc6
BLAKE2b-256 6b1ddf497b8c053d15245c40d4a79ba6701ec363e40937c737697c933ac0a922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win32-py2.5.exe
Algorithm Hash digest
SHA256 c67e0cb229900f57021b74890ff682245fb4f700d9f14af005d5dc4eb2363b5f
MD5 059dff1cc2272c0f0b0ec379c3875477
BLAKE2b-256 d4e313c9946ebbabb9dfb9464bf7a5a9daf19860c59101851554d4f2f5ea6365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7.win32-py2.4.exe
Algorithm Hash digest
SHA256 62162df9153b21f4aef1eb5e44fd4b76f68be0e11a7a516e603aba68f67236b1
MD5 caae73fc1094528bc288269331cf34fc
BLAKE2b-256 c62aad999760e1f4cdee2ca7af4ee010cb57533d579f622c31630774989a19df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 28f8d9817a71edd25e52dd20d317c93f836c1e13357dfbba01a0c622f23e9ebd
MD5 00a9f5cff5636cc67a9439d63855ab79
BLAKE2b-256 1ef5df8b961315460abf9d641b1a07e08380dd8210ee1e7e4d868cee4ca10614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.4-win32.egg
Algorithm Hash digest
SHA256 0f4d9080038de6c95f61d9b02fccdee860fe72c89942ec162679306b6efe14d2
MD5 c6e53e48667ead3e3b0b40270d8e0a03
BLAKE2b-256 74aa77bb2e2d11eb53cb368efe3fb8ffff9b04b392c0c06c67ac4fe3362bacdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 b43266ebb1370d602522d59db76a233c53ff6be62e7a4638d2406256eb94566e
MD5 5acdcda989381beb166b56db22e07fab
BLAKE2b-256 ce4f2e5519081edfd3e2c8952b91907d7bef396a5134b19b1ce827c54ee9abba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 f17cca7a7f95970645ee258bc5848e98cf5ff4ab7448c236c82e49f69b1aeb8b
MD5 4d3f02260d9641edbd552826ddba1317
BLAKE2b-256 1a48d078319764b026b64ad0775b6a22effe312cd8a770a9fa676747dc76bfcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.3-win32.egg
Algorithm Hash digest
SHA256 14e41633cc3fb07ac5e0db24d740497eb2288093a635034f0e6f5fe07e9714f8
MD5 a95d6e1d894be993bacfde3284e75be3
BLAKE2b-256 bf81a91300dc73667ec00cc9e4b035c457ed619c6ec9a697e70e203f897b8216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.3-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 6c5eff517bd570e75951f9b814d48279cee52a07ef66200eea3b42a15246e045
MD5 635261cc2ba2c07bf7b4b62840d66ac4
BLAKE2b-256 9c5b7243c2b55fe5ec2f6591788b252afeb7e9e559beacd954b6602f0adc2451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 fc6ddfc7bf9f39983d712c05297152193c5523eca8bef35e375d865604a3a534
MD5 d86a69ed88557e3ac90ffd28acb764f7
BLAKE2b-256 c754bc2f4f9d924a1344235d036f15a5b7c892672469662e4369add1e8094b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.2-win32.egg
Algorithm Hash digest
SHA256 b3459c0a36416c4042e26f4f7e8524357209be5a82c2dd20c0aa1e6119ce5e54
MD5 4fafda4282156a4437d6cd84f6e8c5a9
BLAKE2b-256 2478cad940c88736b3c07cf8e24e76848e4f93ff51789cecdd4e0c2409f4c931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py3.2-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 184249b7e05495e99cf07c59ce3192eab7c130704f36bb9247b98f545013145b
MD5 60a5c93fbcfa5ce80db926471b545305
BLAKE2b-256 6d9a63c9d84edfa029a153f5bbbb5e561b113ce7a7ffbf45fe4dd47d98785525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 2e4bf352d7e183c3f25fba16c16ab53b1189e674f01c42089857d89eb7aa8d5b
MD5 e283251db321ab16394c359ea8a8eff9
BLAKE2b-256 7f80a6b3a3fceeb72d6c124f2a5d726f884db3883db85434c8596a7ce98e2363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.7-win32.egg
Algorithm Hash digest
SHA256 d4a8479ea20ca2ceab47aeb70cb4d0e5b890c2fd8e67ce4d747ea579d0366243
MD5 6e598cf9b473b79d81d4a8d36083955f
BLAKE2b-256 126e8b951da680f3d392187c95550eb56b68e9a58f8f6b920b5f1d3356d350b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 bc412a1be56cced62e22c15f143a1908498a76f75b2321439b0865614c30c498
MD5 823ef23f76fd889fa71288c58a204858
BLAKE2b-256 f0d17cda8c4ade44b4587241b13c13cf22f7ad0bc647ce31c529c9b93857aea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 9512b8f1b958bcda930955cf597f42e52961615a894b25aa91b3aac7ded65f1c
MD5 f3a1e133ab41a9d9b9a2fea2a9ce1bb2
BLAKE2b-256 4f82ea776dd965552a4dff5e3bd1fa2aa51e69530116a580a7a897edc58a5c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.7-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 5ed7182fd548f33d026c33c480a12b198df40147071a2fc9bb981600148832ce
MD5 e0024030f2ac1b16b40a85da7890e51e
BLAKE2b-256 e5f33d91206f0ddd397791fe84aeda0f37cf07522863b3f117544c69163ec95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 65f6c9fe075c2130b88dd2501e1bc497fd453d4bc0c3da7f4a3501e6248c26f7
MD5 443a761368c2d2c271e8bc63c722a6cb
BLAKE2b-256 d1d96a69d99270cd9e5a909f7bad5644a63d6ba5e1ee58de646497c4aa662b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.6-win32.egg
Algorithm Hash digest
SHA256 1b175609bdb58dbe8cbc802b2f7a63113b7d98e761846c5465b216828e636289
MD5 68af0baa4bee5d4a92673eaaffb6e419
BLAKE2b-256 9232458df8f94d6b338a3aac68bf746b1e9945c49d2ecd4b6bb8f4074d8119d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 41293e8f8d52519cefb44046f43ec7a0428cdee1f330f0de3863e15da9e8a2e8
MD5 5c55bf71230edb06716de0fabffc4e53
BLAKE2b-256 7346eec2e248cf64c1b96826fda9f0fd5d694ce4a2e9478e1801b294729625e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 3d83060fff6cf3c9c855d7f9b0109239a9b059bdc5c9801d05b27525fe62834b
MD5 8c2838cceea33129181ef255a6986677
BLAKE2b-256 5027a43d49f9aadf87f48996d95ad91d7d8a1227558134f26b66fdd409c9bd42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.6-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 8344ed99d795eaaf44b576a79d9446fe510584199f451c0142a4efa9fd1b3a83
MD5 098f7284d0af4726725fd33b6ee59fbd
BLAKE2b-256 33a70fceb201f38c51c19ba4e6f948bffe6f06a025ce71a809dfac9d7860323c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.5-win32.egg
Algorithm Hash digest
SHA256 272553f3f649e1a2b1903920226d74c94b687ff79860bf9655c9c8712fda5c0a
MD5 110b0d249566435574615cee98768a13
BLAKE2b-256 9150a424f22d89d935bd62640999c193b89d4881c228db3dcb8ad099d064aa5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.5-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 2a7d1190a9b1df52d23fddbf8cb9df4d843a8e71ee767e385b9be6bf0611e709
MD5 8788b6657862a4439722f0da32401c8b
BLAKE2b-256 56e3ca065f8a678131089d5611a49cf4ba366c68a3a9c26daab7150cfc5562bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 b88f423dd58fb211a17749d11d49b6c507bb86a4669b60c2d2cf7b769b525193
MD5 581796b2200d9a77b430501bc46c004a
BLAKE2b-256 ce257d539fe18dffb57b95dadf720bde4ba7f614cf1ed1ec089234112b749d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.5-macosx-10.7-x86_64.egg
Algorithm Hash digest
SHA256 497dc93aa8dc364b45303f361bed9b7801dcea4297c68f29824498d66d61afc9
MD5 9b92e2fc5dab790243192f4e464ebf26
BLAKE2b-256 bfc5cb1a52f475ce0e80d01f0480b10ae228d257377a7fc05582b7741d4cbbfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-py2.4-win32.egg
Algorithm Hash digest
SHA256 1f4e14dd346c110a3fe850d2fccb845b81205e3635896c50d8a1009615694d9f
MD5 37115de74c410eeaf3bb5bda5276a773
BLAKE2b-256 c6af8d16f6410c973e6d2d20f50387671b6179c3aba5bf93c33eb2d5034ab2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 124a3642a0c4d0d6418285928ffd934fcc2e03d69811657d5093fa795f648db9
MD5 de4109884b854b7fdfc520001d869b21
BLAKE2b-256 40cbc07b0912393b1a53d0348174e53650aa8dc5285e3b4fa62b5cdca8b8606f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp34-none-win32.whl
Algorithm Hash digest
SHA256 4d08b96aa75e5fd1668916fa38ddb566c4526bed50504931cd3e2651b63b2622
MD5 0b6f2a3cab4aa9024173f4f17e1bdd8f
BLAKE2b-256 08382d6bfb1bb52651ce4b96d8beb6ffdde7e6845a17c4f410ad2578b3554383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 58588c79e4c96fd96a9e6a122d83417d6555dbcae26d37e4bd766dc086f8cd8f
MD5 09c70747cfa6b2fff916fbf5a524d224
BLAKE2b-256 bbf679f23942cda9d4b50f75ea299000db2dbab368b583047b5d4bc9fb78aaed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 7f66095b670e9836c818c42f8026a018be11008ece6ef95e78b17b7d48e6f1b7
MD5 fe97fb48e92042d9efabf455fa1a570a
BLAKE2b-256 3e2e2bf83e56e666f46af1df537cfe6d166a0d8e39ba2613a89e2245f135d65a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp33-none-win32.whl
Algorithm Hash digest
SHA256 63166baaabdaa83b4e350eb34708c78d4dd5f90b1575ae3303d51045f71a304c
MD5 b39947563e93cf46c6326cb4a903912b
BLAKE2b-256 65fd6f5e469959115d636205ec6403d4365f414c3b23e2d0192d516ab6ee8378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp33-cp33m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1ba8fb558261164cfd3d0744c60765012ce73b37814b01b0dbb22ad6a0d9c7fd
MD5 f48c9c858a9a43ff5e2b0c533e9ed3aa
BLAKE2b-256 af7372873626a0ece9077f355e8504989c1ed6d0dd42574bb641abcabbbf0888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 e3315cfca33e52795a704e7968b8292cb8dc9301c233dd015b8a9376df9067d2
MD5 ce0035653588a75ad63a46576a7833f6
BLAKE2b-256 e0e2ea1db9b802028407cd07e5c0c80f0d674dc3dacbe79245752a4854513850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp32-none-win32.whl
Algorithm Hash digest
SHA256 b29cc62be66c7db3d37cb643fb5e77f57a56638066da77fca19c1bfebe9a52c4
MD5 44409e75a172869e02e78c9c098ea324
BLAKE2b-256 9c7412a34501a70b955c96c4545cdb4efe70ac3781f091399264a8bfc3485036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp32-cp32m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 15617fa25f0e4f41a926b61c1894b656d8cdd88c27af5cfbeb26320479bea556
MD5 533f8dd0916b4542835afa161080718b
BLAKE2b-256 feb319233477a3691959dbbd27e6336871b19fc551f621c6bd9e88e28d9ec153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 77bafcda507c4e5cb66b734f22b792de97a6f81345f5318050acb6ea4cc1e88d
MD5 71d126a54cecf04723b1a919b91ad856
BLAKE2b-256 c98f0ebbf4d7fbb25ce30be799354d4891f91f4902ba7234cb3a9234f9377615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp27-none-win32.whl
Algorithm Hash digest
SHA256 06006b470048c924ea94e13dc73379cbdde226317c95d2c768a01e4404d7033a
MD5 1d25efe571989f041da3f710ecbbf0cc
BLAKE2b-256 cc6ed4491502895f5b09e818d8275830b1108e5d6e01d4baa8e35becf1a6176b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 80aa5cbef5ef96dd98897967d3bd900be987c5077c73d0c0b999173e450fcd67
MD5 bd3d25192e4126325b30c176129e69c7
BLAKE2b-256 25e6498803bd65d399bf5413b5b40f92ac805fd04ea1292b59a2b8e767df6ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 686f24eadd0adf102cd70e31f43ea9bb5111c1dda8cab3c89445283bc586a56e
MD5 ea3cd170d7b884e18519db3c695d8794
BLAKE2b-256 c7329f74eb0a44908d6b17f3249fd88fa95c8e0c7831e8c5b010fc2d30302dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp27-none-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 d7f6f95ea4d0b03159363dd94d275b015f25cbe61932d4bc5b48acc0d49b90e0
MD5 24509ef6161d4bb97f727717ec85c1ef
BLAKE2b-256 207d54fad167437b25f5d42f79dc7f0b8fb364aadfb5b9d3347701c66169067f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 cc72eb0cb17cd7b057a01936a877327195bfdf16bdd7f834c489313738eb878b
MD5 a7a92db1a3d8e3c0d04be6f7b9931e47
BLAKE2b-256 bf694b12a47228e75b195a314e3e21438b5dcaa493b801a344079e77f9f468ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp26-none-win32.whl
Algorithm Hash digest
SHA256 a5c96adff7728a4e688c9920650cc1265e6ede27c37ab240c50838420c5cc796
MD5 c598e648bea50287ebac74b34d9af798
BLAKE2b-256 075329f01ba2cff9e2f83acb6f8db64757ed3195da6ea601f54d97bdcd6bcd17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 ff07ae18f4d1ac05c2820f7d84a69cfc07643a7606bcaa627180339c6003d185
MD5 06243c85b936daa6c06fcb0bde3ae23f
BLAKE2b-256 fd2c8cac56ce2a7f28c335444d40d59440a20e5fff15dc98dbe6948c7f7b978a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 63f5faaf7b374a4c000ddec7ceb4465e98e25e2203caf02d8045fe46c48430f7
MD5 6613d2bbf1e18b56e2838ac3a6c12cb3
BLAKE2b-256 af217751bd18939bab554163a98240b7ee16ee6c8c43d6522edbdb1c9055f320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.7-cp26-none-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 aee7d429f556e27a62384c53bca2c97f9feecd10ea45c043dbc90e0acf04ea2a
MD5 da692ee531dba9721223327f438d19c8
BLAKE2b-256 c04d9faabf2401af49ad7a85e079b925a54a75ba5db6726ac3e7d49cd370c8c0

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