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.

PyMongo 3.3.0.dev0 supports MongoDB 2.4, 2.6, 3.0, and 3.2

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

PyMongo can be installed with pip:

$ python -m pip install pymongo

Or easy_install from setuptools:

$ python -m easy_install pymongo

You can also download the project source and do:

$ python setup.py 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

PyMongo supports CPython 2.6, 2.7, 3.3+, PyPy, and PyPy3.

Optional dependencies for GSSAPI and TLS:

GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:

$ python -m pip install pymongo[gssapi]

TLS / SSL support may require certifi or wincertstore depending on the Python version in use. The necessary dependencies can be installed along with PyMongo:

$ python -m pip install pymongo[tls]

You can install both dependencies automatically with the following command:

$ python -m pip install pymongo[gssapi,tls]

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

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

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

Uploaded Source

Built Distributions

pymongo-3.3.1-py3.5-win-amd64.egg (501.2 kB view details)

Uploaded Source

pymongo-3.3.1-py3.5-win32.egg (495.7 kB view details)

Uploaded Source

pymongo-3.3.1-py3.5-macosx-10.6-intel.egg (526.3 kB view details)

Uploaded Source

pymongo-3.3.1-py3.4-win-amd64.egg (499.4 kB view details)

Uploaded Source

pymongo-3.3.1-py3.4-win32.egg (496.0 kB view details)

Uploaded Source

pymongo-3.3.1-py3.4-macosx-10.6-intel.egg (527.2 kB view details)

Uploaded Source

pymongo-3.3.1-py3.3-win-amd64.egg (507.1 kB view details)

Uploaded Source

pymongo-3.3.1-py3.3-win32.egg (503.6 kB view details)

Uploaded Source

pymongo-3.3.1-py3.3-macosx-10.6-x86_64.egg (535.1 kB view details)

Uploaded Source

pymongo-3.3.1-py2.7-win-amd64.egg (489.8 kB view details)

Uploaded Source

pymongo-3.3.1-py2.7-win32.egg (486.2 kB view details)

Uploaded Source

pymongo-3.3.1-py2.7-macosx-10.11-intel.egg (512.4 kB view details)

Uploaded Source

pymongo-3.3.1-py2.7-macosx-10.10-intel.egg (512.3 kB view details)

Uploaded Source

pymongo-3.3.1-py2.7-macosx-10.9-intel.egg (512.6 kB view details)

Uploaded Source

pymongo-3.3.1-py2.6-win-amd64.egg (491.9 kB view details)

Uploaded Source

pymongo-3.3.1-py2.6-win32.egg (488.5 kB view details)

Uploaded Source

pymongo-3.3.1-py2.6-macosx-10.11-intel.egg (514.0 kB view details)

Uploaded Source

pymongo-3.3.1-py2.6-macosx-10.10-intel.egg (513.9 kB view details)

Uploaded Source

pymongo-3.3.1-py2.6-macosx-10.9-intel.egg (514.2 kB view details)

Uploaded Source

pymongo-3.3.1-cp35-none-win_amd64.whl (249.3 kB view details)

Uploaded CPython 3.5 Windows x86-64

pymongo-3.3.1-cp35-none-win32.whl (244.0 kB view details)

Uploaded CPython 3.5 Windows x86

