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

Uploaded Source

Built Distributions

pymongo-3.0.2.win-amd64-py3.4.exe (442.7 kB view details)

Uploaded Source

pymongo-3.0.2.win-amd64-py3.3.exe (442.9 kB view details)

Uploaded Source

pymongo-3.0.2.win-amd64-py3.2.exe (445.2 kB view details)

Uploaded Source

pymongo-3.0.2.win-amd64-py2.7.exe (444.2 kB view details)

Uploaded Source

pymongo-3.0.2.win-amd64-py2.6.exe (444.8 kB view details)

Uploaded Source

pymongo-3.0.2.win32-py3.4.exe (409.2 kB view details)

Uploaded Source

pymongo-3.0.2.win32-py3.3.exe (409.2 kB view details)

Uploaded Source

pymongo-3.0.2.win32-py3.2.exe (414.2 kB view details)

Uploaded Source

pymongo-3.0.2.win32-py2.7.exe (414.0 kB view details)

Uploaded Source

pymongo-3.0.2.win32-py2.6.exe (414.5 kB view details)

Uploaded Source

pymongo-3.0.2-py3.4-win-amd64.egg (435.0 kB view details)

Uploaded Source

pymongo-3.0.2-py3.4-win32.egg (432.5 kB view details)

Uploaded Source

pymongo-3.0.2-py3.4-macosx-10.6-intel.egg (461.6 kB view details)

Uploaded Source

pymongo-3.0.2-py3.3-win-amd64.egg (441.4 kB view details)

Uploaded Source

pymongo-3.0.2-py3.3-win32.egg (438.7 kB view details)

Uploaded Source

pymongo-3.0.2-py3.3-macosx-10.6-x86_64.egg (468.4 kB view details)

Uploaded Source

pymongo-3.0.2-py3.2-win-amd64.egg (433.1 kB view details)

Uploaded Source

pymongo-3.0.2-py3.2-win32.egg (430.0 kB view details)

Uploaded Source

pymongo-3.0.2-py3.2-macosx-10.6-x86_64.egg (460.0 kB view details)

Uploaded Source

pymongo-3.0.2-py2.7-win-amd64.egg (426.3 kB view details)

Uploaded Source

pymongo-3.0.2-py2.7-win32.egg (423.6 kB view details)

Uploaded Source

pymongo-3.0.2-py2.7-macosx-10.10-intel.egg (447.8 kB view details)

Uploaded Source

pymongo-3.0.2-py2.7-macosx-10.9-intel.egg (448.4 kB view details)

Uploaded Source

pymongo-3.0.2-py2.7-macosx-10.8-intel.egg (449.4 kB view details)

Uploaded Source

pymongo-3.0.2-py2.6-win-amd64.egg (428.5 kB view details)

Uploaded Source

pymongo-3.0.2-py2.6-win32.egg (425.7 kB view details)

Uploaded Source

pymongo-3.0.2-py2.6-macosx-10.10-intel.egg (449.4 kB view details)

Uploaded Source

pymongo-3.0.2-py2.6-macosx-10.9-intel.egg (449.9 kB view details)

Uploaded Source

pymongo-3.0.2-py2.6-macosx-10.8-intel.egg (450.9 kB view details)

Uploaded Source

