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.4 supports MongoDB 2.4, 2.6, 3.0, 3.2, and 3.4

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 ipaddress and 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

This version

3.5.0

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

Uploaded Source

Built Distributions

pymongo-3.5.0-py3.6-win-amd64.egg (551.4 kB view details)

Uploaded Source

pymongo-3.5.0-py3.6-win32.egg (545.9 kB view details)

Uploaded Source

pymongo-3.5.0-py3.6-macosx-10.6-intel.egg (576.9 kB view details)

Uploaded Source

pymongo-3.5.0-py3.5-win-amd64.egg (558.6 kB view details)

Uploaded Source

pymongo-3.5.0-py3.5-win32.egg (553.1 kB view details)

Uploaded Source

pymongo-3.5.0-py3.5-macosx-10.6-intel.egg (584.5 kB view details)

Uploaded Source

pymongo-3.5.0-py3.4-win-amd64.egg (557.4 kB view details)

Uploaded Source

pymongo-3.5.0-py3.4-win32.egg (554.0 kB view details)

Uploaded Source

pymongo-3.5.0-py3.4-macosx-10.6-intel.egg (585.4 kB view details)

Uploaded Source

pymongo-3.5.0-py3.3-win-amd64.egg (565.9 kB view details)

Uploaded Source

pymongo-3.5.0-py3.3-win32.egg (562.3 kB view details)

Uploaded Source

pymongo-3.5.0-py2.7-win-amd64.egg (546.6 kB view details)

Uploaded Source

pymongo-3.5.0-py2.7-win32.egg (543.0 kB view details)

Uploaded Source

pymongo-3.5.0-py2.7-macosx-10.12-x86_64.egg (545.4 kB view details)

Uploaded Source

pymongo-3.5.0-py2.6-win-amd64.egg (549.4 kB view details)

Uploaded Source

pymongo-3.5.0-py2.6-win32.egg (545.8 kB view details)

Uploaded Source

pymongo-3.5.0-py2.6-macosx-10.12-intel.egg (571.9 kB view details)

Uploaded Source