pymongo-3.3.1-cp35-cp35m-manylinux1_x86_64.whl (337.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.3.1-cp35-cp35m-manylinux1_i686.whl (331.4 kB view details)

Uploaded CPython 3.5m

pymongo-3.3.1-cp35-cp35m-macosx_10_6_intel.whl (273.7 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.3.1-cp34-none-win_amd64.whl (246.5 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.3.1-cp34-none-win32.whl (243.4 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.3.1-cp34-cp34m-manylinux1_x86_64.whl (338.4 kB view details)

Uploaded CPython 3.4m

pymongo-3.3.1-cp34-cp34m-manylinux1_i686.whl (331.4 kB view details)

Uploaded CPython 3.4m

pymongo-3.3.1-cp34-cp34m-macosx_10_6_intel.whl (273.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.3.1-cp33-none-win_amd64.whl (246.7 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.3.1-cp33-none-win32.whl (243.5 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.3.1-cp33-cp33m-manylinux1_x86_64.whl (330.6 kB view details)

Uploaded CPython 3.3m

pymongo-3.3.1-cp33-cp33m-manylinux1_i686.whl (324.0 kB view details)

Uploaded CPython 3.3m

pymongo-3.3.1-cp33-cp33m-macosx_10_6_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.3.1-cp27-none-win_amd64.whl (246.2 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.3.1-cp27-none-win32.whl (242.9 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.3.1-cp27-none-macosx_10_11_intel.whl (267.8 kB view details)

Uploaded CPython 2.7 macOS 10.11+ intel

pymongo-3.3.1-cp27-none-macosx_10_10_intel.whl (267.9 kB view details)

Uploaded CPython 2.7 macOS 10.10+ intel

pymongo-3.3.1-cp27-cp27mu-manylinux1_x86_64.whl (339.0 kB view details)

Uploaded CPython 2.7mu

pymongo-3.3.1-cp27-cp27mu-manylinux1_i686.whl (330.6 kB view details)

Uploaded CPython 2.7mu

pymongo-3.3.1-cp27-cp27m-manylinux1_x86_64.whl (339.0 kB view details)

Uploaded CPython 2.7m

pymongo-3.3.1-cp27-cp27m-manylinux1_i686.whl (330.6 kB view details)

Uploaded CPython 2.7m

pymongo-3.3.1-cp27-cp27m-macosx_10_9_intel.whl (268.4 kB view details)

Uploaded CPython 2.7m macOS 10.9+ intel

pymongo-3.3.1-cp26-none-win_amd64.whl (246.8 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.3.1-cp26-none-win32.whl (243.5 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-3.3.1-cp26-none-macosx_10_11_intel.whl (267.8 kB view details)

Uploaded CPython 2.6 macOS 10.11+ intel

pymongo-3.3.1-cp26-none-macosx_10_10_intel.whl (267.9 kB view details)

Uploaded CPython 2.6 macOS 10.10+ intel

pymongo-3.3.1-cp26-cp26mu-manylinux1_x86_64.whl (338.9 kB view details)

Uploaded CPython 2.6mu

pymongo-3.3.1-cp26-cp26mu-manylinux1_i686.whl (330.5 kB view details)

Uploaded CPython 2.6mu

pymongo-3.3.1-cp26-cp26m-manylinux1_x86_64.whl (338.9 kB view details)

Uploaded CPython 2.6m

pymongo-3.3.1-cp26-cp26m-manylinux1_i686.whl (330.5 kB view details)

Uploaded CPython 2.6m

pymongo-3.3.1-cp26-cp26m-macosx_10_9_intel.whl (268.4 kB view details)

Uploaded CPython 2.6m macOS 10.9+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.3.1.tar.gz
Algorithm Hash digest
SHA256 4601cd3120e88fb532478f79f29f8f6deab380343d55ad7702a5aa1af27555b1
MD5 0a21c939d66d2459062a4333dab4301b
BLAKE2b-256 08b38e0c7871afbe8647f64e5b949c59c36ddc2795ecc5cac057a90050c32ef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 906778c610b8af9998eb6a20624e02cfcb68fcd7086a7a9e1c7928f26b946181
MD5 9c768e3f9d43574b378349ffb4f921c1
BLAKE2b-256 8915fb21fbc36ad127deb4e1e74a30c379330804ca7303f48a1a4c7c50d25a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.5-win32.egg
Algorithm Hash digest
SHA256 f4b676dafb01035990d56156f20a0f4943a8bf4e27b61c6a08573f1b8b83b35d
MD5 141d0604d51d7092e3876b2fe145b91b
BLAKE2b-256 52cbfbe52e9157d52b219c66e4a0eefb78239f12c614b806c7fafe7df190ab08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 a8df7b1acc278691e6d51baf29e2b0825733fa63a957ea66e38694ef0a7902b3
MD5 4cbfd95acdaebd0ed333ec07fb9c651b
BLAKE2b-256 ae84431614b37d3b69a688e4730c3ee816c5ef17695a011889ac5daab8655906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 9bc9dd8a0c3ad6a4a24c26f037da52164bf407f11d08561508e3d971f39c2d24
MD5 5ab3f770b116438453ea67061059af6c
BLAKE2b-256 069094a23558b98e18a7da6e2c0bb4e027bc14f6a374f297cf80e318a0edd232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 55887236e783277c4ea1cdc3944894e792cfd93927b4f6e700a8e219cdcc0afc
MD5 21f403cfde3ebdff7e4e307f437f63d5
BLAKE2b-256 a016d473b352879922d6d200e68c288daef1cdab72e16f088f5d8839591c0cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 c52831cb06b9c8638b55342ef57fb8c4758708c84d32b4efc8fea87d71755683
MD5 992b5f499d5c4949225d21f80354f28e
BLAKE2b-256 79f35c8b250f8605861b2860d99c4c353a716dd604eb7ca82f4279fca1010c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 2a1f3e76bceabb5d5c130d6035cb68a1cdb88d5cfe1f50757d700c85e604bfa4
MD5 643db2e7f36667029e3811d3e3bf73f0
BLAKE2b-256 af19a3d79bb3635f07206f105dc235a563fc1e6b02cfcd2f90e176374d30d35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 298fd211e676ebaa9828d6b1c9cd44805fe6484a8842f66fbdb061559d0cf98b
MD5 adf1185c00f805c462a5ae2d4a40c93c
BLAKE2b-256 248fb57af255de367049486ef5a9f4cd8b265e8090dd7732bb80f3f5b375925a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 fca5e33dc6ea7f5a0cbde74287b7b95bb47891f561807ee9b80528f29d376dc2
MD5 e36e0c4250e687aa283f3f49f98790b5
BLAKE2b-256 a5a48327fbfe23a78aa0b8c476a06487c420462ae52902e64f20acfd3b09e59e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 1d90bbb53c1d3f08b00941457bcc245f5b4900ca3fde61901b4108700df36f76
MD5 7635233eea7748aca32f7d587867b1bc
BLAKE2b-256 6965f05e195f51c0c94989ff8e859dd4a1d9f019141f8642ef727d79b746b933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 b67a5542eaf8fade1c9c5f14c66df9cd9d95f3f5a507908a2ccb351b95b65934
MD5 8ba0c44806869eade856fdf6ce13a90c
BLAKE2b-256 4fa6a2c07c28fc97788bf5ecd54300efe6d896bd329e05284a45c3a92b00f46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 eb948fda54b2e3859341aaedcd2250a42d5598d1758e359853386c1e1bfd6d8b
MD5 ffd27eacdc7395fa9b0750d625dc658d
BLAKE2b-256 d324f1e1e60bad6bb6e380a584c8052d9c40bc2e5b4d8be6e6c887e35f718d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 6f25bc585176509ce7c24c354c761e6c554213d42e78299085b80de8f5e3a361
MD5 a322e0db7be1edaa187c3bc96a6b3123
BLAKE2b-256 028597640be87858731e72b2f1cad6abb7793020ff449c7947b4c6beb10ba465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 77dc2f2e57370f35f1c8859a8ba13810dfdb6d24187b7bdcf5f480656f1fb598
MD5 4dbc01f56981eccfdfdcc9ce53acfe06
BLAKE2b-256 fcdcdd24eae66c02107968b966fb4551f9afbb9cd85af7ad7a3c3fa5d4a1c96c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 a2a12f41d7f279a9876a2811f7e08078fe4ceb7d9350ba0eaa7e0d5cc52cf9d8
MD5 575624b15874e43efa69f103a4228193
BLAKE2b-256 551edd7d91f833284b754c45e0091f3255d9c04de34b75e1eae5886cad81b3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 f104a17a9d9e376381241156545c1027466a1bcd2e8919a4063d363d085f462d
MD5 9fc61d27f37db78dc3b1f924f6390203
BLAKE2b-256 56c7f6d9b6baf260c267cdcd7b4d62d5bc88d2e3c3c872f94ccd08630d6dd36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 fadc1c0f650f203f3634d9c0234f72c7fc9d3ad4b4cede9ca6cf00f6e9791e93
MD5 a157612c0bb71a011d8f4dcd49dd2fd6
BLAKE2b-256 2b251b5059bf4bf80d5b63add0c265fb82ed3f4a9df324b52ac3836c742fbb4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 2cb56d00b8c725c989cbbe3839907a681a852931d52ff9cb615662780782efb0
MD5 b43bd6937621b121a20fdfb3df448dcf
BLAKE2b-256 820ac1ce8842be4adf5552e6f6f07839fdb8475d3661ba25910eb59ac1a1f6e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 9afbb09519d5f57ab047b2aa1b69de6763607877f406d1d8cc43e9fdc5058558
MD5 eeedbf6651fbd5c86d8048facaf537bb
BLAKE2b-256 66bd5ba86654155132f449a2d79a7eb1cd9b5354be8cfee1fcd99bc704416e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 2dd28899288b8c6b63dc2240316c7d1c892978e018651d1c11f1162ca8fa7c17
MD5 957eb1f91a9fe6ce7341af36c8c1e94e
BLAKE2b-256 e030496e119a024fdf926925ee703b1d71d3020ca4803b3dfd42ee0b5f40ca67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp35-none-win32.whl
Algorithm Hash digest
SHA256 7a4b9f1fcd1bd73262773510e68686035f02f8c26bbaaf83fff632792d5f1a66
MD5 197ebd8719c3c4fa69d89e21827a3433
BLAKE2b-256 8d64d50f11e8935c42df8aa4d22d45f4db25d09d1ea6a43bbf1d29ec4a6ee685

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b0d0978e4ded8ce13b82e0af9d692dea908a53418db94962adc17793f83e097f
MD5 87032a59126766f1520e6314973697db
BLAKE2b-256 4d133990efd30b7ed89cd268557006610d38e9f74b6be63e07ed01e44785b758

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e565ed54df32ae9a3cd7cb9df036ef4223b21d654305a85910bf90d5da68908
MD5 ae08a0f27c3101a3694a16c7bfb3d0bd
BLAKE2b-256 3d42fda048a73361643efacee6a5379fab8971c892a79929fe0259f7d498bddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 760ddbd5916ae6e11c89bacc8adad18b1686b02613e8ed2f70daa81669b61c57
MD5 208c60b327a68dcefdc3df6c6bb89dc5
BLAKE2b-256 742dcfcbf7f231b8dbaf86c6ddb33d4f6c7c5806b2173b6d7eba5b451336962b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 7683bc7b26a60a9c019e346fd9f72368e73180396c321b822664fbf39ce96878
MD5 66b2b8115f50595ca2eb60e52da7f04d
BLAKE2b-256 a70be0c8e591f60587388b18ba8f8a2fd65346f0cb173bb4f615337d215ec871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp34-none-win32.whl
Algorithm Hash digest
SHA256 ebb096d7679b78650ad75a3e425d8de848ca4bc0ede58ca1bc303ec7efa16539
MD5 a991c774b196be63c93e2633f044ef50
BLAKE2b-256 ba1f34d662cc13a5cb4288bb36eee380e31757e1f306404f86b940417e161c62

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9f168abc5ebe15d5b237b180394cedbc997a3ba26eb072095fd22bfee3ebb921
MD5 36abdc205eee67a51118472f9ad9c326
BLAKE2b-256 3c3992df4325828a3f7b8d2189c0a521fd10ae04cb0168f3285ecd323e9d0f69

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp34-cp34m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f6effcde8652f6a8c5a5df6253fee605f01f5335670b50236f4ebbfd4e1e24e
MD5 3d98e44bd9ae7d8e2f52df9d9966f04b
BLAKE2b-256 e872593378bbf0a9adae24f77487542f307653228ea5628cfd5036c6b6401713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 864b86f72fa3c6cd0e110cda736a63dcaf6a5e19d8c3ae6a4cba29898a0636b2
MD5 70666939738103be495c1f0a716aac2e
BLAKE2b-256 b9b7d78ec8da64fe703529b2fe4c25eccca29d0b334c16e9c04591e83ba3493a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 efcbaab73cb2521fb1ba1a431fcce7d3df8b7d1231e68db02a38926f7125eb98
MD5 dd3adf0cc4a9c4eed337235b3946f2ed
BLAKE2b-256 b58bd1331209c0b66d26289bbb5bdff0270313e1178b4803e1d05d02ef9ca9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp33-none-win32.whl
Algorithm Hash digest
SHA256 2da7f5fc70f6b23eddd9b08ced7aeae50a6f873512fdd01ed6ae42ebfed39641
MD5 9e6a5798a1a40deadb44760d06a831b3
BLAKE2b-256 de20082db3b3b483ee7a1f6962115372cee669025db1a2f8c483c279286623ae

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp33-cp33m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp33-cp33m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 18052cc0c6efed9f0020198423b9b338e9b0cdc36ab1d2c3e367e1848d8ec491
MD5 fe6e01c3433a24366cafb4f980754129
BLAKE2b-256 121ad4a40749b0265e91d78a51bc5ea1daf60ebdaddec3155349c7315c003e71

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp33-cp33m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp33-cp33m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7cecd4cccabe5e1aae3a5dc0ea1d13caf4230776800c1cbf3f69f639b8b2c8c6
MD5 247ae1cc2c974814ab0fcd9087afa2b1
BLAKE2b-256 10cd7efc212767986529f13689b04f3dca59f7403892954a079ce834c5967ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 0e6647e0ff3ec8ecd236a755a2da892b583f5d729f6d01b484303487a1704dd5
MD5 7f935e30c8a8ecb13a7eaa659db61ee7
BLAKE2b-256 069afb818a3980572b6852d741fc4ee4c9c7d2061d57f07a44620ea37e55d20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 cfe113d857b84a163fcc354c33e343da35de94fdeb89391006de256a92ef8624
MD5 f745c9fba09b4ef38983ef01ddde4cf3
BLAKE2b-256 a71c3e7b17d9bc51ee753ddc861b131cdd8e45d111a88ea27d1bf2404be0b553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-none-win32.whl
Algorithm Hash digest
SHA256 1f20ae3eb4963d623ccce24ba3a442b43357d9ad1f2bb6ad8cfc306197f61d94
MD5 f2034e6c428a066488378f638f5e329e
BLAKE2b-256 29a10cb0bec0d5505338b554f7ecd9cbd5911df8108c3242acec17a37cfe5c2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 1c352b86f3866787cf01e544a2b6d399e1545af68ce9da7ba4a4ae0658682489
MD5 b8e02754f408843a2b034a09e0f58d20
BLAKE2b-256 084dc3ae4fa011c45730952211e2727517af8698b70a2c1165cdffb2500c44ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 749ebb28dbb372247799cdb9ba5005f467307252965e48eeb1875c0e2478c6c3
MD5 4620e2b64e943a40f8940b28e00b6065
BLAKE2b-256 83f72a37c4cadad521e5905d5eef5d5defe38d4bd096161d53008a92869bcf0a

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07daedcd27c9a3e72eaabf6b56284ffd297d88ac847184e7843d2275519cc8f1
MD5 0e78119cfefbd0cbb88c5b07b2eef4ab
BLAKE2b-256 9c61717a898d6f370666dcc60f9bf3724d4215ce4fc80e8871bbb7f96d94ab41

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 022972f3390278e9e74a4e69db2ffa5e5c29d5d643e86d5137ab3837b3b0d6af
MD5 75137590950273e4b58720b02ace3fa3
BLAKE2b-256 33e91dc8601f2c1924030f4122ac2f8fdd09fdc4955ae6a62f7b87ca19e4bf14

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6196b8765f51e3960e34306e8836c54af50033b71365bdaba81204bde3a50283
MD5 252f2edb8f1cb4654cb19f7ebb03b237
BLAKE2b-256 4b3d19ea7ebcfb35d517c6fd97b7438eda022542f01b26c8a5bb4e0ae1979381

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2c6a28021b1c9a7b48879186dc3e3128e1591844d7794288d2ae45e911d1600
MD5 7b63ac07b2e3110dbf18d763ddee286b
BLAKE2b-256 e1dfd4314b3ec7b6831a599b17c61d5401f4bd3d7722c4d7c86044c471e1df36

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp27-cp27m-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp27-cp27m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 7fa529dde76d22019f7c1be90428301eafc8c0b9354dc8e795b93d3d971029eb
MD5 6ee85cb5656ad93f623105cd5812a69e
BLAKE2b-256 5adc548705f09cc07d10803fc371cdff8fce855bde1b50b30bfc63373445921f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 569e785558fd68817cb6e8913e2d0492a8e584077e90cc2ce0fd019915952ae9
MD5 ef2569942e987e28c0dc94a3e2799754
BLAKE2b-256 2f4b5f26f885fd85191f12b5183e2513de0262e913c83415a58b57022c0c6323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-none-win32.whl
Algorithm Hash digest
SHA256 d86a0401a797df949d631a1046b34ea394e0473369a6b59236fa822531387a6d
MD5 a659a8b961f9e41c9c0091c911f3b141
BLAKE2b-256 bbb9728b210e9e8047875d5de390ed7a3852e74553642ae145537af1a4ae9b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 0d789760711e804a1bf8e1d1ea4ffca786760e534e55733343734d30ffda7913
MD5 3114518cd558359a46ea2eccc70c32eb
BLAKE2b-256 4544b707e10105789063230278d15f3fb8ebcfdf7043dfa267a1d2b1995259bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 424deb094cd3072a3bbde8ed61fa1a17df7608a8f897c81c5660296d6d3d9c34
MD5 0eb3d5ed4d1d08963b31276128b0f5b8
BLAKE2b-256 5106d522615be63dbe47e2053b4ee0d030ae5d9b086839a6ec63992d536805b4

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp26-cp26mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c9e477c3de93244663ba3431705cc8d2d946742b22ee072e359ef8f747fd3862
MD5 b7002944207246e46f483f40177c34e8
BLAKE2b-256 799a6438dafbdac159f643c35b6de66d9cbe9cee0dd31780f67f258c8c81e143

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp26-cp26mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b4af00b48225c6aa05c3980827fb57c130130e8f59012fe5fe32867102a5a09
MD5 9ea5d5bb846fff787c589d7f2bbcc6a5
BLAKE2b-256 0d0e838b89f1d252b53e63f42422c89b342375c24155d71317d74495b820c6d3

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp26-cp26m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd499cfd62f1122cb8e5e31c6bfcdc870c1a6cf8a679e59b42f3cf01d52220dd
MD5 2e4ac1351e7bafd8db76b88b6792e74e
BLAKE2b-256 e253b3555f7d5cc0abe2cb962d50289461366842dbba446384c7f9229f02163a

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp26-cp26m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5697f0ed4755a49a0d09d96304f31bcf487daba827f44783f3941baa38c2c2f
MD5 e00c037997f29e198e7290ed64b291ea
BLAKE2b-256 0275769a81b979ed664ff755c68cca9bcb6f6d5b1e60705fcb950e5219ab52e4

See more details on using hashes here.

File details

Details for the file pymongo-3.3.1-cp26-cp26m-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.3.1-cp26-cp26m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 9f15de6ab0f258810e1168234f1f53a3005241fc8df51cdcc4005759ec9ce230
MD5 0759ee78ccba2219e2d6cddb1d6f2da5
BLAKE2b-256 484ff8841f0bc124815773a7fe3b16b6f2dc191bbbc3a6e50d0dc6e47946e4d8

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