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

Uploaded Source

Built Distributions

pymongo-3.3.0-py3.5-win-amd64.egg (501.3 kB view details)

Uploaded Source

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

Uploaded Source

pymongo-3.3.0-py3.4-win-amd64.egg (499.5 kB view details)

Uploaded Source

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

Uploaded Source

pymongo-3.3.0-py3.3-win-amd64.egg (507.2 kB view details)

Uploaded Source

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

Uploaded Source

pymongo-3.3.0-py2.7-win-amd64.egg (489.9 kB view details)

Uploaded Source

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

Uploaded Source

pymongo-3.3.0-py2.6-win-amd64.egg (492.0 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded CPython 3.5 Windows x86-64

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

Uploaded CPython 3.5 Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

pymongo-3.3.0-cp35-cp35m-macosx_10_6_intel.whl (273.6 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

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

Uploaded CPython 3.4 Windows x86-64

pymongo-3.3.0-cp34-none-win32.whl (243.3 kB view details)

Uploaded CPython 3.4 Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

pymongo-3.3.0-cp34-cp34m-macosx_10_6_intel.whl (273.4 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

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

Uploaded CPython 3.3 Windows x86-64

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

Uploaded CPython 3.3 Windows x86

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

Uploaded CPython 3.3m

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

Uploaded CPython 3.3m

pymongo-3.3.0-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.0-cp27-none-win_amd64.whl (246.2 kB view details)

Uploaded CPython 2.7 Windows x86-64

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

Uploaded CPython 2.7 Windows x86

pymongo-3.3.0-cp27-none-macosx_10_11_intel.whl (267.9 kB view details)

Uploaded CPython 2.7 macOS 10.11+ intel

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

Uploaded CPython 2.7 macOS 10.10+ intel

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.9+ intel

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

Uploaded CPython 2.6 Windows x86-64

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

Uploaded CPython 2.6 Windows x86

pymongo-3.3.0-cp26-none-macosx_10_11_intel.whl (267.9 kB view details)

Uploaded CPython 2.6 macOS 10.11+ intel

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

Uploaded CPython 2.6 macOS 10.10+ intel

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

Uploaded CPython 2.6mu

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

Uploaded CPython 2.6mu

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

Uploaded CPython 2.6m

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

Uploaded CPython 2.6m

pymongo-3.3.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for pymongo-3.3.0.tar.gz
Algorithm Hash digest
SHA256 3d45302fc2622fabf34356ba274c69df41285bac71bbd229f1587283b851b91e
MD5 42cd12a5014fb7d3e1987ca04f5c651f
BLAKE2b-256 31635a7826bdee88db6d49ef1737a17de63cf6f50f8cb04f2a0339f048cb33b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 221b8bae81cfe320638e4a85970c5f9747b37598108c3077acbdbbd1b46011b0
MD5 8de8de90ef4d857f5a6a3c6b094f31ec
BLAKE2b-256 72f494998c98d173a29ce1fe6952d5454238b5c73b5e8bc22f68b3dfb1f8c996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py3.5-win32.egg
Algorithm Hash digest
SHA256 b1e74f8cfa781723b5398585c0276f0ac5342c0f8e1d37a0b4cfc5d108edeffb
MD5 2ea1ac28158f4bc5adefbc79ddfe2eb5
BLAKE2b-256 9168ee8257bea2e6ab601f35e5bee672d8c2402c127c12d12f324c852df81ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 cc9f4800130d483c78e61a578d2444554a60f1808e01028c2467bd0715adc6cf
MD5 b35804926fbf55207fdddd75fb769869
BLAKE2b-256 ca6237f44adddd6b4004d9a5c8ff866d1db7618266d84c495dc4f2ce64c5ec0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py3.4-win32.egg
Algorithm Hash digest
SHA256 ffcaae9bfd60185f4e4ea6d050ccdcfa3a42b720c975316a0f049356e1be2c44
MD5 56c45d28f161b0a96c6db11aaa86e221
BLAKE2b-256 7551d1fc8377bf78dd046dc214d539cd5aaf9322f42675d611d907431e7215f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 1e53ef79c0ec1021761bb375f5329212dd3de412f992690eb31332413dc5f925
MD5 72e5883a16e1a3d2d07508a9ec2a4603
BLAKE2b-256 58e102ae0d65d8b2211b8c619851078c3b8e1389cc31d78ea697e9a8e81f9671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py3.3-win32.egg
Algorithm Hash digest
SHA256 bea135ec8e5d9a24d4e8885a31a0c60d8f775b69eb641501d023b1e425558bf3
MD5 63d982db615153fc04182537fa2c0ad1
BLAKE2b-256 23eaf29a41fed6675260a1a64914dd26951d2e8f1bb58e6a445173c36d2266c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 acead840a1e22b7b805d9a08993741ac01147f164559b0e3fb8d2507efe72c3f
MD5 60d0ea8365d753a5068439b01c60a1e6
BLAKE2b-256 f1fcc402d7193f5dbe120ea02f207ead6001c46e15a57000a7b0b74e49a928af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 612e860e0696ca7458e1c0ac02b77b61be3d75a3e8032fecbf559ac2d0a5feac
MD5 3fd96ba91782aaf669cb62a655bd712e
BLAKE2b-256 6a40703f88df6e6850e4b7d353784726faac98baf1ba20e5761fbd1bfc9a4d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 a842ad13bf2846210ef3d23eec85e44d4d7683a31db66b6a63334d3fe346257c
MD5 9facfbb20f72f61bceedeee478259478
BLAKE2b-256 1e9a646aabab2f5396c6ef7ec155057eb40b6694062e5671dcb47611bd1e6416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-py2.6-win32.egg
Algorithm Hash digest
SHA256 159a6253ab6b4f367bf54d0fc1c44c726973673544109b09c82bcc40f1700fbf
MD5 3ad6337d7245ae4cec5a318f5e34379e
BLAKE2b-256 6aaaae9202f6e024ad362ccf1f681bd8b0741fe3457a26a032dafd762e7a7618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f162a4016dda3b98025449f5a5e05d222a300d10faa365b9534377632917e8d
MD5 d9386e09bb9ad5ad2afd3594daf66ce4
BLAKE2b-256 75b4d7f216145ae8378c477a4a447b4f408786674579028949efb6b9369327ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp35-none-win32.whl
Algorithm Hash digest
SHA256 f9e83ac2e466e9ace67fcc38ab5a15bb313926420ee95db9fa7ced521d3a5085
MD5 85e2968c7d7f758f134d29254cab8c15
BLAKE2b-256 d4b7a92b0d95832c5ad00d7bead0f3f3f9b0c8a35c1ad863de4aef6e565dca16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c15e5ab968bf465c0741c0501bc79e49ee862a4c8ed99267bfb179eeeaada8f4
MD5 fae5edb283bc2c1eb6033e1f4a2e8b6c
BLAKE2b-256 bb6e319f1ad5c7b2e59fb6b3e010639432dd3c5bfdf16864daff0179604d4fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d53eb41e325657366248ba08ece0bdd38027f76f8db6d746beb54569b4f60f30
MD5 d03419caab008775fefc062e997d7032
BLAKE2b-256 faea53c1f3a9caa77292b9891b7113037652231a7dcc33a92dbc3e7add208c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 0d6705199e76c47b421e69933c418ddfeccb4442c18ab5eae866723973d04e09
MD5 e3bae64f846b51bb64f33650cb986fda
BLAKE2b-256 39710db0750365372a37715f0137ee8d3cb61a24ba5f40487bbf1b4101044f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 5d15cfb33b49edfe09fb27233d592e46c05e069fca00d9f48bd65f41052496c4
MD5 8167405c9fd86dc01bc19123ef92a390
BLAKE2b-256 d183e63df5bc8c4a60d689337e9977f907512570900669ed8d921d73e7d90aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp34-none-win32.whl
Algorithm Hash digest
SHA256 a1422ed2f5c09cee9c7ff4cc66664af202e706ec10eb59969d922b86b52f4da4
MD5 508dd76a1c1fa08769fc012abfbb108b
BLAKE2b-256 1bad01a02bfceb2a2c55c1dfbb12612f1c4c273eca8f6da9cf9407381a19147b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f2d5bc0aba0765432d0fead678b4a216e7643b1728a881de16d98ef56665fb2b
MD5 809a6a13a1fd6c657a035f5105b15235
BLAKE2b-256 b87ae234d9b8c2003300c945cb2948562fc0a283e93a2f8b383b67b4d76f4e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 08a9912595d037b6fe80b9f536bd2f5beb05597de7616a8c404114d79e0e4133
MD5 5a96da1790c1296aabbde834437e6327
BLAKE2b-256 bfe0286313bdaec9c6cc161f96037c1a1fb94fd26f885792ac8da8cfada347bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6c519b1f6702c7cebcf8c2ed72b9061d8b6a5d6721c08ffd385738fe73725d73
MD5 fe324a78f8c2ba6620a13e2de1ad16b9
BLAKE2b-256 6c704421d9f74292ecb9bd68905509af8b8865ac481028ae6f5853589112b2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 0dda3b42b8132eb9dc6e38a7e7eb3df2d32257e36035168b11bd430cb37b3341
MD5 dee095ee65348600074832d9739a1802
BLAKE2b-256 2fb92fa5c82bb6be5688d3f3573a09b47e0fc9a8e15f63a6b630db14007f2c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp33-none-win32.whl
Algorithm Hash digest
SHA256 f41b607a129a87050e4fafc5ae2e43db2a1fd75fc4959886fa51459445c83664
MD5 051c91c08d21b461337e1031754e926a
BLAKE2b-256 9932b01ec1d4198d1afae53abe2cb4a0c49480716044af807344e9ee3804fa44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp33-cp33m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 48303dcbd725f288cc5c214a2b0180bf608c06a98b549354766a0a6b948eb218
MD5 040514e943232822738dbe1c580386b3
BLAKE2b-256 1c8e151f0268c01dd359ff00ea8212ecb0eac33754e84961914f4b025ca55ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp33-cp33m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 137acb25c0b8b038d7fa0767f81d52c0da48e8935fed2048fb94d5300d82c4fe
MD5 9d3374368a69afc63814ee18bf734735
BLAKE2b-256 c7585b83b54ba7218df0159d5f60560efb923afed793b3c37b957d275554e801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 ad87fe5e174552d70c1d88edd4614777b812af7989f125259cc429e5faae6c84
MD5 26b1f92fd1e0af94d7f16e73832354f8
BLAKE2b-256 29d3cdf3ff55fd4ba90004be9619d9262c763c7671520647e698d7fea44e7974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f3d2cfd0125ef9ae8878fbfb7b52864ba01da0d94f1c5a6c3f91bdc925190d8
MD5 0d69c594f1ee50168cabc30a76155caf
BLAKE2b-256 ef3de042c3dd5fb699f63ed092446cb8b19cca3459ac8c86b8c444850ba9f4e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-none-win32.whl
Algorithm Hash digest
SHA256 d9c910e474f3a4023ddb40e6d7b4a7664fa209f2217df72537261b9e32efdf5a
MD5 98e8a142c45cc1cd41e5197796ea711d
BLAKE2b-256 d437cafc559c853db8cb3b22598cc30b6bb59b6f67fcb60fa89299dc3485e488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 28971603a6c900eaf7e258b5994431a9b0f9c4efcccf8ce68e75dc3acddd6ed3
MD5 84c2faabcd2edccfb1363338a5ddde16
BLAKE2b-256 027bc1ac6e828cfbade1208973ab5efee33dc2e7a7311a9c3c76beeabc7842f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 e0f0fc5aef14a93db844331ee84f9417c90ab0e2b6fb2bb7e770c10dc3bf4492
MD5 38d2aa2e95aab309b5d10c7a9488536d
BLAKE2b-256 94bcd5b1c5bc7b17cb4e06eef3727891ccedb02ed6ae2428c0255dc663c5c608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 748d74db8c2c75a623e57eb9de1c69a5370f917ab59268253900a2f6c9ebab0e
MD5 bef09a57ce5d0cda78dc40a728194500
BLAKE2b-256 461db7fe222017f8658cf760f770fdabdc63bd62763b7c349fc60b060a95d7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7aca89a9ffd16ec17332de1b5f41975e1bfa13c4dfa359e4e3a23c4e21c1453
MD5 c557dd8fe353db9da030c069f743bd9f
BLAKE2b-256 1677cb5da43396237912985672103fad59cbaae1a627b81a62d548a298c2a8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 39fe2cc1be6c86a819e1f38d2c58865e9d7ad01c331f3a6689e0ba6622dcc8e2
MD5 eeed8abb7925fc19cbda9e109bbcd9be
BLAKE2b-256 5343e89574e7b66054866d88735a0462a92c8049ccef74c676aa6d6d860206f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 102743d5d8a02ea3778339fb974b1e80027b27f3e809b0e80a44b8607a7aa053
MD5 18d1b27dc0a3ae2a306183f62b3e6a46
BLAKE2b-256 2cf6bb9316507df6f3a21067a3611fb7740f65b73771ea46c2e5a66a905640ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp27-cp27m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 3d4b186c9cf794c2fded171c0f64376e3b3606d5e090e7a3d69c95ed7992c0a4
MD5 ad522a787b62eb1b3f6763d408234365
BLAKE2b-256 be07637109f0fda5ed53fcabef7c8f4faa4eadd446e30c00f2774dda3db19fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 c51e3c4cd422914b74a216b523ab08b29da286d84cf5f367f3a9ed1fb431ad9d
MD5 fcde0342810243e3cf1c6180165c05b8
BLAKE2b-256 4b70a0ffba603c32f1d4118e242f124dc2dce4f8a6b05397aae3d6bae956ca62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-none-win32.whl
Algorithm Hash digest
SHA256 7113e31acb934ffb82b5ec83f945e3ad048b419afdffff22f977a6a71e3921b0
MD5 ad325c0a86d469b5980a5901bf6973d8
BLAKE2b-256 7a0154da8125669c55b5630e393ffc912d45fa194ab2830afccba12138ccf094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 af99e058ca6e580d521574129633bd44d3df3d8531b227c54ae25949f3c53f6f
MD5 63f41f28499c1f5557c354b818200642
BLAKE2b-256 654c75f7b3d74031b672223834c6d56496e3642d8514cec316e259e7eaa3cafe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 0d1a93c2da7f08b60af88ef787b3e1560e6310475a30327922f2d6b7f4f585e2
MD5 6854c68d3020caf4ab7ed6b27b6c1d9a
BLAKE2b-256 6995d5ec54569de34b4615b9264cb92086916a258e88d437f399e6764fa34bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5f3767ee0aa0bdd538d14b09d65a459801fd89f24a979af20d482e5916ebf12f
MD5 73d31d0e813794b44ab158c99ff2c737
BLAKE2b-256 fb7671ba5eab4fda088d8e1abe5375bf7afbb3232db6c7e153fd91a01dd08a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ff41c5a6c06769ae6ae242f37c43d097bd1893ce57d10d3f4d28db811530f8e
MD5 5ebd6d8cb85635ac7669e6a6e1bf8a3f
BLAKE2b-256 4b55d82b1cf8287f6db94ed3ecd91fec43b4491e01f90d3321bf5b52b0c7a220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2a90a3534eaaeed82bea8c916aec43da750753e8b35a45b00ab046c9f025c265
MD5 fbaee28439cc83029982f935919b5283
BLAKE2b-256 ad3e8adf42c38d7425832f79f8d9c0242744c5a6450a9e039db774a1b603fbf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 09e8e784085a0e195988c6df7968dde01c356b62476bf6e093d56ab7d656a17f
MD5 ed4499e3ac13676646025b0a18eb85f1
BLAKE2b-256 8073531d5c235b0e639ccded90421ec33c7f789512ffd0b1267d676cb44b25cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.3.0-cp26-cp26m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 41b44d906d029d9c66c73c8a62f8df0d19ebe6a10e2a4551b606bf92447e51bb
MD5 3eacb007e48d4bb86486cca6f09bfc69
BLAKE2b-256 ab79dbd7c041c87d7a36f596bb00be32a5cc0573c6086a354f6c582cad463a4a

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