pymongo-3.5.0-cp36-cp36m-win_amd64.whl (275.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.5.0-cp36-cp36m-win32.whl (270.6 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.5.0-cp36-cp36m-manylinux1_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.5.0-cp36-cp36m-manylinux1_i686.whl (359.2 kB view details)

Uploaded CPython 3.6m

pymongo-3.5.0-cp36-cp36m-macosx_10_6_intel.whl (300.7 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.5.0-cp35-cp35m-win_amd64.whl (275.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.5.0-cp35-cp35m-win32.whl (270.6 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.5.0-cp35-cp35m-manylinux1_x86_64.whl (365.2 kB view details)

Uploaded CPython 3.5m

pymongo-3.5.0-cp35-cp35m-manylinux1_i686.whl (359.0 kB view details)

Uploaded CPython 3.5m

pymongo-3.5.0-cp35-cp35m-macosx_10_6_intel.whl (300.7 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.5.0-cp34-cp34m-win_amd64.whl (273.2 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.5.0-cp34-cp34m-win32.whl (270.0 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.5.0-cp34-cp34m-manylinux1_x86_64.whl (366.1 kB view details)

Uploaded CPython 3.4m

pymongo-3.5.0-cp34-cp34m-manylinux1_i686.whl (359.2 kB view details)

Uploaded CPython 3.4m

pymongo-3.5.0-cp34-cp34m-macosx_10_6_intel.whl (300.5 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.5.0-cp33-cp33m-win_amd64.whl (273.3 kB view details)

Uploaded CPython 3.3m Windows x86-64

pymongo-3.5.0-cp33-cp33m-win32.whl (270.1 kB view details)

Uploaded CPython 3.3m Windows x86

pymongo-3.5.0-cp33-cp33m-manylinux1_x86_64.whl (358.2 kB view details)

Uploaded CPython 3.3m

pymongo-3.5.0-cp33-cp33m-manylinux1_i686.whl (351.7 kB view details)

Uploaded CPython 3.3m

pymongo-3.5.0-cp33-cp33m-macosx_10_6_x86_64.whl (300.7 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.5.0-cp27-none-macosx_10_12_x86_64.whl (270.3 kB view details)

Uploaded CPython 2.7 macOS 10.12+ x86-64

pymongo-3.5.0-cp27-cp27mu-manylinux1_x86_64.whl (368.1 kB view details)

Uploaded CPython 2.7mu

pymongo-3.5.0-cp27-cp27mu-manylinux1_i686.whl (357.7 kB view details)

Uploaded CPython 2.7mu

pymongo-3.5.0-cp27-cp27m-win_amd64.whl (272.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.5.0-cp27-cp27m-win32.whl (269.5 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.5.0-cp27-cp27m-manylinux1_x86_64.whl (368.1 kB view details)

Uploaded CPython 2.7m

pymongo-3.5.0-cp27-cp27m-manylinux1_i686.whl (357.7 kB view details)

Uploaded CPython 2.7m

pymongo-3.5.0-cp27-cp27m-macosx_10_12_intel.whl (294.8 kB view details)

Uploaded CPython 2.7m macOS 10.12+ intel

pymongo-3.5.0-cp26-cp26mu-manylinux1_x86_64.whl (368.0 kB view details)

Uploaded CPython 2.6mu

pymongo-3.5.0-cp26-cp26mu-manylinux1_i686.whl (357.6 kB view details)

Uploaded CPython 2.6mu

pymongo-3.5.0-cp26-cp26m-win_amd64.whl (273.4 kB view details)

Uploaded CPython 2.6m Windows x86-64

pymongo-3.5.0-cp26-cp26m-win32.whl (270.1 kB view details)

Uploaded CPython 2.6m Windows x86

pymongo-3.5.0-cp26-cp26m-manylinux1_x86_64.whl (368.0 kB view details)

Uploaded CPython 2.6m

pymongo-3.5.0-cp26-cp26m-manylinux1_i686.whl (357.6 kB view details)

Uploaded CPython 2.6m

pymongo-3.5.0-cp26-cp26m-macosx_10_12_intel.whl (294.8 kB view details)

Uploaded CPython 2.6m macOS 10.12+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.5.0.tar.gz
Algorithm Hash digest
SHA256 8137381e217038bc4b7d113c9d0d1133d8081d39008b5a4f11bf129b1520c1b0
MD5 717188415cb9071355a80b3c520370ff
BLAKE2b-256 371155b8a7fb917be63bd279e9e3485a5da094628cd46bb4ab778e0d7956cb16

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-py3.6-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.6-win-amd64.egg
Algorithm Hash digest
SHA256 10e9b64ac3c8df3c0057033c3df57a9c94509223e402e8c1c2af4ffc7034a084
MD5 a3d1b87214b4ebcb427d113b3f18df7a
BLAKE2b-256 7e4a280bcf440785ff4aad3fbaa18812b653e7deedc507ca62e635b9910b97c3

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-py3.6-win32.egg.

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.6-win32.egg
Algorithm Hash digest
SHA256 ab51ad9ffe91cca0c1141ceb06fc713471c216e11860a5dc751cc453908031ca
MD5 e0c3bdb56ba30dae2244e0fe8e3cfea4
BLAKE2b-256 f20418adaabeed5017881f4cf020abf7b8b382c129cb57b1b867206721fe62fb

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-py3.6-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.6-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 d7e1dd7b4c1424da544cc2cbf537baac9ad207b5488e0761571ae25ea243831a
MD5 02bbb752d1bfe7d4462b3dd49249526b
BLAKE2b-256 7278543876849498a9c4eb2f200c26708747118245506fd412e9006c18ddba3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 4cc4c08a286ab78eba1b2463c96f7c1bfbda3be18277cd4405b427e18a3ef4d1
MD5 19b18ad15b95affdb4f8148a53c812df
BLAKE2b-256 285654962458c4af5b0a433213a258b3e29b835034a22b6308dcbe70e8ae19f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.5-win32.egg
Algorithm Hash digest
SHA256 f19075a9147067bba236917d39e1f070048a18ce136e81668ecb0770a26c3f50
MD5 44d379be7001aa50a5b898b13ca33d1b
BLAKE2b-256 3da69d4d54761c3b238456eaaeb1a3364872120024718a090cd4f623093cf950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 ffb73b245d445f0c89d6057828db9ada6468f5462854b146c09bd266494ce941
MD5 7f0ef748a64ee4542a87f53f8fa6e035
BLAKE2b-256 76083b909b224d8819075964b6ecc1623a6923fa95e058eecf026dfc5cf74ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 d9f709f94ee7245ba3bcab857bcc138d4b4db444916e7fbf96afb91df699fc7b
MD5 1da4c0fbb74f6d9ee3111f34d7aab4dd
BLAKE2b-256 5ed1756a25c4cf1deec522e98572c08dd4ba62fa4cc33d00c979a7850251162b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.4-win32.egg
Algorithm Hash digest
SHA256 21744c65a95e17caf583a9390739ad7c43cc5aada256e71fc59d4f219c98697a
MD5 2f4a6e014947dbac55ec960e22e89693
BLAKE2b-256 690bdd90fb139478301c0c942b60b7f7f106fea94c02bc12395fc0e424b2304b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 cf2f3c1202ae883f6a48bd19a96a34be236919ab7d2ab8ef6899873d1ded9df7
MD5 0d015e075e639dcf552f3173ec1dc997
BLAKE2b-256 dcad801a2896d052088e204c96bc161b1bf69411275584a0ed051bbe51a8146b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 f06c0f459a5c2e259e3eacad3d4b13db9d473fc5692fc486bacb5809bf68e0cb
MD5 9feb84f09519ff2a8d38c04de4312da7
BLAKE2b-256 2ff09721b0c4743dacf8e94c4e4f91650593e0415aaadf17cb59d106fe6ecd30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py3.3-win32.egg
Algorithm Hash digest
SHA256 180b5b865341779d892a113309a6d1b42bbcebf6ff6d2403da854e3d2ed2dfb9
MD5 5744bc8ebd110b6308eec04b08111491
BLAKE2b-256 b131a6baecc47181658c85432052095e2d59639a8eaefe2909574b92acce836c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 5990b27f027186a19dd46b34c55850cedeb969ef251a1a7cbd1d1e7728b001a3
MD5 edd71ef40180cc96701d0916ecbd88dc
BLAKE2b-256 49c4627da2e8117b2840c1f1160df91c76f3a0e34788a67accc04d24bd75c785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 79aa4a299cbec7d1aa387028ae6522995e0511f10e00ff7fa6015621d536910b
MD5 54f1602df307fa1392f8c60322d152f2
BLAKE2b-256 8b837cbb0447af4e8fcc16d501be1fb9459351be56822c433bab57dd30667af3

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-py2.7-macosx-10.12-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-3.5.0-py2.7-macosx-10.12-x86_64.egg
Algorithm Hash digest
SHA256 b2d92c0021b7f490eb5946862d0acf5277373186041e1d6c1fb291deabb8dc64
MD5 c6c2dd728dc44e1b864138a78f20efcc
BLAKE2b-256 119fffb2150581e758a7bd4af21644c4a5fa2f2028a0c843dff9182fd3ff474f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 e628f0dc65630647c02fcabb7b53d2e185104c9f01ab8aa5dba67a3ca36022f5
MD5 1699e6bf27ad2cbc5ee0a7a5f6e92eab
BLAKE2b-256 99fac2bcccedb97cf13d38d002e28f9b26065fde528b49a2ddc0728b00b96a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-py2.6-win32.egg
Algorithm Hash digest
SHA256 19a5a29e80d1d0f64af6893b4574c5c7a8dbb052ae5630c6bd18506d918fbaad
MD5 fa0240e1abf62755f8d7db190fded6cd
BLAKE2b-256 493a98ce3a5bb8a9d43a2bf44ea34f59c9e9445de0c6664a9cf4d956d9b86478

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-py2.6-macosx-10.12-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.5.0-py2.6-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 eb42fa273bb6797d38d434d7e757b38c03b9928001320a92ab60d2c7e2f0fa71
MD5 fcd34de74ac8850879749b53493553e0
BLAKE2b-256 d846ea4a7a29770bb7ac4811bf953af0a8293f811830ea4cb957f879e0a49ad0

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 52af2eee8248f6d9adda9340f118415067704e46c3e8588405874c9d30bae7b5
MD5 9f987950ad4cf36fb007c291275b40dd
BLAKE2b-256 b15959a80d805ef14a356d1e089cd135d8fb3e7de5363abf8d57612f7c91b3e1

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 afc089cdeb16bb8d507982c0fb51a6ebb95bc9593444524228fc2d739595f521
MD5 174374df92e1e97b475ff43a8af81af7
BLAKE2b-256 a2d80a4b83a2c228d2b22cc454fa56e26674ab00c90df6049af3e97305a5ee62

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cf43fbe7090310f8fea9e8d1191c8645953bb97c9f2080e4bbf7f0110624d9fa
MD5 34981f1ea62387c0b8be49ef91c8d8f1
BLAKE2b-256 601534803ec534cd79599cf200adce3b5e4b40fcdadbf893797784b9a6ed47ab

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52dd7c6d7b4691889dd657ec3026718f8aaaf235f176c5d6f23cc7f71de8949f
MD5 c2182e5231f87aee138426d550626d66
BLAKE2b-256 f641fdc8e12c2bba5974223654fc45542223168b25320dc7c406ad7ee6e24653

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 784cca633b65eac4f2a13bdf8bc1e97ea6a39e6755d4e25a91c0f9482ceddcdb
MD5 381fe2a054acb466b449b2ff7ab1c19a
BLAKE2b-256 5e577cd3e95b18b43bd1999ebfb3d27921d6e0cbecda1e20390567fe8882ce4e

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp35-cp35m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 534565d737a142a184c210d883027979d3145c244ed53783f380ea6af07699aa
MD5 167059e5d2f48e8070b2c3702306a821
BLAKE2b-256 62084d5206270aad059aaad7b8ad68ab7fee49bb83dd94e8f7908f80126d4cb0

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp35-cp35m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b03940c8853a9249d7ab21de0a176c3b4ab39250f3758627bf466c9d3cead73a
MD5 d884c0a7d968ac4c32a57248c53753a2
BLAKE2b-256 799910bbf10baf41e95afe4c8ea9ee4695800098480411bb7ad9ad658d2ad0ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0a0609dbd6ef4ac488d0ff47944fcf1d2cb588551b6542880bba46ddbcf14031
MD5 e848485d8e3b97b0aeda36b74c6fae10
BLAKE2b-256 7ac82378d889fb1e1baf0c63d6aedae754dc0d00e3678a5e052589041b16412f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c8d943cacfcd71ca2e4c8a414d3d055a0995c9ac86c8ab1f640cf6edcdfd7d5
MD5 5d591e7aacd9675e536544580c12e436
BLAKE2b-256 62cc55742e12a973560c9ba25e8b9f15deec25daca4c8c7ca4ea0c4120262bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 98d7abafced36360a4c3033da4a0e5f69b2c930ed6a4e32faf7016175a3f7ff7
MD5 78476ea803fb3a93b378054d2383d5a6
BLAKE2b-256 284922d9404dd84142bc5fd6f92ad41602afc4665aa982fa409d62637748302e

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp34-cp34m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 85469dbb2431fee1615d0093417bcf2411fdfe20a83d65e6f8ce49a77af5b8c6
MD5 3fb3e4934845bfc66e594e23691b5b7b
BLAKE2b-256 fcfe9f70a958863f79f919e1cce72febea1783092d0997b9c16eb5a0e27a7065

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp34-cp34m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 0660fde8d990ef10b41e3ed0ee3d4c396e81441aa36e59794fcb66e8a9d4a5e1
MD5 1b563333a2265de029c507c694f165ec
BLAKE2b-256 63284b6f702fd315fbef90758cb7c5aab44b0aafeb5a8065485edece13977a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 000267942452318e46112bf7e4d4acc6869c021485d5a19ebd71642d18e0e34f
MD5 8744d289386f56462b5b8a0a3413f1ff
BLAKE2b-256 b3bd5b97efcff66384d163c775856ca4831771f4068833703e65777ad3430d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 43b7efdc2c78b8009e38e5d85be8aff35532ae21171190e8759820f13177fd3c
MD5 7fd451d7b1ef1d3a986f9c6541c173c9
BLAKE2b-256 4f7d7890ceb8ca37829cf03277bf4f5d150455666d73b9d12e6dc13432d2a8dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 504067523640c2e5f4d601fad3f6941e1fa9f16a536fd454482d2759befc34c0
MD5 cd092f2d3c8010213e06f9f83738e656
BLAKE2b-256 fc9f78ce76e7b29dcb77d76289465a3b0b32b4273e9dc011a43f286006dfd528

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp33-cp33m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp33-cp33m-win_amd64.whl
Algorithm Hash digest
SHA256 d5fe2a9b0fac6efd3837a0934bb3be049ae3d27ad3a3a7ebd76927ce5bebd52f
MD5 4bace4733b43ced2b8c94ec182043134
BLAKE2b-256 fddf5db68d00bbf05ff3b8160e9357c80a594f47bd79e433223eec457b15e57e

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp33-cp33m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 5b2ebecefca4f8aecb553695fd63f485b8a862faf658e059e85e32dc36b4649c
MD5 6cbfa4b1b6c073a4598684c161387561
BLAKE2b-256 75dd15b20e51a7432142beb5a58f09e17fe747d910b61c805dfca7ede768f41d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp33-cp33m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f7d0f204150ba6c0289a1ed4c65971c69cdd75e9679ff95a28897492d58b9596
MD5 a7561ad4e5d470cc305240243fcf5a00
BLAKE2b-256 6ed2984cb678fc6394fb632f3fb1a60955eb36d3a1eea8f5fdb4de6a86574034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp33-cp33m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 002923525549427d74bd6746f978bcafddceeba3c776f7541a5af3125f00bf38
MD5 36e4f1918f20fa564da477fc669d6115
BLAKE2b-256 b65b44de02a6bfdc7475f65411c5faa87075ddac0c94633d616f1ceb1c9c932b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 d0b1e5cf78d920c7247e752a1a665f8a5bf4f6fd7eecf248192bb970878dcfb0
MD5 3dac3c75d88ac414e5ea6fda7591ce45
BLAKE2b-256 4ed4a8e7748832a3d6f4ddb783105ecbd45753cbbb8cc4175ca871ac70c3dd89

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp27-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbccd409af328c9cef093001eed5c411cf4c5f9b495783c094d8ed535e36a40a
MD5 c8e7b39e3aec3bad0bdd5db979539bf8
BLAKE2b-256 b77f2881e3f15b9354839949400af7aac23f29612336658e48bb63f4c3be0728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 894c9af85090d12189d10e193c839819de80201b4746c294e01b07e5919a59ad
MD5 0c182ddb4bf651be8879d21dd8cf530d
BLAKE2b-256 96ffff41c35f75bf54da5fd891408f220b637b63a75eae1250965d9ffbb44b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 62c07f461b493a2ee9dfb7e6cadc4b7e418c03e7fab84a49f9444f78170700bd
MD5 57726f54efed88b86c39aaf0906fb087
BLAKE2b-256 07ff031aba50436a6acd6549c9ffe9659ac28846c52129cdf0d1b36b4e0f6190

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp27-cp27m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 fd6c084a264533736c5e7cab837f26a956686900a6e004d97704d1b3be21854f
MD5 63963ebe0b0811c1275184fdf35922f6
BLAKE2b-256 9287247ea85bdd719a1a3d528178a860b0dd2f6d459f003022f3df62bea9bc3a

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp27-cp27m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9d83f6fae4d5ad4328397a7bec1a7a6948f18a0d8780e318625f60d9665b8c27
MD5 d906c46cc688145be49663b93bd51a56
BLAKE2b-256 b16c68efa1107e42cdb69e64764d8a97fc422db37be12c0d2e4e2e46c9a4b754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a1236be77f8b09c207d53a3b6710fe941b46e1133d701470f224b9b1714e392d
MD5 fe759386ba06393247744d1dbf6734d5
BLAKE2b-256 7114004c816a048f5873d9527a6531464d9b6477eab581defd7b165b6e0ba4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 70db84374b5f86bf92c690e802ede26ee63e768c837c1288aacf51a199b6ec61
MD5 6702c9cad3110aedbbe77ca18d85a6e4
BLAKE2b-256 16bdb96f8f8f7ceb1f05c83f98ed48d1a71c29304415d19af34acbe78cb86516

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp27-cp27m-macosx_10_12_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp27-cp27m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 d9316938515df5863da5cc2bb5d766c9fa130d1d4f147b8c404cbdd61dce4e30
MD5 5b388d54ad5206f3c2a2c1502eb41e49
BLAKE2b-256 7ed7c16bb0322b3c6ba3c5f5d91625293d18b0613039f3a88955377abcf31ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e7b8de3388125d6bc0808ffa38d1e8c9e72659d766d31ee9ec7a37c71418020
MD5 1f005c3aa4a501b684ea8b6d776b0bfd
BLAKE2b-256 79e640c61aaae10a837a645c919a2ba56b14404abf076d0e94f53c71acd964e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1803dbd56e21b6a3970d9f945982f5abc5620599fae0adbaf398fafcca89c1a8
MD5 530a73b990c8199303d67c4487ddc8a7
BLAKE2b-256 24cb3660efbc0be023d326ce92ae63147593b517a868a981e91fbd341a47428d

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp26-cp26m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp26-cp26m-win_amd64.whl
Algorithm Hash digest
SHA256 2359d4e1e9f9ce33494a99314f0297a6f396bcdb256cf101c4694c8dfdcc59c6
MD5 23889bf52206a27089b98dcb31294e45
BLAKE2b-256 762196a4544cb9a1ab729e9ba60a5c18ce22cb6724f823570487b1a98f2ce59e

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp26-cp26m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp26-cp26m-win32.whl
Algorithm Hash digest
SHA256 6899aabf82ee070983a93c16aa723ede2d2d9ec97e9fe48b669907c9a1b3c8d3
MD5 30e87e690518c38c9f2634cfd1a63330
BLAKE2b-256 e5446614ff5690ded954ba0bcf17e8c18a2eb44fbb77529cf0d90e014900f294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b37981c294fb4f975f29aaf0fe02d11ae76b26accd421be9374d796b75c256fc
MD5 1f70442c7b3b47665c807288c6395e48
BLAKE2b-256 8f076a7bcf98ebc3dfdaeece5025a6e9936c9946924cd2643fdf84f1f5c4559e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.5.0-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4e32dfc92b03a675d0885d73a36220b9e71b154ea63d5c36d22c8b6af7ec312
MD5 bc5d8e20d4ee002659365cea3645fda5
BLAKE2b-256 57eb4c48c89b264455ad1394ff97ccb23cd2fff0cf1032aaebb0e64f12368ee4

See more details on using hashes here.

File details

Details for the file pymongo-3.5.0-cp26-cp26m-macosx_10_12_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.5.0-cp26-cp26m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 4a0cd360c9b1bb2056630c2545ed0de6fb33e7bfc48389b9686c0e4570ee7d1c
MD5 fab795c551993861ae726e04283e53d1
BLAKE2b-256 c9f9804d810f3568176cd0901053ef1890c6200a295efb9bd04efb13f08797bc

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