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.9

Download files

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

Source Distribution

pymongo-2.9.tar.gz (430.7 kB view details)

Uploaded Source

Built Distributions

pymongo-2.9.win-amd64-py3.5.exe (379.8 kB view details)

Uploaded Source

pymongo-2.9.win-amd64-py3.4.exe (462.7 kB view details)

Uploaded Source

pymongo-2.9.win-amd64-py3.3.exe (462.8 kB view details)

Uploaded Source

pymongo-2.9.win-amd64-py3.2.exe (465.2 kB view details)

Uploaded Source

pymongo-2.9.win-amd64-py2.7.exe (464.2 kB view details)

Uploaded Source

pymongo-2.9.win-amd64-py2.6.exe (464.7 kB view details)

Uploaded Source

pymongo-2.9.win32-py3.5.exe (368.1 kB view details)

Uploaded Source

pymongo-2.9.win32-py3.4.exe (429.0 kB view details)

Uploaded Source

pymongo-2.9.win32-py3.3.exe (429.1 kB view details)

Uploaded Source

pymongo-2.9.win32-py3.2.exe (434.1 kB view details)

Uploaded Source

pymongo-2.9.win32-py2.7.exe (433.8 kB view details)

Uploaded Source

pymongo-2.9.win32-py2.6.exe (434.4 kB view details)

Uploaded Source

pymongo-2.9.win32-py2.5.exe (299.7 kB view details)

Uploaded Source

pymongo-2.9.win32-py2.4.exe (299.8 kB view details)

Uploaded Source

pymongo-2.9-py3.5-win-amd64.egg (482.0 kB view details)

Uploaded Source

pymongo-2.9-py3.5-win32.egg (477.2 kB view details)

Uploaded Source

pymongo-2.9-py3.5-macosx-10.6-intel.egg (504.8 kB view details)

Uploaded Source

pymongo-2.9-py3.4-win-amd64.egg (479.7 kB view details)

Uploaded Source

pymongo-2.9-py3.4-win32.egg (477.1 kB view details)

Uploaded Source

pymongo-2.9-py3.4-macosx-10.6-intel.egg (505.7 kB view details)

Uploaded Source

pymongo-2.9-py3.3-win-amd64.egg (487.2 kB view details)

Uploaded Source

pymongo-2.9-py3.3-win32.egg (484.4 kB view details)

Uploaded Source

pymongo-2.9-py3.3-macosx-10.6-x86_64.egg (513.6 kB view details)

Uploaded Source

pymongo-2.9-py3.2-win-amd64.egg (478.8 kB view details)

Uploaded Source

pymongo-2.9-py3.2-win32.egg (475.6 kB view details)

Uploaded Source

pymongo-2.9-py3.2-macosx-10.6-x86_64.egg (504.9 kB view details)

Uploaded Source

pymongo-2.9-py2.7-win-amd64.egg (471.8 kB view details)

Uploaded Source

pymongo-2.9-py2.7-win32.egg (468.8 kB view details)

Uploaded Source

pymongo-2.9-py2.7-macosx-10.10-intel.egg (492.5 kB view details)

Uploaded Source

pymongo-2.9-py2.7-macosx-10.9-intel.egg (493.2 kB view details)

Uploaded Source

pymongo-2.9-py2.7-macosx-10.8-intel.egg (494.1 kB view details)

Uploaded Source

pymongo-2.9-py2.6-win-amd64.egg (473.2 kB view details)

Uploaded Source

pymongo-2.9-py2.6-win32.egg (470.2 kB view details)

Uploaded Source

pymongo-2.9-py2.6-macosx-10.10-intel.egg (493.3 kB view details)

Uploaded Source

pymongo-2.9-py2.6-macosx-10.9-intel.egg (494.0 kB view details)

Uploaded Source

pymongo-2.9-py2.6-macosx-10.8-intel.egg (494.9 kB view details)

Uploaded Source

pymongo-2.9-py2.5-win32.egg (470.6 kB view details)

Uploaded Source

pymongo-2.9-py2.5-macosx-10.9-x86_64.egg (470.2 kB view details)

Uploaded Source

pymongo-2.9-py2.5-macosx-10.8-x86_64.egg (470.4 kB view details)

Uploaded Source

pymongo-2.9-py2.4-win32.egg (475.6 kB view details)

Uploaded Source

pymongo-2.9-cp35-none-win_amd64.whl (241.4 kB view details)

Uploaded CPython 3.5 Windows x86-64