pymongo-3.0.2-cp34-none-win_amd64.whl (217.5 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.0.2-cp34-none-win32.whl (215.1 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.0.2-cp34-cp34m-macosx_10_6_intel.whl (243.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.0.2-cp33-none-win_amd64.whl (217.6 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.0.2-cp33-none-win32.whl (215.2 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.0.2-cp33-cp33m-macosx_10_6_x86_64.whl (243.8 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.0.2-cp32-none-win_amd64.whl (217.8 kB view details)

Uploaded CPython 3.2 Windows x86-64

pymongo-3.0.2-cp32-none-win32.whl (215.1 kB view details)

Uploaded CPython 3.2 Windows x86

pymongo-3.0.2-cp32-cp32m-macosx_10_6_x86_64.whl (244.0 kB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

pymongo-3.0.2-cp27-none-win_amd64.whl (217.4 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.0.2-cp27-none-win32.whl (214.9 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.0.2-cp27-none-macosx_10_10_intel.whl (238.2 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-3.0.2-cp27-none-macosx_10_9_intel.whl (238.7 kB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

pymongo-3.0.2-cp27-none-macosx_10_8_intel.whl (239.7 kB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

pymongo-3.0.2-cp26-none-win_amd64.whl (218.0 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.0.2-cp26-none-macosx_10_10_intel.whl (238.2 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-3.0.2-cp26-none-macosx_10_9_intel.whl (238.7 kB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

pymongo-3.0.2-cp26-none-macosx_10_8_intel.whl (239.7 kB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.0.2.tar.gz
Algorithm Hash digest
SHA256 eb4a2102a82603f94306be2081af0ddbbd6d9c21d65e1dc761f0fecffda4c831
MD5 9a6af8b349946d9759d817e6f50db413
BLAKE2b-256 37836952c5cfb9b8492200958447fd33d20d3598a1a0f2a5539f14c02ad33856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 2228a8693306bf832321623b74d5bcfb6930a42f312ae3fb2df804c37af5f71f
MD5 2e5f8560c21969e87b99235203f1ac39
BLAKE2b-256 b477aa3b850fe81e15104e642feea1be66fe8c75e069b85e0d84a5b4b0534a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 47c9ee19d923bf0a36d8e8a2e7c6ec93da88882bcd999e0b815e9ee7958826c6
MD5 ba4fba74bc3da30588536fb801471bf3
BLAKE2b-256 926d560e1697b8e0684ac4e9d6b25f5bf6494650cabe1fc4abf7850171d950ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 47cf9f7630801280a66498d426bbbb83c9fbbdd32f973e2c991c7ac055e6d402
MD5 e695361c6b35a9fe572a0fe7d36b9b78
BLAKE2b-256 51d56c33eaa476e1ce053a1088c29cd2f4a532bea778f485486a2fb121b60318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 78f2154311a6bcc2697bd72bd761e4014379dd8f3aff4abecf1b242ad19b10a0
MD5 20e73fb05db321787e87d2ec8fd82172
BLAKE2b-256 c4424071aaca1b926c4e20b6a396a8e4154529c67c09dc1395ee648711bd4ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 f80b6befe57e620d00d8f351633289677145e91dee40de31272d0d71a3a0e8c4
MD5 52d04e80398e2abd13186a2b61d16675
BLAKE2b-256 1025d9be053874813965bb8d35e5386df138885873ca2400e43a4790fb561e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win32-py3.4.exe
Algorithm Hash digest
SHA256 bdecd9423a3f91b37e7deaf72e5dc53365889ac7c364c0908ae976e0963f2821
MD5 3e0758248fa06b675c4235850a94b978
BLAKE2b-256 e43373269a496fa9e76dfd4acb598e746d2770b67be897dee09d5b71e0354246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win32-py3.3.exe
Algorithm Hash digest
SHA256 b914129989029685008e89bb45f1ecec464a80f21a479b03c19d841e9c42e333
MD5 f063e7529372774691cfa200fa669f84
BLAKE2b-256 21e815860fadcf6c74c8e46b73618733cba0b643ab8217f1fce941b4094a42d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win32-py3.2.exe
Algorithm Hash digest
SHA256 85d87e8171d386012053c9a75792fe7430bdfa2981afdace96c4a185b141f28e
MD5 d78048dbd32203ee290c79c9adc98484
BLAKE2b-256 e1f8705be3032fed5f8f192b4933557ee847f7532769f21aa5aef27d50cbf16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win32-py2.7.exe
Algorithm Hash digest
SHA256 8209c7f3a9481a42184efab286bf5e2261a7db35757a6532f81b750929152155
MD5 6a1494358c9060586195c3de042f4f24
BLAKE2b-256 713fb342e7eeb673d9c6e54a402405b74c539a4f05e185779b4323b69cbfff12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2.win32-py2.6.exe
Algorithm Hash digest
SHA256 a76f1a7b48f23201a9f64e556479d5260bc2191cd2571588f63515b192dc5661
MD5 b533f7eadc318f6c3aecc147b21a4715
BLAKE2b-256 985e41b1a6118e0b0cace2485fcc0ee3209339d191cd33612724e7823c2e87bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 d4f49eef78c915f1dd3661040888bc630da2af0fd9e7ff3e57fbf7fdfb40231a
MD5 4174f245c632b573c91d8311ef4d1a55
BLAKE2b-256 6b13611959ed3db625ed61f5a9676671fcee85315e84c0af9813a638ae33d10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.4-win32.egg
Algorithm Hash digest
SHA256 d79430ab0aa68d6e0579932a2f4f21e46ec8ae3a9cbb5540193e4e6fc14a6b93
MD5 a9b7a5185dd8d4571d564c79db339f2f
BLAKE2b-256 27b460bea8768ac25a03c417dbbbad4614987aa74967cac3e7ce43054628e70f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 6048474856dfef28c3ad602a4b97620905487bd03d65e8cf6e19644d072adc00
MD5 45c89139525347fc7af348a8781c9cba
BLAKE2b-256 4175d7b4b32cdeec438a3e7272d13e693b080b591b45545c664fcbf170502114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 9b165761292556be3b88dda61e2e14a544f224680f03ad5d875151d78bf8602e
MD5 872f021873c95aa7f19734b48ca6e7ea
BLAKE2b-256 20086fdca3ffc5d8c7ea4e5330936417d52c4d707b6fc63bd1aaf545f72716c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.3-win32.egg
Algorithm Hash digest
SHA256 fdcbd5a9a4cf586eadd89f80c7c2f663ec7d1455e6836806ea87e80361f842d9
MD5 c16aad5479d5ac16ac061d6b6deaeb17
BLAKE2b-256 9c81ba2408f7c11a875cf3fdb63f6e627271e5fe8da542c11792a59b1e34116c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 09b511e861208fece0e9f954e8f3fe92d5b07068b90948d99b4c43465fa22d8d
MD5 ea170ebec6b98a8c172e194197f236fc
BLAKE2b-256 015e51d71769698fed40a348ddf0c14dc07fcf6d2290baa772ef8b32a5e77aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 a6e6c4cf7dee3097bfee8ad8f88f1279cfce2225909792bbc5a1b6e853621b97
MD5 186f5a79c6fcbbc0864e2b809d1402ab
BLAKE2b-256 281a1d233e098097f93732ad614810e71ee56c520b2d087f2837e33e202d7af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.2-win32.egg
Algorithm Hash digest
SHA256 985a007c2688db949e8c25e212bd305b1266f687ac599295a3f2d6168b6a6d33
MD5 a563be16c7bb8e74d2b2732b9595ec78
BLAKE2b-256 18507959c749d5c2b2dca489443c74266df61ee989aecacb06737f86150b275b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 f8023174a8740cc6a7dc8ffaf68d57dc6c3ad3c796b4c109cb83f2ed9abc1fb8
MD5 3026c4cd51a714db6bf04d1179e6ea20
BLAKE2b-256 7c7bd06a84e677f39eda8e6494f2122552a9ebc80eb0dac90616b9a872622dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 64c9fe88ab61ac0c9a89eb2e7add30e1f22b07ad897e8b08102aaa9b0b754222
MD5 e02f11dcd605d3896ee378728fe92203
BLAKE2b-256 34c373f218da501953ecef1b5bc3070657b9449de14aa9298180f3ec05ff6b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.7-win32.egg
Algorithm Hash digest
SHA256 cea3b56077135bb38f8757af2b097b41140a3f17db1830b667e64d39b4cb6253
MD5 57659cc442b13587f2f1d66f52daf7d5
BLAKE2b-256 1b413133f14c8d4853b0a896730081c27859a6ed2aa33d709d4bd528eacad693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 65e427724152c4dbc9ebd8bebb0167de2661ed077e7c9bccf03f6d56e5f469bd
MD5 84ef58f584cd955889567dd65deaf747
BLAKE2b-256 007c286d211e9d3e8f2991dd769a8e45b5ab3d6042bad104553900f786fa280b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 7b7c7cb5bb8e5dbed03a4318513ce7cddc387c92bc0530d399da65463a0d8566
MD5 c12d05f8b6120f775da28ed04d13c977
BLAKE2b-256 4b626fd71586ecb6a809082170a387c7fb88a397e26ed1d18f24ebcc8412a953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 fbdcd6e3a2da5cd0e1e828518c44366e23b761f75c870df973c32567ae72bd33
MD5 bbf2ed0863c94b607032f4237b4760ec
BLAKE2b-256 e78b7445a6515cba7512f18cf86911993e89bf491f4f84a74cfc8484d4ee42f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 c74c1cef1b4b3df1032fafcfba8b6be793e8955bebffe5eb2d2dc3b7090096d6
MD5 525ec01886914c6ce97b15c4022f3a99
BLAKE2b-256 08c5f7c64410be9d9ece2e607149b40e3493d9920d9fbbe4992fc744d7eff8be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.6-win32.egg
Algorithm Hash digest
SHA256 cf3176f37368bce64f28291928a9b1c4961381840de03f5a7a8b4e8846dd489e
MD5 6fafa9a3c8de71bbdcb8710528ce0a06
BLAKE2b-256 9990e710b8070f1c1e27de73cee09f31f11a2dcec486d702401a772027fc70df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 6211398ffd5a36b46edacd83c180e24790b711e87d4b4de90f32093f0313002b
MD5 93ac85833b148fffa82c5be4fd4b7c5f
BLAKE2b-256 d770b49b6296ba6a2b4e402bdfbb72f4ee4a18cfb800445df99f6e9cd7f4c9be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 f3776aa767218b8cf67c2958876d20fc7b7793f5ba9638e03a1119da3b362e24
MD5 070622ffc07b722ed8011da4edb1391a
BLAKE2b-256 a351fd66d39e60a6d55f6e94afc71ba938784133adc58c8192d806a30f5f22d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 13809bdcdefe228c908beb8439c4ffcbb0052b864fc25c262ea886dff38a1238
MD5 8fad6039639b73fab961af1adc266901
BLAKE2b-256 2dbad55426844bcfc2e53373662e3b1a231a9eef81886b79d3e5ffd734c505cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 2d7eb5e176cbe45b57bdb05bb9c5e56a62d6ef8d693eac7de1ad6159a211200b
MD5 ade0ca6f7ff5081ddae64ed8165ca214
BLAKE2b-256 b4f47d89508a9405b72c6e0f05ce3f20cced4c43941f5380d8764870f7c67a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp34-none-win32.whl
Algorithm Hash digest
SHA256 29f0e4ed45a08040d2055c463c97f01cafd2d46e12c8d38f040e53d053d7d8d9
MD5 e6557c3eb2f11da8ec78a1917fda9f2d
BLAKE2b-256 4fa8f5439f689ebefcb03552a63b1f7e639217b728e67e4cd5653b9be5110b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 fe328c6c41e8eab3e90b66fd60ca4c79130c1a3e4faf7c8d19349ccff6a8de31
MD5 91777762390d4a62b6db024dd2ba7e18
BLAKE2b-256 7244837f550ea19fc5ddc29dfd091ae93eed620d8bc3ad0196d8b1f03369ea29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 cddc3ad8de4634eba96edb11587ffefc0f231360b9489757b37f6800d16d2c16
MD5 b28565a47ff793725880d0e4e4e182d5
BLAKE2b-256 02f24f3a10d38cf2eee7e3f47748a99e9d3fe4191d8c7ff2e77811892e22718a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp33-none-win32.whl
Algorithm Hash digest
SHA256 b98396dfd281e17a23a22e82e4a7a2223b1bb630e7af006c4fc34f808f6181ef
MD5 9e257bc80178c0f216eb01575e30ffb0
BLAKE2b-256 d0100881a912730108bfae95e140e20951da4f11967dd34fe027137ce010a8d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 4247ddd562559389eb96d5f7703788b2fb7974ec90d16b6cc5c59943d6c52a00
MD5 c2fc2a0ad5f624e306b7a9b2ea33a6ed
BLAKE2b-256 a62d793f0c1322c1c22f8920286c0717da3a1e974dfd3c52f455a14c9d38d240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 518a924c622f7321aea3fa034d19e06fce51ae6858a52a85ba8b732bd75d782d
MD5 b8762eb44861718354676da05fc40bac
BLAKE2b-256 a43ec806534aa05c488a0ddb923666c4be0dd4bfc66ef88c40df7c9e7517be2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp32-none-win32.whl
Algorithm Hash digest
SHA256 20de58eedd8a3f43c7aa78499133edbc91a7b6ecda4d05c709c14466f91fde9b
MD5 d29c5c91e5c3fb158a57bb0202faac59
BLAKE2b-256 ca933cb759ac7ed0de409af2d12d574797ae10126f0680b4970109ed2188c776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 c635993436afa930313b203cbf4560e509e86adbe94aedebdf4e11106d20a34b
MD5 02f2c4f97f5408545060a40dcd09b98d
BLAKE2b-256 88aa050426b2466289ab9b5619b523dd27d4779d9870e6ec5ec7bee74b9f5e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 885661549f26d65f52c976ce06b71cbe196168b2b4ad505c17920f370f660c2f
MD5 59d0e1ca59d614e8af8499a169560f77
BLAKE2b-256 389eeb523b6a8f813b0ac0b890887f9760105dd72426f096d9105bd588e7c094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp27-none-win32.whl
Algorithm Hash digest
SHA256 5257c6a36cbe1a11c3bc4193fcfbf6f24891a2e1becb66f3d661554cf08791e0
MD5 6b9a9e1adc7555c9f14f6dd98229b35b
BLAKE2b-256 02a8598a0294c3540955c0c26f87bb9b86e6fd501913247b096cfb5d45d85c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 69ad6ac789153076d0ba16c31c5108ff89ac835a3aa7f1df7a837290e8a4bdee
MD5 716d37738e300df24463995c75f41780
BLAKE2b-256 01c6f737f9a55a345e998763726bbc2936082d72f53a82d9322ef9501fb254c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 6feb3944c089b95baca0871cdaa9f05a7b03e7d768e023d2451dfa08db921fa4
MD5 78d2cdcff70c9ca572d97f4d6f9582ea
BLAKE2b-256 5bb114741e48544ab420696b1777cc62cebca1cad525de471b55e234e29ccada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 f051aaa25de7414613edee5cd51a628fcd3d9de1abde231127e2ea02bac0e04e
MD5 4baf7afffde2bf1d6e90720b8c4385c9
BLAKE2b-256 9c00f1b80b7d47f3e2da875e94770dac86c18bc8689d89480d28660d6b56ae38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 b7b981e02e076aab7996a835e41c0184d746c4f881f1a2550945a7bc935c33fc
MD5 aa3533bca7f20c3b2b5bd05099fb4857
BLAKE2b-256 54f1f2e3c2b6cd0350c0f9021f6bca8c5cb400bd38d44930385cba9210cfe2a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 496ae28a49c63f46e456ba76698f598f8fb26fdff3221995caa924e9816cbf9d
MD5 e14fa5ebc017a84a50a26a48d5bc8ce5
BLAKE2b-256 469946789de63d276019f6a1764436aad707ba27abddff6c252d364cd294f198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 c1da0479b056a4963d6cd6799597ef2b774d5cbc8cfd3ff2d4f8566b69ee5ad8
MD5 e62c65dacf9da9de561472c933448f87
BLAKE2b-256 ea604cf41aab239713fababecde985bc098d2047511375d40f88a54667394f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.0.2-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 65d2ef72d54dbd3a1f0a54905c1da9474479298f37300234345a4129890cd835
MD5 52300e8b04a504fce73130b8806358e9
BLAKE2b-256 0b706309cc1b259389d1627c33b03eb8403afac0f3357b0f44c9d6f0baa733c7

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