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

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 from pypi. 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.4+, PyPy, and PyPy3.

Optional dependencies:

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]

Support for mongodb+srv:// URIs requires dnspython:

$ python -m pip install pymongo[srv]

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]

Wire protocol compression with snappy requires python-snappy:

$ python -m pip install pymongo[snappy]

You can install all dependencies automatically with the following command:

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

Other optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1 and SCRAM-SHA-256. It especially improves performance on Python versions older than 2.7.8.

  • monotonic adds support for a monotonic clock, which improves reliability in environments where clock adjustments are frequent. Not needed in Python 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.7.0.tar.gz (626.8 kB view details)

Uploaded Source

Built Distributions

pymongo-3.7.0-py3.7-macosx-10.9-x86_64.egg (631.7 kB view details)

Uploaded Egg

pymongo-3.7.0-py3.6-win-amd64.egg (633.4 kB view details)

Uploaded Egg

pymongo-3.7.0-py3.6-macosx-10.9-x86_64.egg (631.7 kB view details)

Uploaded Egg

pymongo-3.7.0-py3.5-win32.egg (635.7 kB view details)

Uploaded Egg

pymongo-3.7.0-py3.5-macosx-10.6-intel.egg (674.3 kB view details)

Uploaded Egg

pymongo-3.7.0-py3.4-win-amd64.egg (640.6 kB view details)

Uploaded Egg

pymongo-3.7.0-py3.4-macosx-10.6-intel.egg (675.5 kB view details)

Uploaded Egg

pymongo-3.7.0-py2.7-win-amd64.egg (629.0 kB view details)

Uploaded Egg

pymongo-3.7.0-py2.7-win32.egg (627.0 kB view details)

Uploaded Egg

pymongo-3.7.0-py2.7-macosx-10.13-intel.egg (656.7 kB view details)

Uploaded Egg

pymongo-3.7.0-py2.6-win-amd64.egg (631.9 kB view details)

Uploaded Egg

pymongo-3.7.0-py2.6-win32.egg (629.5 kB view details)

Uploaded Egg

