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

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

Uploaded Source

Built Distributions

pymongo-2.9.1.win-amd64-py3.5.exe (379.9 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

pymongo-2.9.1.win-amd64-py2.6.exe (464.8 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

pymongo-2.9.1.win32-py2.7.exe (433.9 kB view details)

Uploaded Source

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

Uploaded Source

pymongo-2.9.1.win32-py2.5.exe (299.8 kB view details)

Uploaded Source

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

Uploaded Source

pymongo-2.9.1-py3.5-win-amd64.egg (482.1 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.5-win32.egg (477.3 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.5-macosx-10.6-intel.egg (505.0 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.4-win-amd64.egg (479.8 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.4-win32.egg (477.2 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.4-macosx-10.6-intel.egg (505.8 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.3-win-amd64.egg (487.3 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.3-win32.egg (484.5 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.3-macosx-10.6-x86_64.egg (513.7 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.2-win-amd64.egg (478.9 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.2-win32.egg (475.7 kB view details)

Uploaded Egg

pymongo-2.9.1-py3.2-macosx-10.6-x86_64.egg (505.0 kB view details)

Uploaded Egg

pymongo-2.9.1-py2.7-win-amd64.egg (471.9 kB view details)

Uploaded Egg

pymongo-2.9.1-py2.7-win32.egg (468.9 kB view details)

Uploaded Egg

pymongo-2.9.1-py2.7-macosx-10.11-intel.egg (492.4 kB view details)

Uploaded Egg

pymongo-2.9.1-py2.7-macosx-10.10-intel.egg (492.7 kB view details)

Uploaded Egg

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

Uploaded Egg

pymongo-2.9.1-py2.7-macosx-10.8-intel.egg (494.2 kB view details)

Uploaded Egg

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

Uploaded Egg

pymongo-2.9.1-py2.6-win32.egg (470.3 kB view details)

Uploaded Egg

pymongo-2.9.1-py2.6-macosx-10.11-intel.egg (493.2 kB view details)

Uploaded Egg

pymongo-2.9.1-py2.6-macosx-10.10-intel.egg (493.6 kB view details)

Uploaded Egg

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

Uploaded Egg

pymongo-2.9.1-py2.6-macosx-10.8-intel.egg (495.0 kB view details)

Uploaded Egg

pymongo-2.9.1-py2.5-win32.egg (470.7 kB view details)

Uploaded Egg

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

Uploaded Egg

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

Uploaded Egg

pymongo-2.9.1-py2.4-win32.egg (475.7 kB view details)

Uploaded Egg

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

Uploaded CPython 3.5Windows x86-64

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

Uploaded CPython 3.5Windows x86

pymongo-2.9.1-cp35-cp35m-macosx_10_6_intel.whl (264.0 kB view details)

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

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

Uploaded CPython 3.4Windows x86-64

pymongo-2.9.1-cp34-none-win32.whl (235.8 kB view details)

Uploaded CPython 3.4Windows x86

pymongo-2.9.1-cp34-cp34m-macosx_10_6_intel.whl (263.9 kB view details)

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

pymongo-2.9.1-cp33-none-win_amd64.whl (238.4 kB view details)

Uploaded CPython 3.3Windows x86-64

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

Uploaded CPython 3.3Windows x86

pymongo-2.9.1-cp33-cp33m-macosx_10_6_x86_64.whl (264.1 kB view details)

Uploaded CPython 3.3mmacOS 10.6+ x86-64

pymongo-2.9.1-cp32-none-win_amd64.whl (238.7 kB view details)

Uploaded CPython 3.2Windows x86-64

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

Uploaded CPython 3.2Windows x86

pymongo-2.9.1-cp32-cp32m-macosx_10_6_x86_64.whl (264.2 kB view details)

Uploaded CPython 3.2mmacOS 10.6+ x86-64

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

Uploaded CPython 2.7Windows x86-64

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

Uploaded CPython 2.7Windows x86

pymongo-2.9.1-cp27-none-macosx_10_11_intel.whl (258.2 kB view details)

Uploaded CPython 2.7macOS 10.11+ Intel (x86-64, i386)

pymongo-2.9.1-cp27-none-macosx_10_10_intel.whl (258.5 kB view details)

Uploaded CPython 2.7macOS 10.10+ Intel (x86-64, i386)

pymongo-2.9.1-cp27-none-macosx_10_9_intel.whl (259.1 kB view details)

Uploaded CPython 2.7macOS 10.9+ Intel (x86-64, i386)

pymongo-2.9.1-cp27-none-macosx_10_8_intel.whl (260.0 kB view details)

Uploaded CPython 2.7macOS 10.8+ Intel (x86-64, i386)

pymongo-2.9.1-cp26-none-win_amd64.whl (238.8 kB view details)

Uploaded CPython 2.6Windows x86-64

pymongo-2.9.1-cp26-none-win32.whl (236.1 kB view details)

Uploaded CPython 2.6Windows x86

pymongo-2.9.1-cp26-none-macosx_10_11_intel.whl (258.2 kB view details)

Uploaded CPython 2.6macOS 10.11+ Intel (x86-64, i386)

pymongo-2.9.1-cp26-none-macosx_10_10_intel.whl (258.5 kB view details)

Uploaded CPython 2.6macOS 10.10+ Intel (x86-64, i386)

pymongo-2.9.1-cp26-none-macosx_10_9_intel.whl (259.1 kB view details)

Uploaded CPython 2.6macOS 10.9+ Intel (x86-64, i386)

pymongo-2.9.1-cp26-none-macosx_10_8_intel.whl (260.0 kB view details)

Uploaded CPython 2.6macOS 10.8+ Intel (x86-64, i386)

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.9.1.tar.gz
Algorithm Hash digest
SHA256 a0786b7ec41bbc0e972e3246a6fed8e71329a4daebd0fe5632add3ecbb0b39db
MD5 a355e434415f11714a82d53d3ceed956
BLAKE2b-256 4625cd99d803870852361980ddfc9f5a91d41781b8cd20d5ea2dcb56f9171a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 7647c0218b95b5b32c2a21138ae75fdee175d1d93d657b10942297df98b0c050
MD5 e98b5d0946e736852bf01028659f165f
BLAKE2b-256 4ddeb5fb273e1ed4c8eb3c1ee1cdb4bf7c4c560fdd4e7ed4e7c7b90a8fdcc8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 e6074384259f9f6167dd90afc48f855b4981f765303f2f8d8d2adc46cca89d86
MD5 77709020f1addb2eba8cc848e65b1a55
BLAKE2b-256 724262df5b78d67ccb3442e8653e214f57855ce04888866a599dd9beb92a7c9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 b66dc95024194e723ddccf22f47a77570558b75e646e114c84f80b8896e7e24a
MD5 7943379b5d9da2e8f183ef03130af83d
BLAKE2b-256 63f3e70f678b62de8f2d22a381fcae5eccecab6e76490543ab2ac60e226ff2fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 31fd63b7abf46387f5a59429616b53c8acc5567729108304fbdb60ecdcf23f9c
MD5 b80ca1c5f8baa70578e46e656e0ca4c6
BLAKE2b-256 eda30cf6e0de27622a8c774a814194f45f3c64dfe50cbfd78a69806b900cb79b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 4c718a309dfae3138d61dab82f32e71568acf6299b245615f26f8486cf810777
MD5 20d496298adb2dac5bd5c21773b295e0
BLAKE2b-256 4e65e908388941a2a0be86e07ece831d0bafbae5329c94edf134dabee1d50eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 5c30724ed13fb892f51acbfd7630c7f3a00f1477e50225e7bdaa3c13eae570ae
MD5 3a29ef4d3067148bfb02fe57a2d97d33
BLAKE2b-256 8d50af88cd05be74d5e79e9f25358394d9b21940fa20a07ed08d52ad9dcdab2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py3.5.exe
Algorithm Hash digest
SHA256 92385d5644c34fceaa2ec8aadb883e0cd9e0c42e367b497524652d49e72a0ef6
MD5 e4415f999b7aaf37435357a843926a83
BLAKE2b-256 6c681598d5e101bb29324104c2d5d5986f43671ea6b93f0b669526585876ca30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py3.4.exe
Algorithm Hash digest
SHA256 ec4a242d30657667123ed989ea1c74ab2588ade61db26a0cd3866bd256a93a36
MD5 9e352a61079b48a71cebd7efeaaa1796
BLAKE2b-256 e9dda2c99d8912dfb32853c7cf3dd4ec0e4136b69f0d2daf413bc155d51c3ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 c1ebf5519afc8a6f3e94b41f7d82b0f87ec7f42df5ee18069c812743196f8b44
MD5 0465d88c699cc3b5b2c274ee0785130d
BLAKE2b-256 ea4987e5a1bf1da7fa23947d0db6c66e4a84135e20974c6dfdf892ff085cd502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py3.2.exe
Algorithm Hash digest
SHA256 c2d66138a1ff97e129b9399fceb381c7cccb7ef6a25375a01305d8982160bd3a
MD5 2a48b5c6b1e3750e9252d84ec4c65fc9
BLAKE2b-256 6a22622bd6e73ff74369a94176b54bce7d5a9e21de707d13347ea6f65420f133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 73a49d198415063241912607b814fd74a8247b980a831937a55a5366c4430eb5
MD5 5956b7897738e4a84dea1381ff400093
BLAKE2b-256 565e0d68c51a53a20d67446d782af5ed75b7a1d16b814ae8f6631db329b092cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py2.6.exe
Algorithm Hash digest
SHA256 b30478d2fe8858324a2f691352a9476fbb694e6b77cb9a0317da3f2a4125c0a5
MD5 6134249d7dd4a3e4ae02a9d745fdecc0
BLAKE2b-256 057afe06daf4a67b7242ecbaaf1bda44413572b8206a21e27978c04c1090721b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py2.5.exe
Algorithm Hash digest
SHA256 ec8cca6124a7912434e72bdb250d0f7074465b813ee841729ec41adeee15dbd8
MD5 000c2c1913c485c464dc2639f2a42bd5
BLAKE2b-256 29a9efc740aa660c3017a1ab4936857deda76d3d460a5f4305c1f122ee4f5816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1.win32-py2.4.exe
Algorithm Hash digest
SHA256 8a75b10deed00a90db501e1e46ab2f75c7524971b62b3161c1f7403acb407c12
MD5 e33075e7ae6ebfbbe96ac471a5192f2f
BLAKE2b-256 9db604beb9a67e0f2fc4f05e753da7af33d7a37898d47f9e5b11701181b44a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 f86fa53c5a9c384f37c7263ff415539a80d7b21fafe156803e9026d081225c13
MD5 643d8c5a3abc98a908b6a510432b20c0
BLAKE2b-256 1da4e2016dbc9f06c9acba63e536e239bca7711a93f582152d766ef825b01e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.5-win32.egg
Algorithm Hash digest
SHA256 d9f1703aa7f90f7e8e214aaa9326586fe0269493b2fdb4b4a3319efff5682a86
MD5 75d6472b0cf195cbbc3637f9ab62a3ed
BLAKE2b-256 c82c512a30f77f17546b24b52e197d439513140a6486a9aeee3c9b2c15c59bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 362214471a8c993266faee8bf271f5027972b6d7964dab8f9d780fbbc34d1be0
MD5 8fec2df5b07dedd8d7243e0eeca74d99
BLAKE2b-256 f84754ee048448b3635ac8cc9a9bfd68249efae0f1e2570e0a650f3013efd42a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 72ade0fb84581a13d6b401cd20da9d5a5d50d4cad08ba6c559d580b00823be1d
MD5 03cd8c8d63d56a4169dfb01750ea51f1
BLAKE2b-256 c7d02625d8c56083cd8e1da98492431b5c0306a82135b16619b4b43c7ae1cba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 5e03d2546365f59885c19466f77c261256f44f16fc96c304183e5fa1cd233bd1
MD5 11ac8954987583130629b3dd3e3ddca9
BLAKE2b-256 4fff3cc34332d30fc8b2f13ecbd48c19d8f508e1ba5931f2bb175fdf9ea54f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 299c63b2249bcf4b0e43e4bb3870cf90ce2e802b000b7534d77fe9b04bf8c4e8
MD5 6e38cb05943363a7f8329fef7d07d4f5
BLAKE2b-256 9c9d44ed00335720e6b750c06d1e08d38dbaa10cfb26168ccaf5ed6a67b0f2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 e2fde2406f009cf4566093d4e2b3db8465b7775aed3be9ee6c67b252f57bf29d
MD5 f31b3219ae3749dd30a8c7e1880c1dd9
BLAKE2b-256 278141562d868bd907940518ac26c9af6d8e9b22fcc5596c51f12134271d8aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 15f40ecb50fe710229b2484712a6d5af9bc92b4a18aad9eb1f8aaea6c56b791c
MD5 5d022cc3a2febf9e211693125a97c079
BLAKE2b-256 8bf89e1b31c4f73611c21cd7f71ac5364bef2fba2c7bc590a81d147f71506d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 57d243bd1d67957b28431c045432db2e07a4082792728f1e563769499ee92ca5
MD5 52ef06029ca5eff329aa29ce4a2798bc
BLAKE2b-256 acc5d8530a318202d721df1bf9269d50587f0e59f5660d6e7484482ac5bcb986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 39c1f4d87baeda2839fdb1d7c6dc411840e49eee1f712518ab0983e181f46276
MD5 1ba6c7d1d6ced2e3434bc15139dcb4e4
BLAKE2b-256 ef778dd200a417093df954eff31a30dfd97f5c890c08699ce18a06380bf188fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.2-win32.egg
Algorithm Hash digest
SHA256 f1bab6383e17db73446defd4be74e7a034e28666bb1d640be90ccb4530af233d
MD5 84026509da18ac7f0df8884b8a8a8548
BLAKE2b-256 c07cd6b98d82bb94a1f3e3c483e5160b0bdea94eb0938db0c93507a013444782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 5debf70f986af578b0c9b4d2eaff30903f2108d90eb160a1959941367ff6c826
MD5 872dccabcffadc329a0113378b48f485
BLAKE2b-256 a0a72f96b62509965f5e5ed8a7eb65fa1cf058ebacc806b4c5adaf9f3bc88b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 04943cc4a847b1c0d976e3979b7cebe1f4064d6a11aa120fc4f2adab24182cd5
MD5 d6acb4681cc8c455c5d15bc003696807
BLAKE2b-256 eed95ab68ccf1843e0265c7becd034490872d6a67587f7441f90d45278facf78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 d8c842fa30db141b47d8d8039a32048de72777f6b3ad70434bdcf16713fc5f3f
MD5 9d6327f9d2100351b03187bcba311bdc
BLAKE2b-256 6c6762c972353699d8666b0332a35cac5225b243f1565b9c9e0ca28439a6bb88

See more details on using hashes here.

File details

Details for the file pymongo-2.9.1-py2.7-macosx-10.11-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 dca74b0e12104104fd0663851d8b8429b1d81649804f9342a6392e1b3843eb7d
MD5 b07c6eb2db19a4c95bcce2513981a94b
BLAKE2b-256 7e646d5cf0a265c463ef0aecafb47ae210b87c26ef05f651c8eb623db79cd01b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 29ce778c05500adc71a1f6c66f3233ba61765b6006723d622e9afbe50db669db
MD5 e13933c7c4c6e1faa5840a1264efa611
BLAKE2b-256 e17f4f6dd070dea92f2cd29ded324b1ee6ed3a82f223ca51f4a59d6b1eadc94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 edd1e885fdc79fe56fdfb74071f86f5de0457cb12fc4ce8521c879ec7e553337
MD5 ea1aa32f987f0b5bc51316dfcac8e6c4
BLAKE2b-256 187d2aae524e6a93c21ddfbe05dc20210222777cda385d1a4b3f62d075ce7c71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 0ae8943c89309120e8fea1b12843505a5d701be48ba8352821b18a6e378ddda1
MD5 e2a78bc1a580b2f9b0164420c957418b
BLAKE2b-256 c21fe6d7b94e86cb5fa3e40676ac7fe07428e60c58e141dde499b6e4df5e1b73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 8a2db0f239d21386fd9bad92c36fc0937082d842ca09c99fb8d7def700803dd4
MD5 19a3863b065448a33dd9570f0d2f271d
BLAKE2b-256 24a2f7412bee4d392331a76a4c8df0a4dd1f8b361d08efc9a4c6534725eef0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 8c7acb25f60935e5c0230deed3f78a6b39e10e2a62f91ac5106e213f114dda77
MD5 6515d618f1111af7a55c31d5e01adadd
BLAKE2b-256 cb9a0ef8e3ca8d6f42275222a7b95a4c49be7ed951fbff5ba576cba88fe3ce80

See more details on using hashes here.

File details

Details for the file pymongo-2.9.1-py2.6-macosx-10.11-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 afbdf38329da0b882b3027e6a139b1d3d4bb4650b8062938f10bae1af0cd4e69
MD5 fc822f82714cb337b28b92a0033e269d
BLAKE2b-256 d377b50a880e0f57bf24c23122374109d41b32d1e188224247b35f4d250676a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 30fd085e1549999c584e3c0dbd68a0d34a30647532db10b640ae3e22bc9f4f60
MD5 e5e4ca4596ea415a39d34d090c42198c
BLAKE2b-256 3c5a8daa8b48a8419021f017afe57df43ede9eff847b8e0e1544bc1d44e2494e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 400e55e6149184c4abbf2d899464352c9aa90cc78904de3a780b71ab174570fb
MD5 47471e7915ae4ad340e2645c12d837e9
BLAKE2b-256 c1c64adb770e5c0a0cb43c934fc1642099d981599bd79e6dd0e5c52e42498fe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 da9411410c7f6cd637a581387eec2a0926d82aeaadd757298c2745a5524c10d4
MD5 609f2d5853a6c8aa2ddbba05b3523c2c
BLAKE2b-256 56e58bf747c3febf60b46c7210233c29d9e25d77de17cde6bb427434557722e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.5-win32.egg
Algorithm Hash digest
SHA256 968bb7a9d47417c437fda24af0f27328f209cb539aa322d7edaa4acc2ab53c66
MD5 cd6b23e35883afcac4b3dfd9782bcd8a
BLAKE2b-256 44e372a5ce4c28dd1ae4b592b42ca1e2b449e3fd6b359d8e4fa8e404bcdf49bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.5-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 84cdd389047d858b1aa50a1b9d7352878b713a7f9f2fb1bb46fa8520e0d48d8f
MD5 3fcaa1d23dce6cab996c39209955ff9f
BLAKE2b-256 339386b3e2f548bd804231988bad7dfda5df4441c6058048335aafb6a250250a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 d3a9a7bf023a3d3792d2260f9d9667889a23996da4a8b37581431fbd46fc5373
MD5 99ccf292bacb943370a0315759c2dc64
BLAKE2b-256 4b2402801437735c74fc355cd3d8972389c20cfed4bc03cc596ebbad044e6085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-py2.4-win32.egg
Algorithm Hash digest
SHA256 cda6e437573edbb56e3352034e045b6dd6261398b9cb9f81914c89506aa966dc
MD5 65ae700d4f6e99bd21f142c3ad93cec4
BLAKE2b-256 733de8e9a9c905c1833db4a2174296c8759638209c43e082eb26c7956819b195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 a8f988cbdaae937c21abadac39d02f00faeba45c2920abc6b1c933d0bf64737b
MD5 5d258fbfdfc5bec3bfc8cdc406e67448
BLAKE2b-256 090334c396cead70480dcaf81aa6227c7ef40c3382a7ef804b03305e043a2c25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp35-none-win32.whl
Algorithm Hash digest
SHA256 70ae3c808576a92e4dcd962d6c78822345e1fc3cfeb19f8be0bf78323b75fcc7
MD5 5c85d5fff8aad9dd467dd7e090535e3e
BLAKE2b-256 debe62f8e46b937d72e5b980e9ab84ced289756beee42ace1c3e4b8840ddc416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 5802c4c875b78b07418d79de7aaffdbc5cb1d86406fe1a47931072412b2ec822
MD5 867c86669ad37c37386a8aedcdd5a310
BLAKE2b-256 2caccbd5aaf8f72d7ca51bae2eb76c1531e17fcb9760812956904bedd0d0ccb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a0c3ff27570758ee8fbfc6635964f97dafc90a969dda70752fabca9094f1466
MD5 2b7dec572f61612c7a6ab929f091e371
BLAKE2b-256 c8affa47694840474ae7c810341340438bf757411f0fb77ed5d27049ab7919c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp34-none-win32.whl
Algorithm Hash digest
SHA256 647391eb149e4b1f10884b55b954a95c51632b62e5fb8e0d04d02776cc5189d9
MD5 dde2d27e7c070fccf85d8bb0943b5ea3
BLAKE2b-256 c0638f72700e3ffb3c68de37889b5650ca414904e5ea412adf6e33e25e0e7f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 ac95078fa6fabdc527607f48ab1e9941f8f9b9a8a041759e0181095f77e99914
MD5 625230284734dcf2329b1700157e80b0
BLAKE2b-256 74652a95214363801b3d33d93267408c872909e9097919aae1307a646247f3db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 c3f14849899dfc923f00c0be831d1a848e6ed057023041b89d289875354c641f
MD5 a41dbaa27989ec57ed75fdfa5d85961c
BLAKE2b-256 5162a77452518428da29b178f139eed0dd19d66d910d0e2b1afe6d808cf28d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp33-none-win32.whl
Algorithm Hash digest
SHA256 cd3ac4c86a71b4e94bf31d0ca0266bfa03fd79a3eee425dd322de335308d40f5
MD5 b5f5ae858c7bbb05bc5e0e1fd132b6b2
BLAKE2b-256 26d6fc3511afdd403252cac7dc427ac835734fc7b66ad7e4523942f0bcc9dcbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 da5fc54783ecf97a5a5ec3ed28e01b9093a8d95c17df5b3aff4a2fa65c245755
MD5 aeb061abfc8ad15912b3ff3e52ba55e6
BLAKE2b-256 9c732c2a3048714955d8314d276158949b9873339dab343e99b7d6dff97d2283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 66d25e25785111dc237f7d7e410a317b4b0e97a7df634667912aeef87498349d
MD5 5040eaf5249cb008d3253bca54ca5e99
BLAKE2b-256 7d6a0c7e085fc16afdc17fbc867440c9483c0b793e08d76337f295150f285ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp32-none-win32.whl
Algorithm Hash digest
SHA256 21ea271da6fefe7e1feeff22f5288ab171bb3e272079f9dec80171b809d7edbb
MD5 1e27f568f3fdf90353092b5dab393327
BLAKE2b-256 baaf86e0ba47aa3e684b0ab26bf4a659d10ee2600cc0de8edb08a6a63245e71c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 803f1ead27a4e6b97d4ada8074540663596445df6d9029d83b224206d3bc1cd0
MD5 4d286c5302b94b3717bdf23a43864c7b
BLAKE2b-256 42cbae29c93d5edf1c8daf90d08a5a792c42be8b749600e39ecf8feb292f9e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 b60d6c41491e0f89951a1978f110c75926b4489dbdcbd3999f34a94b82c266e2
MD5 ebf67f0cb82098ef85e58f03887fe9e5
BLAKE2b-256 fca9eda2684e5d3ca45b98c6129991c2873a57de8f75fdf530ebb059d2074108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp27-none-win32.whl
Algorithm Hash digest
SHA256 1e2c976bd939da9522d10a393db56cfd791e482ae3885ef264538953f70ef864
MD5 f80c3fb3e7f467789b755b5e22728f85
BLAKE2b-256 da28b6b4532b64f1173a21e900a796b6e2448455e5be0474e13292b762b4ed12

See more details on using hashes here.

File details

Details for the file pymongo-2.9.1-cp27-none-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.1-cp27-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 83f0d5a18b0ac2df4a525200efe59e1e6d87970087f6b0ff51c6cac1432b4aa8
MD5 6498f7b8f04cf42e3586c8de3394c444
BLAKE2b-256 9e2f25f41b76cb3ba947ebdfda7324d1348b48a3b1ec403a920659ad8d2669f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 7f86a191e4f995c8fd8a2e253e24c9edef0ef04fb5f4c5426f165459acaf86e8
MD5 635934e7a5976b60aa4edffcba3fd2f8
BLAKE2b-256 5b98c503b85a75dacb881678251575a5c947e30edb4b85a680642444369a487d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 13076131b41953f2d65f736bf03f977d20911a9dbe6c02fae99f9a473aacc2e9
MD5 1e095620dab0ec275b22240656c4d4e1
BLAKE2b-256 f959315f105f68199ecf33ac6dad33f39de49287f22e7932af0769716edc8141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 3fe15f894e60f74ef617fcd5b06b9263cd5de137add7c349ac1953b8940a488a
MD5 522af65d769ad8f360f7572b7886ab94
BLAKE2b-256 4ec17df3160aa7c4a4019f66ed3fea8d6fe499999624c98794e2abd16c9b01ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 06014609dcb921ca9a19df3ad94c8b3ccbff3cb52c18aaeaa10336c1b82eae46
MD5 dece753ef1d81037c39b9aea7a57d352
BLAKE2b-256 3713f10ab086a1c3631e0b725429cdc20834bf873a2a4f55ab97a7961d40b426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp26-none-win32.whl
Algorithm Hash digest
SHA256 23b6c43b89f362f8c2f3cf39c898a9655e6b93826a7642a2da119ea8bad2c00e
MD5 0ad0e72c3a0f6d5820b3f92a243505f0
BLAKE2b-256 96a8a2a6f91dda922b177c85fbb3f523312fe56d9c5053475658dc9411ad924b

See more details on using hashes here.

File details

Details for the file pymongo-2.9.1-cp26-none-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.1-cp26-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 4c09db0822aa198c59de42f39c6882b41de471e68cf63857611542baeb9ed4aa
MD5 55361917450f808d6cbf8c338b64f8f3
BLAKE2b-256 3cc2cf53ea8e9901b3b8c214eec110ac9d42b1e0cffab4c2db6d399a6d3d24fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 070924436c4d9bce66f0dec77694136c28eebaae80655ed9806abef7005d660e
MD5 783e2863b68f12088f343a47149c70fc
BLAKE2b-256 a273c3caecd6912e552967caefb641a94fcf1d3d65da6a446d7f9d2dea9d8c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 c91e073661fe65e9f8547c4d6cd0338e26b294c3a6872bd3acdee0392ae919ca
MD5 97915d84d665f7b69cc74d0720ad5199
BLAKE2b-256 cbbd1e24d01df678e3ec574b1a158ef3f8177b95db4d81e4bc5f87d1e46eca88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.9.1-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 417e7bf1827e5023fee3830f2a955eac34af7004028f0d01d58a81b78e9afab3
MD5 37ece8993aa3160d4f7be3e5c0dfc595
BLAKE2b-256 553ce30a586b01ab785a9e3a87f17bad54df15c00d6c5946b9edfbed4435ad4d

See more details on using hashes here.

Supported by

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