pymongo-2.9-cp35-none-win32.whl (236.8 kB view details)

Uploaded CPython 3.5 Windows x86

pymongo-2.9-cp35-cp35m-macosx_10_6_intel.whl (263.9 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-2.9-cp34-none-win_amd64.whl (238.2 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-2.9-cp34-none-win32.whl (235.7 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-2.9-cp34-cp34m-macosx_10_6_intel.whl (263.8 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-2.9-cp33-none-win_amd64.whl (238.3 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-2.9-cp33-none-win32.whl (235.8 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-2.9-cp33-cp33m-macosx_10_6_x86_64.whl (264.0 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-2.9-cp32-none-win_amd64.whl (238.6 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-2.9-cp32-none-win32.whl (235.7 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-2.9-cp32-cp32m-macosx_10_6_x86_64.whl (264.1 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-2.9-cp27-none-win_amd64.whl (238.2 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-2.9-cp27-none-win32.whl (235.5 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-2.9-cp27-none-macosx_10_10_intel.whl (258.3 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-2.9-cp27-none-macosx_10_9_intel.whl (259.0 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-2.9-cp27-none-macosx_10_8_intel.whl (259.9 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-2.9-cp26-none-win_amd64.whl (238.7 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-2.9-cp26-none-win32.whl (236.0 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-2.9-cp26-none-macosx_10_10_intel.whl (258.3 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-2.9-cp26-none-macosx_10_9_intel.whl (259.0 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-2.9-cp26-none-macosx_10_8_intel.whl (259.9 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.9.tar.gz
Algorithm Hash digest
SHA256 90e994cfe5928841960dabdca709e75ab4d0f44b288fd59742113982d96290c4
MD5 57afbd36c4baf0bb84bc5cbc532254ad
BLAKE2b-256 ed30726c1adc9392c9f465e743ecf46aba9c2634df0d37282878ea812995aa82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 21386045b77e54b19cd1a630b79e7154b9692f37729f6c8990788f2b0be0304c
MD5 08a7c41b0108e12ceb1409dcf4aebe4d
BLAKE2b-256 0d5ba760c4f6bec33747b4d4545eab9087b86912c2a00b4411ad4e2adc9f59b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 44485ad8556b59bdb9e3233e589872426e62419a2c2496a0f54cbbda12d4385a
MD5 c71cf02c7127139e8c0405cf75e7b982
BLAKE2b-256 a0708eb2c1b4c950b8755cc980efb7c399d07dde741c4fe58a56fa8b198de22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 38f388ed1d3d3531f18c1fc2740c9da6cd44e3ece3e29acc50fc6ba69e574eb1
MD5 691bdbf72f6c5a61cb93cbf553987572
BLAKE2b-256 173a3c88e9894e6c51849e75322d4499020437f699a70b90c436b307c82aed4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 c224126a93b9f91009004baeb25958bf484d689f8012a75b03dcaaf0a0c1bcc0
MD5 777807dc6c5080af5d9fc42a8a0a0f2b
BLAKE2b-256 5cb9fe4137cfb8b14df6e32bf66bd5d8cb159577a744547ca5769b0177b0bedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 94311acb887886175df5fb25fc306632893317fc86781e9c32bf6dbbc86a193e
MD5 121790f0a3863cb09496780afec2dca3
BLAKE2b-256 c7eaf4368ac60a5e3de1e0e25662c8399021a3a91ddf12156f27685e7c420e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 918b4e0755513e9f2656b17077005f0778ff3783a0f2d51cae569ca9272267c1
MD5 a617dc4f045fd6c7789b7f9df9e4f9de
BLAKE2b-256 81412c21bab1317ddb49b492fab01fcebff34d00735bfc744889542adeabe11b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py3.5.exe
Algorithm Hash digest
SHA256 93d35c06a9b93f15c15ae93017f1758aae509819d0c76ce2f804f1509c1be707
MD5 89a39ac0d294117cf37e990bde7f133f
BLAKE2b-256 cc63b9e89f3ee6764c95a7a60eab8d77b79a3454d358564e9bc09be431d32a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py3.4.exe
Algorithm Hash digest
SHA256 a14beeaa2390d9df7eb2886207cc5a175c90058a51c672b1f2b859b9c0f124af
MD5 7f2487c5d7ad6322b74a1d44f0bb7cad
BLAKE2b-256 c964cba6f2b39e9812e382fe74153ba20ab1de6d4e5d48f966b713cf4a97a76a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py3.3.exe
Algorithm Hash digest
SHA256 e83c6a172bb6c266fb36fa5fd09378f801d61e06a58094b69741cbc10eed5141
MD5 a57ef57f8438be6185081bc89e2ecf9b
BLAKE2b-256 652ca1254c1d83acd23d6def0a7b48d9c14f8957c34658332f24c0dde1909ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py3.2.exe
Algorithm Hash digest
SHA256 2dc956a290ed110a2e20b5187831bb9b604271eaf85e79d6cdd06bf3d75d0e23
MD5 f31dfe16f3664eb2b2e4aa4639baa959
BLAKE2b-256 f0f2ca763de125618ee9b62c516fcdb492140cc700cee12fc691ae242316973e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py2.7.exe
Algorithm Hash digest
SHA256 865a484306d59b8a7f17cda2fa95d3bbf523f7cdd3456198387c67d15ed5b3ef
MD5 407999fca3b8f892e47c4a31f5feabd5
BLAKE2b-256 f15b7bee1157954a44a6d4f812d8d6bb0c4c9bf5e0280e52214bfd0b72921302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py2.6.exe
Algorithm Hash digest
SHA256 0ddad2f75b312d2d07d04deb7839da4e94ee3c0c08842e4d918c02933b2cd5a3
MD5 86b3bcfb5b3e8d85be03fe02e8e7fefa
BLAKE2b-256 bde805a8d9090c880a1809c69b2f804c971221478de872056751c98a30c2828a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py2.5.exe
Algorithm Hash digest
SHA256 486640f4803532d8c5b0ae7d5445ff0a6f3715e0b77fcb8887fb6f49392fd18d
MD5 a7ed3871f1f3e0a2af6f86b70713b062
BLAKE2b-256 8854a1fd2d733ffc5e0d47ac724e23a7e9795440839a8f01936a03a61b2d6d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.win32-py2.4.exe
Algorithm Hash digest
SHA256 52b629ca4814fa82c36bf02f3cd685ddc348b12fa69bbedce9f70480a469ac20
MD5 5bdda5e8bdd5d2e605c19513cd69f853
BLAKE2b-256 5b239fcef75cfaa8f9763feb8a28bf76d17bffbd4c064c6df354e443293ec16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 072524dda50acf822fb473d7e462add20e6d6884ee3941832102945d8ab77629
MD5 4b55fe76cc947b1fb2b88e12293c01bd
BLAKE2b-256 a66bca43d80ea842ada10049a85022418ec0f23b31bfe43b7f32b6cd010a52a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.5-win32.egg
Algorithm Hash digest
SHA256 134ae74ed4985df2973b04f03da96cdc6282589993aab83e645b5fe471001c71
MD5 ce51dc2610666bbd49fd32c5ee9da639
BLAKE2b-256 88182bcb7a9d43457d7d011a131b58432bf5f5ceff335de0141e79d6b7129ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 343f208bebcd7f59e22e6685f0389d69955e1e7b0ba8cefc4438e435a8b788f7
MD5 da4a3f9d9e81dfda913f233a0b05515f
BLAKE2b-256 8c2037217e0738bf2bfda596b900a884fc97df339ba38ecd6bc1e1d266f9dd61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 f1b87b087caf47c369ace4bbb0af4c92125fe8d64f23c248d499db23d94cdb7d
MD5 d2cfc21681984829df62cb5dfd618b75
BLAKE2b-256 df09388f3819ac8fcfdbcae5443b916671c52ab5b6e5b876ce1bbe96f1c41c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.4-win32.egg
Algorithm Hash digest
SHA256 74928beb091bc1c4a8cca214aa571a0365eb3f17352520d2a4f9440854c56e3e
MD5 78c1931ef3cee937c4f23bf5cc8a099c
BLAKE2b-256 a7232033b7b2aab63fc7ca0d3410a513a8fc141d7111c10f81e4d15673f649b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 5f979dfb5db8b08eb793f511039e656b411ce47ceeae5009f94f129ab9a57322
MD5 43aa5dcf3f08ed45e89db90516d4799a
BLAKE2b-256 35176147de054cd49b38c1c9dc64a1f9dbd4837c98f98219196d9707b138b821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 cadec359782a16361b029cf6b00834c984cd44c67dcdb338173489843503360f
MD5 5e77e735b25eed18dc7b9789ac667d0f
BLAKE2b-256 e121411c3f97d821ad4f030a879c2a1f6d753f795083c3d9cb27ff4a948fe506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.3-win32.egg
Algorithm Hash digest
SHA256 394c04f5f3aa7abe47d8be2b0a8ce5b4990c1d69e3d46eed6394ee6e992b299d
MD5 5ee3ed108289c6d3099cc792d89c9d0c
BLAKE2b-256 9f8a404f365672afc88e2717b2104208fade9760a002a04352fc1c09ba19c01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 597ecc1f691cd15e63f2d5e23e0f13eabe895a35d648f9339e164a1400ac59a5
MD5 0e461c69eee5b488bde1a0f1a6305ff3
BLAKE2b-256 78c13f518aff4579bbb17e9ea89fee37b6bb26c0013984f5a45d0ab4649b54b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 cb6d7fbe17c1dc8a34a4267b704b5c0d3382c40309a4c03a5cd9dc76583e8871
MD5 77d900ef6e82be6a13171e286213d0e0
BLAKE2b-256 d8495a5372dfada931403b2201f9c08f236776d67ea8e98567b04bd1047bf564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.2-win32.egg
Algorithm Hash digest
SHA256 c6fbbc3d2ae46c001a704630c7ceffae996dd32661acf16e7a1705377a3f5039
MD5 49fc247af607e6da544adca9da9a9664
BLAKE2b-256 5267680a23d68fc41f2a88ed5d983cc139d3936f79172138ccd0f92644b5f759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 f66fe577a5bf172143a5cea6b40def41283b41368afb44ebc4c66714ac748706
MD5 b2f8541be6bb643cc23344d7427ce1ca
BLAKE2b-256 9aac9348d4bad440cace925757f083ddbd4d2e99d13f96615fcf066497266365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 27673fae37c09307c8cc770ed582e7a67fe9b572d48c04505e6b06cf6e78955e
MD5 51c508c358c70cea530eb63f6150b3e8
BLAKE2b-256 26ae70ca1d241f774704e2ca76218a8fa411db23594379e0fa6a76efafcc727d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.7-win32.egg
Algorithm Hash digest
SHA256 7caebaed70f06ea7a96b6d107a92257d3084e482f4fd239931613e41ba703825
MD5 d81154a420d6ca85a9cbf6b01d0f568d
BLAKE2b-256 aa0abc7636cd3db2d45b2771e8100dd42607b97a3a84d2f19ec48452dd37dbe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 2500cfc16d2b4ec573e1a6f59c54679fbdbe06562f0db76190d3b92071cc21cf
MD5 cb57ee5beb9ecdc281739e9899c45af7
BLAKE2b-256 b63955486afaa2eb808817559e5821d7071437295180abd582f47cf1f57e3dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 c066692cb9bc0d84404558a87c35fd256bbb76e109f4fa6965f503e9e7b0db29
MD5 30ec85ad052624de08ae178e50e80ce4
BLAKE2b-256 c19604ac00b4658ab952850cc90964e1b1bce47b4e948717dc5e22f82c162fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 06692c7850be0c1a99ae30ba3ea58901f251b06ae5e7b582662a749ad9dd38ac
MD5 1b97384b7efc0953afa1b0caeae06890
BLAKE2b-256 77481e06bccbd220ca4d64d231546ee1800fff04cad613e8e33bd9056647d657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 5a0d35899b677a41470bd7d305487110951976b13bbf84e531d63c47a440ce1a
MD5 9178c9f65c57afbbd7e20f4915c49a05
BLAKE2b-256 356d06c441ecf9b8ee45515f16c2026ddf8cf89a2825a7be3d3469524cbd62a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.6-win32.egg
Algorithm Hash digest
SHA256 ce17780902ff976fc7db7e9bdf0c61da2b6ff82061f6fa381fbacce5468bc60e
MD5 7a137eaf85277e66358840f87c89c28f
BLAKE2b-256 aa79624980909a8c64a31e1f9c46f864a1a1d4471e85ced6cdf45b76d46f02f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 ee4fae1fefa667138a7b144b358b7588de8ca68503171e6d8b4e60ac2b99e2ca
MD5 d1263709c42d66eae2a6ae21a5c64486
BLAKE2b-256 fb23df6856809631223da8f0e74531cd35b7045d95c20df88c17a0d7916604a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 83b3222057f4e898762506412452d9c7a102f3ecfff30e4da41b88884503aac3
MD5 2e662b7a998d0e2eb512c4f2147d88b0
BLAKE2b-256 74d76fdb9e056a66bd2dc4055f14a249b7ab728a44eb0b1bd1bfbf38552d4211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 de82f7d183ac4ae578ff6300e5e7b4046f29901741d38e82884074eb2f5761db
MD5 461e0a53af0fda42a69e4f35868eaa9c
BLAKE2b-256 9a91909b1a89927ee47dca85a50910d8b95ee252f82e71de3b7fc2f97b5f2be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.5-win32.egg
Algorithm Hash digest
SHA256 922c841b6e0a4b0007ad1454b3eb3c9d18195c251e34e745c5d31302159ea365
MD5 dc0d76506d011b00c059244885790d74
BLAKE2b-256 5e679de4000b0692354dd86dc9d37f1ef504b189408cf37196cfdeecf4383906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.5-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 c14822be299e101fc92096cad1011a89229df72eeebdc8f8e76ab5b99ba94ffc
MD5 1354ea35eea5e1992669235828daa1c2
BLAKE2b-256 0fd7b3ffbd3d8e70962d8b9b6886b1ae8a469b43d1352db0e23f7d0fe35fb51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 fb07898f62f1eae811b7c5920a7ec4bfe90c2492ff288ab98fdaa77bbeef5a6b
MD5 7e26fe8eb949cdce98b5fc30f4d796f3
BLAKE2b-256 5bd2334d5fbea76832ff22886b5a8ace6e9c5d30785101ec1dcea3a842be3bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-py2.4-win32.egg
Algorithm Hash digest
SHA256 3f10aa3b8b255017a26c88cd76bbf6cab3fcc4da62967f7b2d042223decd1206
MD5 d9ea87928b2c49469d690c6f931aad6e
BLAKE2b-256 8e564c433e3c524e1674548191e30cf024be4d989ce5a3e9018cd7267122739f

See more details on using hashes here.

File details

Details for the file pymongo-2.9-cp35-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 522fff015aa9ba987e32b7be4a49aef01ce6340c6c69905206df6c38c9cdc58c
MD5 04804db71966a483c994f6d0585c58a5
BLAKE2b-256 e70e1a9e373ded6a816ee6b04d38ea96258934a3368c7274c7af0089a33cc312

See more details on using hashes here.

File details

Details for the file pymongo-2.9-cp35-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9-cp35-none-win32.whl
Algorithm Hash digest
SHA256 c87778e4545fb1d04219f3b0de2dd1efb38298bd4f427ed68622fd20afde85a1
MD5 3a182cecd67f107abeb3ea098034f763
BLAKE2b-256 7a121e3ce61544a7edba84ab8a8c52728e615490a97d190851065a10f593c672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f2ac6c994f72c247d91d3f910a677815148d85998810ddda23bf446c7a2e9fc7
MD5 20da10b143e171c8f1781e116d8234d6
BLAKE2b-256 a2ed64799a14d1eb0339f68228d8af571e69a5b5fde71fbfc0449b41a606d7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 8bcc9e337d43a0c09861f4a2846cbceee68e6cb1ed2798e6a63f814bb1fa6231
MD5 475c4fb2c025d93527479774b20a504b
BLAKE2b-256 91af2cdf6141efe5eb4f6c56a743eeee82df728eaf0cf81661c8539b500804c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp34-none-win32.whl
Algorithm Hash digest
SHA256 063be6441c1d84e1713732dcfc6ed30f36a3269a78e62cdd149fc4029bade628
MD5 539d80344a2ec0096da632a64c2e67d3
BLAKE2b-256 6a0ff3d6f593fffd9154b8d61aba21175c0edcca378f3a67549e271da2e8f8da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 ab237e1083dc7287fba328b0122b6d72905fa218126cbe30d8a4c65e6bb425ba
MD5 566625b0ab30f79a8c01011c8159ecf6
BLAKE2b-256 75afc9966551ba43dca10da8319d4a66017d84401e97142f992016dec1adb3c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 9b8744cf8f9fccb18cefa9332db9330e0aff80c7eb7582314cdb91bafcd3eb99
MD5 3e7bd24b2eba23ede4a325a32655dac8
BLAKE2b-256 18bb7fff6ef337dbbf0769d8ad8998136c69be3bf94be20c36e5ca40666610ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp33-none-win32.whl
Algorithm Hash digest
SHA256 e622a986edc1b5d36efd50f802309e48f7e8baf98eb5687fd5dd0796b72ab3f2
MD5 e99c81157245fd1ac9faddce903d6295
BLAKE2b-256 90cf11327ad9aacf2a7dbaa2ed2166b087dfbf4a241cd76719512bece5581359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 84dc554be5985769b7c804b86505bfc6b2c6fe4841e3b6bc3dfbb687c31463dd
MD5 ad36ce83429d86444e5ed47c9bebaa3d
BLAKE2b-256 f168011d3c2505e6b128c6a6421cc3f120b71bf12ac5b2cd8b9e658082160488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 042572b0350410374fc4d9a1e79fc3e9ddf3385cafd6dfe67ebf8c3ffe0f7c02
MD5 5da6a12c0fa5c0603ecfa9b32b70ab1f
BLAKE2b-256 30a96a06fec843639958b543fe3760b33cac6d01286e5aa2ecb8d93168c8ca84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp32-none-win32.whl
Algorithm Hash digest
SHA256 8d15c440e3dc770b2f9459eb753ddf1bcde49076b42426aed10fefc6156b8c97
MD5 dd1cc4137a275f380487d70876f5fce9
BLAKE2b-256 f1f56e7507558b2d8fe976f0980106089d7cb064c6abe1c0a6c0d0feb61104d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 df12626598926f93853ea0960ebee9e64290106d019d11bd3a6d20c84dbcf956
MD5 a2d0477de05422caa4fa07a8077b653c
BLAKE2b-256 140d3ce80e7ab899d827b693b15e3e45e403406204f5bd1645f2424c88346bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 65fd5dd033d282a38369bc79f6a8192d86629cf40f118a2263f1b4c696d7a5bf
MD5 4d782f82a2e7a063b838139afda76b19
BLAKE2b-256 61362b418c44e7eda1138f9adf0903c3a8f66347743c55f546f21d8d1a23f0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp27-none-win32.whl
Algorithm Hash digest
SHA256 5528f5b6eb9d9be7ab2d11ba2e653f58584ec737fc4bdb97d82dfba786220cd5
MD5 37b8e5e3ef67e59406412861bbdf348b
BLAKE2b-256 613243067cf43d29eaf84db92404d9ba20753cb1cf8a9e840949e6d966d1aac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 7a0abe617b207db00b306c5ecb92915e143d7bdcdcd3f07d4f290c5bf74b2560
MD5 ed0e5ef53cb1998ebc85d010e03cde4a
BLAKE2b-256 d7a788ad76e8fdce4175417e026c7ef9adda9f7c8a66310011231d5b81f16794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 b85fab26ee43e925af6a32a6a7d0847e81101b42460ab58b31862c4458dd0f5a
MD5 b0366945bb2c64c67727231e5633e6ad
BLAKE2b-256 a22d16bda443d6a7863c1ab82ceffde365e8382b2feb658428f672af33f96677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 c4743ea42038a26dbd177b627e1ca741e0cd41fc9a00a017ad4324c65a0c08fb
MD5 dd6add13c8865dffc4ab6bda1bd36ad6
BLAKE2b-256 b1ea3de0cab41ecaa099c74c3603ef062a10f6c1ed37e9d36999011057fcb760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 600778521a533b9534566170fd2d9848b9b0f02be25e6535fa93bc54cf883330
MD5 4b1081dd70efe02bd0f30698edde7eab
BLAKE2b-256 882233b5c48e0f392d62aaa69ac2f9ab22a7d07cbc8ce6914c633f6a285a8389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp26-none-win32.whl
Algorithm Hash digest
SHA256 5ea14b97c07502b08d0eceb7d5fc8a9d1ecee076fce57852543471f43bf0df75
MD5 ce234be017d583b7173e1c5f67f0b416
BLAKE2b-256 1258f912093b54e788d97ec36eed3156c42145f23095e5785371672dd07ecc73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 02a22463de0126dce1cd5e66baeca53bc39bb69e3af62586ccec888dd74732c1
MD5 99b452c433d5adccffcedcc10cb52ce3
BLAKE2b-256 e4ef06d9cfbb4058baddfff03c16148a10222a8bcccf27219826ebe6db5676fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 9a1da5e52981b803f04e8e0dc63e6cd2a317eb6aa64e9061c4a67378a20dbed5
MD5 ff4ddab16702d5cb864bad40000ee0e3
BLAKE2b-256 a7a8f9edfc53f7a74181f74f1a551b8d5e0e23d950a44f7d5fa07c51b86eb8db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 ee2415cb4e1da299d4beff2ba33a86b70fced89b58e38451d2e03680409067d5
MD5 0eaed79ca8cf5cb8a5e49ea54c04edaf
BLAKE2b-256 c824734dd0ccee84a0998d35e485eb2671105db0d25250761b9906edc72d83a3

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