pymongo-3.7.0-cp37-cp37m-win_amd64.whl (311.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymongo-3.7.0-cp37-cp37m-win32.whl (305.3 kB view details)

Uploaded CPython 3.7mWindows x86

pymongo-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl (306.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pymongo-3.7.0-cp36-cp36m-win_amd64.whl (309.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymongo-3.7.0-cp36-cp36m-win32.whl (309.0 kB view details)

Uploaded CPython 3.6mWindows x86

pymongo-3.7.0-cp36-cp36m-manylinux1_x86_64.whl (408.5 kB view details)

Uploaded CPython 3.6m

pymongo-3.7.0-cp36-cp36m-manylinux1_i686.whl (402.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.7.0-cp36-cp36m-macosx_10_9_x86_64.whl (310.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

pymongo-3.7.0-cp35-cp35m-win_amd64.whl (314.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

pymongo-3.7.0-cp35-cp35m-win32.whl (303.6 kB view details)

Uploaded CPython 3.5mWindows x86

pymongo-3.7.0-cp35-cp35m-manylinux1_x86_64.whl (408.3 kB view details)

Uploaded CPython 3.5m

pymongo-3.7.0-cp35-cp35m-manylinux1_i686.whl (402.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.7.0-cp35-cp35m-macosx_10_6_intel.whl (344.8 kB view details)

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

pymongo-3.7.0-cp34-cp34m-win_amd64.whl (306.3 kB view details)

Uploaded CPython 3.4mWindows x86-64

pymongo-3.7.0-cp34-cp34m-win32.whl (308.6 kB view details)

Uploaded CPython 3.4mWindows x86

pymongo-3.7.0-cp34-cp34m-manylinux1_x86_64.whl (409.2 kB view details)

Uploaded CPython 3.4m

pymongo-3.7.0-cp34-cp34m-manylinux1_i686.whl (402.7 kB view details)

Uploaded CPython 3.4m

pymongo-3.7.0-cp34-cp34m-macosx_10_6_intel.whl (344.5 kB view details)

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

pymongo-3.7.0-cp27-cp27mu-manylinux1_x86_64.whl (411.0 kB view details)

Uploaded CPython 2.7mu

pymongo-3.7.0-cp27-cp27mu-manylinux1_i686.whl (400.5 kB view details)

Uploaded CPython 2.7mu

pymongo-3.7.0-cp27-cp27m-win_amd64.whl (306.4 kB view details)

Uploaded CPython 2.7mWindows x86-64

pymongo-3.7.0-cp27-cp27m-win32.whl (308.2 kB view details)

Uploaded CPython 2.7mWindows x86

pymongo-3.7.0-cp27-cp27m-manylinux1_x86_64.whl (411.0 kB view details)

Uploaded CPython 2.7m

pymongo-3.7.0-cp27-cp27m-manylinux1_i686.whl (400.5 kB view details)

Uploaded CPython 2.7m

pymongo-3.7.0-cp27-cp27m-macosx_10_13_intel.whl (336.6 kB view details)

Uploaded CPython 2.7mmacOS 10.13+ Intel (x86-64, i386)

pymongo-3.7.0-cp26-cp26mu-manylinux1_x86_64.whl (410.9 kB view details)

Uploaded CPython 2.6mu

pymongo-3.7.0-cp26-cp26mu-manylinux1_i686.whl (400.4 kB view details)

Uploaded CPython 2.6mu

pymongo-3.7.0-cp26-cp26m-win_amd64.whl (310.6 kB view details)

Uploaded CPython 2.6mWindows x86-64

pymongo-3.7.0-cp26-cp26m-win32.whl (308.7 kB view details)

Uploaded CPython 2.6mWindows x86

pymongo-3.7.0-cp26-cp26m-manylinux1_x86_64.whl (410.9 kB view details)

Uploaded CPython 2.6m

pymongo-3.7.0-cp26-cp26m-manylinux1_i686.whl (400.4 kB view details)

Uploaded CPython 2.6m

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.7.0.tar.gz
Algorithm Hash digest
SHA256 3327afb38017ac1de32e4ca3a6c8edb1fe19d6024771609590684d3a37e7c250
MD5 f493c23d4ee22255eb85288726907f95
BLAKE2b-256 38c593e3b26f6354e85ca7738b7e53435faa0da58c1ad495afc06ae86655bad8

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-py3.7-macosx-10.9-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-3.7.0-py3.7-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 2fa9d8292b93716dfaed09701a7129704cf290dd7a3a7e057563dee4e805934a
MD5 74bc16a8085121bcd1ea914a97a0d8f9
BLAKE2b-256 0788c33cb1ed5f6e0ebbeb59c604f7a562a521a90b09d302d6d4db433847b597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py3.6-win-amd64.egg
Algorithm Hash digest
SHA256 9785f19100e5b3422ce93c1455d5344484967cc6871a642a333ecf3554524398
MD5 d0f47a0dbdd08059d6e5a385810d9384
BLAKE2b-256 bc78d3e125ad0b9ff01c80da1d09d1ee9b0cdd5e03e1afdb5884117a573fd93e

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-py3.6-macosx-10.9-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-3.7.0-py3.6-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 74b829a8ad20715f02b1ba4d5e777d60c0500acc69377e802e19e1943d3f1a81
MD5 7eb79e3d6810d80780ce0bcd3bd04285
BLAKE2b-256 ae4eaf601236f8882884b1bd88e4ab80603d11e1a9ef6cee31ee8200b724f979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py3.5-win32.egg
Algorithm Hash digest
SHA256 86a3e9fe14e2d46aa2e349378732b917718bd03d5317f917cd9363ea5e29c234
MD5 a7b0c7d98deea49cd79a62bb9593445b
BLAKE2b-256 56ae7f2b9be1a52290608f1869e00a67515083168e90c97ee120563a75eb14d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 814919d3f66da8f9dc3d5df014c0699ec1698653f1829c588bfe251dda444782
MD5 74a730269e0b1bd5ffa3e6da9a549d69
BLAKE2b-256 968db34a1f08e056a68183dd446464918b6a73efb8dcab1218b92cc56c29fa9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 bce845a8efdcfae71dcaa52ff278a026fcf37afb64878c231129a264ef3afd2f
MD5 d2e30701f2155d15dd7bf017c0236b43
BLAKE2b-256 bf5c5be42efa68ada9fe3f78ea6e990c6545e6405553cdc2331a22081cf107e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 af3c32dd771e91e8e02335e13ebc618b740b034aabf99bd417c4fb768acc8c4c
MD5 fa48e96ddee241e762e06b77f829f57d
BLAKE2b-256 00ba7de6f243b265c816dd8540d9324da920072c6905a7f9f09559aae9e331a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 30928492147298754428e045a4e790a4dd91d0d834754cf0d556310aca270080
MD5 f5fff3b6a76c5be65e8c78d4324c9b65
BLAKE2b-256 4969b3335edb628d67e8350224f047e96a48bb6be49ce69065b0781e305e7bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 fcbd07bfc085a5b17141071d5ddcf087a96fed69ecbbd1d67d305f836214c195
MD5 e31665950872c7e13f7d00103d45871c
BLAKE2b-256 8feebe6697b897001db94c569289fd7bd9407179a7c8e5de72ba79b599c66efd

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-py2.7-macosx-10.13-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.7.0-py2.7-macosx-10.13-intel.egg
Algorithm Hash digest
SHA256 c6490e2f22279cbe2090cd6075e375f3d7396a8deaf9efc38061cfe3ab15e158
MD5 9bd4ba50af1319402ed14c5e68906ba8
BLAKE2b-256 a6d9cde2fc75e832eaec1f048688f4bf32f4bd35994e76bffcfe43527aa6b539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 1e385e45d5aed6fd5294da1f9b71d33dcd812887f9e17410cbf83c324270fbbd
MD5 d48eeabcbc924d8c21c8147b3eccaf02
BLAKE2b-256 388b434cf7823e69bce42953e57ddf3e317f01c138ca1b18814217c2de59fb37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-py2.6-win32.egg
Algorithm Hash digest
SHA256 7e4246dda4e80a60c4d594fb79fa8eccbdbc14561b08093b67c0cd05059b08b3
MD5 b0996fcb60ca85ee85ba803d95873b7d
BLAKE2b-256 1b51ae6b92d3315b973c632566e2ab86c5b3facd0ff885b115324c55fe8aba82

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-3.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5170ef12426d355a490840dc7f2b69602e92a4c57cca27ef59d1c371dfab6c0e
MD5 cfd7e6884e93661c840fd941a4c49032
BLAKE2b-256 f82e6b3ee48383e1a0fe3151a4f5d610983dbfcfb9ba4825204cc55f38da179d

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for pymongo-3.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 252cecc7e204106de8b61aacf3e00a5c31ebd2548b027a675ef339d3df9428d6
MD5 6fe9723b2b7fced3c9caa1635f1aaf56
BLAKE2b-256 d740c8015b043c503708db720ee4d7623799c0c368c61de9f1cdd1e7a291113d

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e889b1256a6aac3f64d9e7369a3fbcb3dce9389d4145cb7f0f7439071f0739e
MD5 f89a518070acc72460110ac9074562e0
BLAKE2b-256 73e87b85214208849f9fed2d21fc371fe61d3a87fbebf8a5f8d410cb173708f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f4b400ae8464d878b3297fb0e37f425f6f3b4343ca728b16a8bfa86b10e8c7c4
MD5 ae2ffe2a651f5564e5863c379f144109
BLAKE2b-256 0f54ec07858c625460027536aefe8bbe1d0f319b62b5884ec8650e1c2649dccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ef156326eb692bcc7a278298a69c90bcde72f0ac4edb3099082265d7b947c339
MD5 dc7e98f9406d63fa2731ad9f7c31f55d
BLAKE2b-256 3bd90e7116130b1090478a99ba3e23b47964533d394e9c552b1d8619c67baa56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 64c9c2ac0b9f96253b52c41e7c9c26a140818a31031ac1c5431893c241fb3436
MD5 a6508bc95802f532f8fbd8aad3fbd0f9
BLAKE2b-256 910f03409241acedb5e27c5ddfef86e1e6b88c1a3864be83d59d796cc06a52b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9930c3d070eeaeb1297e58fd6ef009ac9b723d423d82637acca1a06e5940471
MD5 da50195fa48e3ce25b6f6104e831376f
BLAKE2b-256 a3c0c1e50395c44aaa161421433082253bd8fb67268793b3fed797687b18747c

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ab6f1917a9226459c9ecb1af879a853aae5f5be2afe599deb4bcd9702d03c20
MD5 40a2daf43894c7da8b26dc77593e5697
BLAKE2b-256 735b40d57055eb554adba8d77e778837215dd18b5fbfae1dc397df96453c7b01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 77f602b667380f943cf90e95a4f0e8374b928be5cc038e6f67dd236e20f17e26
MD5 4fc2980e88e65d5b23fef7306f2d1fc6
BLAKE2b-256 cc5c47f324c5507518312f51348985aeadab3c68a20a2c59b47a75b47994d91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9dc1590e1f1ffd4a9a8be836610afeb887dcd75c96663e1d0390c492146f59ff
MD5 4e9d6abf6d77e6ef47d4457a47a49263
BLAKE2b-256 a2c45d2b590a6c9a58962db286994022f82dd4c1e292b1539282a6e5b712ff7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1a33a6431ee41c0fa507a37d08966d73a66443e43173b2d4fff6db70247ae805
MD5 8c80b2b1910b8aa9dac0d0c85b29ae77
BLAKE2b-256 c1e385be0e1b3d73b96cce472e3a24989b8abd8660a519858579d9f0fcfce4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5e4becae6c053602fb9ed6dd4d12c525e3f716357334ee306929724087b65b4
MD5 fd28e136db70f741c7db10f547ed4519
BLAKE2b-256 3c70e9af7286fdc87d183e6edaab88e00c744900b5df5935be7c4f8936a6d93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b6bd46b9662a58134241cb31224e3b2b0f61b67e2b2328326fe871d5603e3537
MD5 598f1b0e1742db5b22766e889408b1bf
BLAKE2b-256 6685c7d04d02a8e21964b0e353302e5af7b11fe41de10c370cc642b9b213c405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 c6c6868995787429cedb919d0399a0211c0ca48880c3dcacda2ae72cb2663caa
MD5 1af8b56112ba3eb8eaae0577defa26fe
BLAKE2b-256 5a8863e3402d827006cd28dbb35350d98f345cef581936d4efc76fefc2dbfb10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 e56e54f710935a6896db9a3bc85d69ddc91806a56c0f5045989b3aa918369cea
MD5 0b150eacfed213c4d54a19e7a39f392a
BLAKE2b-256 4129f47379c5ef6e685699f84aece0e157014b0de97ba33e414145696bfd961d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21e25d25ead34b07289f5a30916661e5f0adfff8f2a9326f98b8961113e14a83
MD5 0dcaf6506da7ce64f4cca23a5ecf8280
BLAKE2b-256 919e1fdb9b3ced12446d53ca74abfad7c3d9f6cbbe2ae53aef90ef60c9f685ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3dd41aaab8ac3b93281c331bca8824bb75591568d802a0a509c61f4be7ea235d
MD5 1e3f915e08c9b8a39f3e8b414c31ad56
BLAKE2b-256 236c5950466deeeb38706fd985a7ccd535a69e807584098b7b964801964d1b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 2e7920f138aad3406a83cb8db7b3f96a357d9d33bc7abb353cc0f571dd97318d
MD5 d35193efb2c1bbe184aabbea4d1c5f65
BLAKE2b-256 8bc3a7d19b51b08eeb6cdf223f7a54b8eb87b86539b7db4cbdd0ea9df9116301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5984c1c12e8dd6a96e8b82c4bec3f86180c4b048dcdccd34ed8c8bb81740e4ca
MD5 1865f64783cee6b2c05b77bce83e2274
BLAKE2b-256 c02d5a927c0a4b90bf32e64fbaca269fad3116e6e86cfa1b9a3da5bdcc2a144e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 453e9a1e3a9dfe7c7bf3367ab82842cb236735c58f6ca849a485b30f9dfa42f8
MD5 11257b6032c325aa12b237350ce43edf
BLAKE2b-256 36d8273e365c7b198cbc056277a35083b3740a7dbde5f3f0e03a495d54fd020f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 5cc2adccb61bfe6c76fc5b6d488d76b3c093a69d79e70adb73b5678d2f0afc67
MD5 62ba6db81ece38024f79fc17b7caaf3e
BLAKE2b-256 6c564cb312c2b3e4364ec90f295726be9c832c5e59eabc722d1d4e6263152441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7b0a16aaac8599b8403860d8cb00a978387423dabed2f09b0c6184006c75cb9d
MD5 7f80da071ae53613d4241dc9366c106d
BLAKE2b-256 4d7bdfeaf0be90b1ac1f1cf1dab3525b0d6df3d3e00ec9a57417a97f37f2f967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 04e5e52d3e6cbd46bbafe067a242cd5862240fd5ba270ab1be6d3cfa5ae1ed0b
MD5 a94648c96577ad7ca668d6362908c41e
BLAKE2b-256 d1c664564137875af4558811c9854a64581be20e4b9d7b4d5d8f8beb282ec25c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65a0967d15d4b3d46b9885a69c45148cc9dc09ee9f10f0fd05669fe9ebffd947
MD5 91374a4faeba2fc4b47ef273c72697e9
BLAKE2b-256 53d82201edf7ff1cff78340d3206941223fb826bf6e4928d24ba9d9fa28b2766

See more details on using hashes here.

File details

Details for the file pymongo-3.7.0-cp27-cp27m-macosx_10_13_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.7.0-cp27-cp27m-macosx_10_13_intel.whl
Algorithm Hash digest
SHA256 e1b169481dc1d77cfd45906171193daa431144cc0704da19fcf7e39f7e5bad13
MD5 3e792790a4e829c7921c6b345e82c767
BLAKE2b-256 80eaa4a9ca9c4c49870288ad4db7bcb4b4deaf33eabc270d2c3f4215e21b0ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29a12524bc5b7e2bc55e426e6b7be4a734cccf99298248748f6ca0088ecb54e3
MD5 f9c53a709125a7433a1c39c67a9657eb
BLAKE2b-256 710a9cda25e1eff9e69785ac7f3e6e4bac4b03364e1cdd359c6a61bb0e98d60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 80c9df3fde525855431d2959550746404eb6fae8f8a87d7d15e9c0ac650c70e1
MD5 94148c90773fd3307cffba441b7963ad
BLAKE2b-256 3a526db3e7083b180451e7212c6454412649f88578a9c7c5229ee1e101fbcf49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp26-cp26m-win_amd64.whl
Algorithm Hash digest
SHA256 f7f309ebbda39fb00ec28f311e90b8ec9def924c41b658c45d6ab8077aadece8
MD5 6bfc6927e04a83e7e4410694af7bf877
BLAKE2b-256 29ed63e5a16848a34fadd2007f8516bd0f91f4885346d785157fbeb7ae3b7bce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp26-cp26m-win32.whl
Algorithm Hash digest
SHA256 95f0c66aabe98e58c236baea43252dc32a3b214b8dee30f678cacba15e5889a0
MD5 5afcb5b614d73f576d60ff792c4f7613
BLAKE2b-256 2beb9d157dd79f502000e5a681c5a23ea161f07945118acec7c6466ab8e6d9ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5217607e2bac97c774839095c3609da2250bf253f46761bc700e4ce3bd5ac54d
MD5 014792cfbe1a88604ad17910fd11a416
BLAKE2b-256 e9df865655c8bad2e3a1b0c34f9a1889a075a9b907a6ab09616806502f7c19e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.7.0-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b4e77252237fea02eab5a59514b62bb23095869790dbcfcb45e500e3704c69d0
MD5 eb7c075743e1baabbaf5d035ab79e3df
BLAKE2b-256 fd06ee6b3560071cf26c9df25cecdf464091c98f453327d3acfbbfccec0cc152

See more details on using hashes here.

Supported by

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