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 >= 6) and Python 3.x (where x >= 2). PyMongo versions before 3.0 also support Python 2.4, 2.5, and 3.1.

Optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1, the default authentication mechanism for MongoDB 3.0+. It especially improves performance on Python older than 2.7.8, or on Python 3 before Python 3.4.

  • pykerberos is required for the GSSAPI authentication mechanism.

  • Monotime adds support for a monotonic clock, which improves reliability in environments where clock adjustments are frequent. Not needed in Python 3.3+.

  • wincertstore adds support for verifying server SSL certificates using Windows provided CA certificates on older versions of python. Not needed or used with versions of Python 2 beginning with 2.7.9, or versions of Python 3 beginning with 3.4.0.

  • certifi adds support for using the Mozilla CA bundle with SSL to verify server certificates. Not needed or used with versions of Python 2 beginning with 2.7.9 on any OS, versions of Python 3 beginning with Python 3.4.0 on Windows, or versions of Python 3 beginning with Python 3.2.0 on operating systems other than Windows.

Additional dependencies are:

  • (to generate documentation) sphinx

  • (to run the tests under Python 2.6) unittest2

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.insert_one({"x": 10}).inserted_id
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.insert_one({"x": 8}).inserted_id
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.insert_one({"x": 11}).inserted_id
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 run python setup.py test in the root of the distribution. Note that you will need unittest2 to run the tests under Python 2.6.

To verify that PyMongo works with Gevent’s monkey-patching:

$ python green_framework_test.py gevent

Or with Eventlet’s:

$ python green_framework_test.py eventlet

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymongo-3.0.1.win-amd64-py3.4.exe (442.0 kB view details)

Uploaded Source

pymongo-3.0.1.win-amd64-py3.3.exe (442.1 kB view details)

Uploaded Source

pymongo-3.0.1.win-amd64-py3.2.exe (444.4 kB view details)

Uploaded Source

pymongo-3.0.1.win-amd64-py2.7.exe (443.4 kB view details)

Uploaded Source

pymongo-3.0.1.win-amd64-py2.6.exe (444.0 kB view details)

Uploaded Source

pymongo-3.0.1.win32-py3.4.exe (408.4 kB view details)

Uploaded Source

pymongo-3.0.1.win32-py3.3.exe (408.5 kB view details)

Uploaded Source

pymongo-3.0.1.win32-py3.2.exe (413.5 kB view details)

Uploaded Source

pymongo-3.0.1.win32-py2.7.exe (413.2 kB view details)

Uploaded Source

pymongo-3.0.1.win32-py2.6.exe (413.8 kB view details)

Uploaded Source

pymongo-3.0.1-py3.4-win-amd64.egg (433.4 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.4-win32.egg (430.9 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.4-macosx-10.6-intel.egg (459.7 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.3-win-amd64.egg (439.7 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.3-win32.egg (437.0 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.3-macosx-10.6-x86_64.egg (466.5 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.2-win-amd64.egg (431.5 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.2-win32.egg (428.4 kB view details)

Uploaded Egg

pymongo-3.0.1-py3.2-macosx-10.6-x86_64.egg (458.1 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.7-win-amd64.egg (424.8 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.7-win32.egg (422.0 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.7-macosx-10.10-intel.egg (446.3 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.7-macosx-10.9-intel.egg (446.7 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.7-macosx-10.8-intel.egg (447.8 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.6-win-amd64.egg (426.9 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.6-win32.egg (424.1 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.6-macosx-10.10-intel.egg (447.8 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.6-macosx-10.9-intel.egg (448.2 kB view details)

Uploaded Egg

pymongo-3.0.1-py2.6-macosx-10.8-intel.egg (449.3 kB view details)

Uploaded Egg

pymongo-3.0.1-cp34-none-win_amd64.whl (216.7 kB view details)

Uploaded CPython 3.4Windows x86-64

pymongo-3.0.1-cp34-none-win32.whl (214.4 kB view details)

Uploaded CPython 3.4Windows x86

pymongo-3.0.1-cp34-cp34m-macosx_10_6_intel.whl (242.7 kB view details)

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

pymongo-3.0.1-cp33-none-win_amd64.whl (216.8 kB view details)

Uploaded CPython 3.3Windows x86-64

pymongo-3.0.1-cp33-none-win32.whl (214.5 kB view details)

Uploaded CPython 3.3Windows x86

pymongo-3.0.1-cp33-cp33m-macosx_10_6_x86_64.whl (242.9 kB view details)

Uploaded CPython 3.3mmacOS 10.6+ x86-64

pymongo-3.0.1-cp32-none-win_amd64.whl (217.1 kB view details)

Uploaded CPython 3.2Windows x86-64

pymongo-3.0.1-cp32-none-win32.whl (214.3 kB view details)

Uploaded CPython 3.2Windows x86

pymongo-3.0.1-cp32-cp32m-macosx_10_6_x86_64.whl (243.0 kB view details)

Uploaded CPython 3.2mmacOS 10.6+ x86-64

pymongo-3.0.1-cp27-none-win_amd64.whl (216.6 kB view details)

Uploaded CPython 2.7Windows x86-64

pymongo-3.0.1-cp27-none-win32.whl (214.1 kB view details)

Uploaded CPython 2.7Windows x86

pymongo-3.0.1-cp27-none-macosx_10_10_intel.whl (237.5 kB view details)

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

pymongo-3.0.1-cp27-none-macosx_10_9_intel.whl (238.0 kB view details)

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

pymongo-3.0.1-cp27-none-macosx_10_8_intel.whl (239.0 kB view details)

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

pymongo-3.0.1-cp26-none-win_amd64.whl (217.2 kB view details)

Uploaded CPython 2.6Windows x86-64

pymongo-3.0.1-cp26-none-win32.whl (214.6 kB view details)

Uploaded CPython 2.6Windows x86

pymongo-3.0.1-cp26-none-macosx_10_10_intel.whl (237.5 kB view details)

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

pymongo-3.0.1-cp26-none-macosx_10_9_intel.whl (238.0 kB view details)

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

pymongo-3.0.1-cp26-none-macosx_10_8_intel.whl (239.0 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.0.1.tar.gz
Algorithm Hash digest
SHA256 d26076e838335d33d10f35f5b94a5a618a7aea5519c889b9ec473b23200b1237
MD5 f2aab37b56229981f975ad1daf61b774
BLAKE2b-256 5481d9c83fb35ecb4bbbcc5d14d808867d2ebbd62b50b05daf72f4e976c8a9a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 a6741dc8acf348140726e604011e689bab890f5a95abad8fcc6630050c914e47
MD5 4bc8ca5d7801cca1d2abb7e36eefd002
BLAKE2b-256 0a30daa9ab3fef1d971113b99d77b5414ece431a2e4d8ce6e8561236e3b25a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 546d4e07a12b23621d6a0f1d5b3a719d8616161c29354e3471a84f525951eb9a
MD5 3c8eb0daecabea8016bbe1391668376c
BLAKE2b-256 c55a607bddad31aed147433818bc87d8d49c3b9db2b71e665adb067de43696a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 5f34f31a166dd945c9bf1895b820580685d8f688a71db8b9df8119cbaa8dcc13
MD5 6d2af13e1a25400b93320e69774e2882
BLAKE2b-256 52b81e2046a7e5477f03ffc5f85c7ce1f14cfc9b1451311d3d359a7258962efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 68d8694d7a99eac88cf21e87b30efeb6cd29b22998facc23fe01fc0729f6ba5f
MD5 d757d79590182f9b8138fc2d02d3bd46
BLAKE2b-256 e4d4a8c570044bb9847a767c752301cc8d654c3948adf84666d522d4553fe1cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 75a569b292d5c908ed66ca1fdb9680a77cd3e821ea48d9a5d6c76e305592c2fc
MD5 48fd8d20a911827500e7e8f81dca19eb
BLAKE2b-256 cb38a3e30d01a7d17fa40a20c6cc4157dff2b9c37e9d9b504650405c0e96644e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win32-py3.4.exe
Algorithm Hash digest
SHA256 72371bd2f0b3153797cda16ac28b25642dfa923d56f66812afa34d8b39f84c83
MD5 83d4c22a2eb90657290ed6fce1360123
BLAKE2b-256 00071f4565d249c2e2815814f771bcb574d6ee0bddd6e359862f912fd1ee6b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 e5585866c9e63a5bdfcc7f5a64d7d961d4a173247f110f672f7badf87250979e
MD5 45eda1355d347d64f6825cb4108501cf
BLAKE2b-256 ab048558a697cc77d1e3aa241db1c9dae5b8d0056c4f8205f2d43a676259b12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win32-py3.2.exe
Algorithm Hash digest
SHA256 5b7775200faca7a35e9e56acd4583ac616b1a377035ac5f9ff03874f5eafcf8a
MD5 d59984d824ccb9adde032171df4ed174
BLAKE2b-256 676dbba876a919da65c1e717ca0d6b1ae29bac76bcb3fb63f0de545a12697f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 9b7e31d637ced0a6f81e0d5ceba21e8cb7e6262da279fd03076c43c5b2bfba28
MD5 7a930ded7697d9262beed1bdaacbe78d
BLAKE2b-256 f7814b19c8910fb1a6198c90e44c60455d1683e7e943e07857f3e971f8539e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1.win32-py2.6.exe
Algorithm Hash digest
SHA256 a50845ff102ffa3f5d58b294931ed30fb25edea22a38e539c6a9b4cc47d0500e
MD5 ade7e2a22bb31fa2e533bedac098c33c
BLAKE2b-256 42164d92f35bba26ad1a76290b69638c02cc0a78ef431fbf9eb2713233c5ed30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 3baa2c0a00bfd9dda9a5e361dafb30e0b0a871b00194c51c89cee2381e6dd56c
MD5 35ed0ce525e60f91ecacbdf8d4ac7aa5
BLAKE2b-256 b4d9ddaf92ee9eea73bcfcd21d583cd502f8eb9baeaa146d27959de2dd0caf83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 b2edab68162be80aea591c42c127dd958ab668959260dcd58c5cc652d5c03bb6
MD5 5fced7ca653e91c33b05d6c21d5e8b1d
BLAKE2b-256 08f01c51fb03a352b7e3afce03de801a9047bb8d4c3d9fb569de202c17f9ba16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 183982ab390d04a29e36e789e6501088fee552e6c94cbbc6788db9021b14a4a7
MD5 801b29c4938653e7a8275a0e7afaec58
BLAKE2b-256 971a5ae1299b9ff88ee84dd1a01f2b9e26d5eeb67f82bddd80b945b2e2ca6f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 f733cbcafa1927313816029566573cb29dbe1433f8f7a92c6864bc3bdf3ad041
MD5 6a55f646d20470fb39f90bea59fed175
BLAKE2b-256 923e26e5353e7a864c6bf1ec56d6c36e6aa6d16f26fd3bd78c7f4dafd68a970d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 b732ea6ecf84075908094859c7d032ad6399527a093946aeec477b81b6f4c2f5
MD5 22254c6fd379b724279393baa8277713
BLAKE2b-256 93e626947e62e1151246b699124f2943acf72b314356e94cc08104c8b99c3513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 7fb368c23a4f1f73d88f72bd81457314385a31e9623c0aa55c54bdb42605f7ab
MD5 16afab1515d6f052fd41d4a6a45bd048
BLAKE2b-256 b9ddcf0de9975d327cc145024acbe2ac61313abcba359bd8e61046cf7aacc9f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 94b8985db1368aac4c9bedacb2652ce0b5e7a2c1d8a8905abdb02bfd7ef6b300
MD5 6fa653d284c04d82ffebd348fce2c22a
BLAKE2b-256 0991bf4866bd5deb9c6eb816afeabc731f9ba199835090c6e154439c6da807c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.2-win32.egg
Algorithm Hash digest
SHA256 ca17cd1ee4036c16039444b0d647ed522c27326215b4fbfbaa4c5cfd8ced59f8
MD5 1aa24003a978f76f168b34c14155b877
BLAKE2b-256 c7275a6183f6b7e7002d757aab3fc70af431da67a3626ccd890340522b6b8906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 18debe8c1c3581fdd1cdcf8802a0945e6d84108dbc14a35fcfd4ff1e6d7ae9dc
MD5 812abf9c2cb42b7a12bb3f4dce237454
BLAKE2b-256 9536769796188d2823be85546b64069822765df8f6eb3beb03937d1b9075f045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 130e90288bcdfa2ec243770b3833f832462609292027dff598e97715b8842aad
MD5 44c37d0c4fe7f70f93d3bce1192f02f5
BLAKE2b-256 99d90a7279d514a79f2cc9565cbaf536559d502c6adc1b142b583360f4b4d4f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 45ebf1346bafc28bf05be648e875914607035ab60d4a1c127468aeb3b325ffc0
MD5 9b5af76bc9e5051021e01adec4be3571
BLAKE2b-256 cd753ed331d22f3bfd72de2eaf5ec7fffe3074562dd1a288f42729c09af904b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 7c9bbe46491a446d70e394fa929379a4aee4420a6521f15c9cbcb6f3df01130e
MD5 fe1c630d3f87ec38a4367b646f9d5a37
BLAKE2b-256 e71b24a44ef13e33f170c8e876b5b8641b93b758b1c44036a24c3890b825f099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 2357c8258f74acc650ae7678abc6e7b5de9ae91f7dd861c228884acf0456f116
MD5 f378e4077fd3905a158e2ef8aa37913d
BLAKE2b-256 4e9eb6160b8d3bbc9ce9c2c146016e0bc9b6020649bd5a95b64ab99a371481ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 0de5a9a13a76089cd52e3727c2d438c3ffcc0646a4d2df40c9457013141aaa87
MD5 37baad074982e7b476e6e4911be5ae79
BLAKE2b-256 5104fca4d5503811f3218cc422effb96126471c653883cfdee28c4c2732c182d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 10607d35831656a30fd6d5cedc45a7d31e536350de9ea2a0144550cea140fb3e
MD5 f4dbb26ee90022b99881d129c233f0e8
BLAKE2b-256 e7731b6098a3d41d6769dc27c3ea3460aa2dd7768f7759bcac91690e5a4f561d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 63a79c5649b305d700a1fdb6e5f7536a752b08a2c79c866320bc355cf8c1e59d
MD5 14de39358dcc9a42884a14c4d85df187
BLAKE2b-256 3c045ef741b4be686f57f699f73aa84793a7c3a70e3ad5027c558752410a304e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 8554c01b1c0dfe4c9282824ebba5c77de824eabfd05083599e1a58b6014a3216
MD5 78003dd2c5e300947af4dae4da1df9a1
BLAKE2b-256 8a0da60459bb46bd5c6dca1b4a91f05ee3796c6696f5d3f643a2f6732bd70e60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 6c21d44607403bebb7ed4ba86ad13fdfafd7d80d951088c75fc394efcc038f72
MD5 9ac35773ba3b1d18c63f0d911733c921
BLAKE2b-256 f6204c5c51e7d35ff611c11be02d9abf3dce288d1601331a1c8f9cabf8631ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 a53f0b37a0af1b92c0108da5490122efc76abc7080a17cd7f887522e859fc0a6
MD5 9c19334a04361a45199ca41ce9c1f23d
BLAKE2b-256 ec5f9301e7d5b677004e3c50c1a97063f2f17d32ddc9349b911a969f1be8ebe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 5ee73075e988c8c8a4c1a2a31906d567788d9b9294004096624468c585ea7599
MD5 f55ddde6b09c1fb71e4d6427d08eb5b5
BLAKE2b-256 04a921a0364b890adeb1834a552e3eb82f35ff4a4c6a18feefb02b0865106159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp34-none-win32.whl
Algorithm Hash digest
SHA256 afa9c57159504bc27d652f3dddb0e90815f41043dd7135a5d459f63c38d4b2dc
MD5 b76040a040ae01c51d53cc036e9a12c7
BLAKE2b-256 7b96d38ab25edf6d2c2e6b792157a3ded7ba0c33668f126143374d5e22cc5edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 adbf4bd74d41ee41f279da2a2c4db708ad2811cd19031ee402afe8afdf416017
MD5 d35e6615b838e75df2af10e6a68baa43
BLAKE2b-256 21f2f4c9a1eab8274a1db0462e16a158769c63c11b6054aab3977b9b2ad2fe93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 9edc51c0ecbe4233a72969287fccb73c74b00f32d8227b07bf6cbd8a47804e32
MD5 1029e9e7ba137c805aef20951e2c85a7
BLAKE2b-256 463c7836569acf6458159cd01734e4b48bc1a2499c018095201c37e33a53b002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp33-none-win32.whl
Algorithm Hash digest
SHA256 136f3002034a82a7412594944eff1d67b92356fd2a80fb0f44a15b7b21b07422
MD5 e110f5e625445905c48497ac783c98a6
BLAKE2b-256 f8e3b18bfb4a3bfc2ff7c939d7e2a12aafa8ef9cfacb8bc463e5ffd7dd776b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 80b9e4f11ef0da40218dbb3d1381198bc2dbbbd4f7cb74d72f83d1040ff96ef5
MD5 0b2506dd8bf14505e8ffdf9ddb4230b7
BLAKE2b-256 68af765ce4b6c286ca2db523de6f53b2fc7e9b8c28787050620156dac99525d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 28dd70d6b5fd460b77433708d74378e10657026cdbe7facb55dfe2c465c09350
MD5 f527f15c3bce3a7bf4dd1ea4a9096910
BLAKE2b-256 5dae835e288cdd97d8347c302c21f69d7aaffe96b8a1320a5e3c1e1e604736dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp32-none-win32.whl
Algorithm Hash digest
SHA256 ee865046fec33dfa7a69e204843225c96ccee01300a58d8b61edd09d3ac08e35
MD5 3ed12aa534aaad62aabbb7a31bc92cc6
BLAKE2b-256 bf21a8e9b19f249c2581d0222ff2438d470cd0d4a44af4110642f938a14e748f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 c11b881bbd0d4926a7db45c61f089302c15f569e56e110f6beee26bc98b31656
MD5 b9a59549ff844b1fcb5532c73debf46e
BLAKE2b-256 42fd20be4220773cd23bb99628f690ad649ca17745004e24e59aa0572466ba0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 ae73ffc818b3b0a91c842fefa56a27e5a4936208539741a449d89d5450f09984
MD5 e315d8d78c618ce4b7a1fccfe3ab1aaf
BLAKE2b-256 4ebfa3b4aa2948e568f44d37cd5dadf7fbddf924451d9a22be37d8abeabcb28a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp27-none-win32.whl
Algorithm Hash digest
SHA256 a040f31cea1e15ea972473f0e3d553a1b3dc9bf3f6d7d5facfdc0247f31318ae
MD5 f82461afae447bd691c6ec597b5131e8
BLAKE2b-256 3329a105fe9c1b14d81ae3a2f519b6f655bb0173404489725cd778caeb993ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 8d71212f9fa0ad6a1ba0ca2cc5eb048333decc3917a6247d64f00b46e39a8585
MD5 e73def7767341fab31b385ec8235084e
BLAKE2b-256 770164807809e1ac520171e396f6a6d125aab53ecf32db959ca59f15360d6dca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 7308247fa6e6e6160034c6f1cc96955169366dd3f40e261f8a1d683a8b6ba247
MD5 602f70abdebeca72ea8a149043b9147c
BLAKE2b-256 504b38d7e519b71289b2529eea68b638a9cfd17b13669c43559a36b66fcd94ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 6d6db7c3d19a2cf192b45ef037b6376e0618d0d1e9db6e3206d6b89168bf1c22
MD5 b8a61a0a028192c54f6c1e2b8b642fa6
BLAKE2b-256 1a5be40c2a75b8fd39bc2d4efd55445474eb02497575745117ca5ffc4f14bd8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 5e788b1fb8024e187028846bac68165099d28aea780dcf74a6bb5afb9cb82b99
MD5 c444bc29ad771baac205b058c3320ec9
BLAKE2b-256 29cc9bb8f30a0cdafbd908b6b0f8319c7b7b16b7c95cd86ab61d1c84fecbf626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp26-none-win32.whl
Algorithm Hash digest
SHA256 4c9c52831f9864a069f1579caddfa75e2708d0b4d92e46c90c1816a3ac8f7ab9
MD5 bb3d0624e1dcd02b68b61b30aa4cd8c2
BLAKE2b-256 9aedaa7107b7ca0d7be6ad5b3387cf71a3ac1fc145e63ac977deaff1f86458ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 deb4c5e1dc91d5d32d42c1aad8ec32f01b721137b1970ff55b6d6adf9e4125fd
MD5 782857e1d71c9dea91aaf4eb5eaa3885
BLAKE2b-256 204014d3fb8a78f914fdff52e648e42338a7d7342dc4017110d280863c4a7ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 b8e953652b16bd376fe60dea8963c3090d69351bba58dc209a6bbce54319071f
MD5 65b22ea44d93b9d4c1f08107f9201e32
BLAKE2b-256 4754e072239ce371762525c7cd12f485f0412a4582e9d575df60a26ac3140b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.1-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 f8f33b84e63ae5318da99f083cc8f96ab720a4bf222c984ff99d2664561b0e7e
MD5 489728cc3130959ab8142950db885950
BLAKE2b-256 642228e9d6da2750163a7e06feae55b995834db0744f42e1248b5960bcf56b85

See more details on using hashes here.

Supported by

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