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

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

Uploaded Source

Built Distributions

pymongo-3.4.0-py3.5-win-amd64.egg (546.2 kB view details)

Uploaded Source

pymongo-3.4.0-py3.5-win32.egg (540.7 kB view details)

Uploaded Source

pymongo-3.4.0-py3.5-macosx-10.6-intel.egg (571.3 kB view details)

Uploaded Source

pymongo-3.4.0-py3.4-win-amd64.egg (544.6 kB view details)

Uploaded Source

pymongo-3.4.0-py3.4-win32.egg (541.2 kB view details)

Uploaded Source

pymongo-3.4.0-py3.4-macosx-10.6-intel.egg (572.3 kB view details)

Uploaded Source

pymongo-3.4.0-py3.3-win-amd64.egg (552.9 kB view details)

Uploaded Source

pymongo-3.4.0-py3.3-win32.egg (549.4 kB view details)

Uploaded Source

pymongo-3.4.0-py3.3-macosx-10.6-x86_64.egg (581.1 kB view details)

Uploaded Source

pymongo-3.4.0-py2.7-win-amd64.egg (534.3 kB view details)

Uploaded Source

pymongo-3.4.0-py2.7-win32.egg (530.7 kB view details)

Uploaded Source

pymongo-3.4.0-py2.7-macosx-10.12-intel.egg (556.7 kB view details)

Uploaded Source

pymongo-3.4.0-py2.7-macosx-10.11-intel.egg (557.0 kB view details)

Uploaded Source

pymongo-3.4.0-py2.6-win-amd64.egg (536.6 kB view details)

Uploaded Source

pymongo-3.4.0-py2.6-win32.egg (533.1 kB view details)

Uploaded Source

pymongo-3.4.0-py2.6-macosx-10.12-intel.egg (558.6 kB view details)

Uploaded Source

pymongo-3.4.0-py2.6-macosx-10.11-intel.egg (558.8 kB view details)

Uploaded Source

pymongo-3.4.0-cp35-none-win_amd64.whl (270.1 kB view details)

Uploaded CPython 3.5 Windows x86-64

pymongo-3.4.0-cp35-none-win32.whl (264.8 kB view details)

Uploaded CPython 3.5 Windows x86

pymongo-3.4.0-cp35-cp35m-manylinux1_x86_64.whl (359.2 kB view details)

Uploaded CPython 3.5m

pymongo-3.4.0-cp35-cp35m-manylinux1_i686.whl (353.1 kB view details)

Uploaded CPython 3.5m

pymongo-3.4.0-cp35-cp35m-macosx_10_6_intel.whl (294.8 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.4.0-cp34-none-win_amd64.whl (267.3 kB view details)

Uploaded CPython 3.4 Windows x86-64

pymongo-3.4.0-cp34-none-win32.whl (264.1 kB view details)

Uploaded CPython 3.4 Windows x86

pymongo-3.4.0-cp34-cp34m-manylinux1_x86_64.whl (360.1 kB view details)

Uploaded CPython 3.4m

pymongo-3.4.0-cp34-cp34m-manylinux1_i686.whl (353.2 kB view details)

Uploaded CPython 3.4m

pymongo-3.4.0-cp34-cp34m-macosx_10_6_intel.whl (294.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.4.0-cp33-none-win_amd64.whl (267.5 kB view details)

Uploaded CPython 3.3 Windows x86-64

pymongo-3.4.0-cp33-none-win32.whl (264.2 kB view details)

Uploaded CPython 3.3 Windows x86

pymongo-3.4.0-cp33-cp33m-manylinux1_x86_64.whl (352.3 kB view details)

Uploaded CPython 3.3m

pymongo-3.4.0-cp33-cp33m-manylinux1_i686.whl (345.8 kB view details)

Uploaded CPython 3.3m

pymongo-3.4.0-cp33-cp33m-macosx_10_6_x86_64.whl (294.8 kB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

pymongo-3.4.0-cp27-none-win_amd64.whl (267.1 kB view details)

Uploaded CPython 2.7 Windows x86-64

pymongo-3.4.0-cp27-none-win32.whl (263.7 kB view details)

Uploaded CPython 2.7 Windows x86

pymongo-3.4.0-cp27-cp27mu-manylinux1_x86_64.whl (362.2 kB view details)

Uploaded CPython 2.7mu

pymongo-3.4.0-cp27-cp27mu-manylinux1_i686.whl (351.8 kB view details)

Uploaded CPython 2.7mu

pymongo-3.4.0-cp27-cp27m-manylinux1_x86_64.whl (362.1 kB view details)

Uploaded CPython 2.7m

pymongo-3.4.0-cp27-cp27m-manylinux1_i686.whl (351.7 kB view details)

Uploaded CPython 2.7m

pymongo-3.4.0-cp27-cp27m-macosx_10_12_intel.whl (288.8 kB view details)

Uploaded CPython 2.7m macOS 10.12+ intel

pymongo-3.4.0-cp27-cp27m-macosx_10_11_intel.whl (289.0 kB view details)

Uploaded CPython 2.7m macOS 10.11+ intel

pymongo-3.4.0-cp26-none-win_amd64.whl (267.6 kB view details)

Uploaded CPython 2.6 Windows x86-64

pymongo-3.4.0-cp26-none-win32.whl (264.3 kB view details)

Uploaded CPython 2.6 Windows x86

pymongo-3.4.0-cp26-cp26mu-manylinux1_x86_64.whl (362.1 kB view details)

Uploaded CPython 2.6mu

pymongo-3.4.0-cp26-cp26mu-manylinux1_i686.whl (351.6 kB view details)

Uploaded CPython 2.6mu

pymongo-3.4.0-cp26-cp26m-manylinux1_x86_64.whl (362.1 kB view details)

Uploaded CPython 2.6m

pymongo-3.4.0-cp26-cp26m-manylinux1_i686.whl (351.6 kB view details)

Uploaded CPython 2.6m

pymongo-3.4.0-cp26-cp26m-macosx_10_12_intel.whl (288.8 kB view details)

Uploaded CPython 2.6m macOS 10.12+ intel

pymongo-3.4.0-cp26-cp26m-macosx_10_11_intel.whl (289.0 kB view details)

Uploaded CPython 2.6m macOS 10.11+ intel

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.4.0.tar.gz
Algorithm Hash digest
SHA256 d359349c6c9ff9f482805f89e66e476846317dc7b1eea979d7da9c0857ee2721
MD5 aa77f88e51e281c9f328cea701bb6f3e
BLAKE2b-256 8226f45f95841de5164c48e2e03aff7f0702e22cef2336238d212d8f93e91ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 e81a9368ec89e2218a790085b87e31d2c6dba0d549bf0d6ddfcac86aa9c90a11
MD5 0fa1f3d99542f032fc8940d8d53d7559
BLAKE2b-256 e77c6c6fa7f0c416e227445979403f14c4fcfc5960f7c220e8ad0370197fe87a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.5-win32.egg
Algorithm Hash digest
SHA256 761f05a63996279a25af2befd731e9678c56446620e88d693f28d6d5c6de9af9
MD5 aa6852869b86c5c9d684d6dc9cded96d
BLAKE2b-256 3b6cb3545ff34b6761216e923ee8704ffa4024d0dd0a3222b9c977f5f2790fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 34033f2fc3b7910e846af5bc7b973546615fe5cb02cba606a058b5730818baad
MD5 1c2a5883c19bcf4be01a8f1f64b6f920
BLAKE2b-256 1a3acb1885b62ce54ed6d68bf98a8b50e10871beae92be96eb91c65388c84a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 ddc867ebd4a094a921828e0604b095391ef1d6f74474374447f06437b6e508d0
MD5 26ba44ba6fe3328f5fd2ff948f18c30b
BLAKE2b-256 3e545237f33a981b0b03ace72a765e087bfcfa0a4b97225a75b561b761a6304b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.4-win32.egg
Algorithm Hash digest
SHA256 7f763dc651c4974f963bb15bc67771975a0703f0f14c5f332cc171921d2de1c9
MD5 8c1d5f6e001e467f72f1aa1758df9c26
BLAKE2b-256 e5e4800b75ee7a1c005de86b998ea384e373f47c3fab21be194a763572493813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 1332ae0a8f91d878d5555afa0f8cbe72d9c0d24d5be0de18a263e0fdac66f6b0
MD5 bee4dbd50ff82db8582344d88daac98b
BLAKE2b-256 84e15bdee4fb63b71eb0c5c7177d11d3510f970ab5ab373b08ae1cba3788d9ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 75a0874506333c92b27edd9666fe9292b39d256eb2eb80091335ca80c2828b57
MD5 390022388fa357bbe933ea85eade146e
BLAKE2b-256 105a7eeb27d20d98bdb725ac80b9f68e453936ce895d961346f210843891e3ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.3-win32.egg
Algorithm Hash digest
SHA256 8fd487505b60b5c77efcde6f33cd5c7c82fe24344d27ffc2ae3b1f514d74dfee
MD5 ef7e1d4ae947192a5591a54bc98af3e6
BLAKE2b-256 2743ee8e97627e9a0f93538ccbb9413fd96e7da1ecc49e8db45025ad1a05df9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 6160bd5ed5a32a412dfdc1a11d283446752e0b28b0a606e0e3bc4bc9f88cc90f
MD5 f31be26f90b124bd0579ec1f0235db2e
BLAKE2b-256 7047e4853cf34254bd064e83374bee3118a76eb18b9cf02acfea64b8bfc043a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 99b97edc8d7edbc7a9b3ba6ac4d158781c0b926eebe50ad2979000a04c240120
MD5 289d84dfa9279f3b3e190da9bc195ebc
BLAKE2b-256 62b85612a831cee02b3b751b09c8bb2fa27c92e6657260b9b22065dd916694ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 242c0c1c2a9307d7a6579d32bc86a17c534eaf50fa486c02724c463e6c9128b8
MD5 f37db32b1d51ddbda002f14293a72551
BLAKE2b-256 0cf998a94142f8d6b5179b21d791ad748654f0bbe1ca076d43e61d55838e42b5

See more details on using hashes here.

File details

Details for the file pymongo-3.4.0-py2.7-macosx-10.12-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.7-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 02eb94efceafba03f0b55a77b82f0e11ea6f5e636262fb4bb51419d54630c969
MD5 042afc375b5b7e8449163f614ff55415
BLAKE2b-256 2d0fed5c735993a24d989b3f37e5e17292b4789a3cdf5738fc018c69710489e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 f8ef51d2004164d51633916c6b8343a6ff19688cf7eae0512cb4e09eced4a671
MD5 3b376dba99725734e09dc636c23307f6
BLAKE2b-256 e4557ea39535d77094addb2665de8b0c0386965913a42a396e55684977eb3119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 498d4a481ea2fb47a48ccbf201a5102f30c2eca2e715f1b4351289c691a2bfca
MD5 b04b70a1ba36065a35525ce5da080fe3
BLAKE2b-256 f302f7f9792bd6968d09f89c70f14d7b86752f7dbb392028f6c3e57ca38bba29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.6-win32.egg
Algorithm Hash digest
SHA256 aafe6b85cb06511e97cda18c83d6377b9890e04b9808d44e31e132e1314c1c22
MD5 9289dfbcd9b08e95a4c94e757d514f1c
BLAKE2b-256 880c0f309b407625119156c4274f92309381698dab1b3cd119ae0658ec37f789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.6-macosx-10.12-intel.egg
Algorithm Hash digest
SHA256 3ca957f8570f66dc196664637523b22a2cea27a7d2a08ca1f0acc74a074177b4
MD5 4e733fb954517a36d121f8cddb3bf940
BLAKE2b-256 a7432598db22e33482105d2e069d577cc6f1b48da3306b8797ea265b788d9ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 96dcfc4ac28a70ec3d85b809cc15e2aca845f592348407a438b4f287d644c76c
MD5 63f50ba7364f7c68793fedfa957102af
BLAKE2b-256 83d384a5d8def4cfe7379d64d828efd6feb95d8438edb194de4522ac9fbc3ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 2d099d66912983d2099c816c12d72adc15a703c3655af53eadefb5f2e39648fc
MD5 1aac6fd3686e41803f5486973aa52b66
BLAKE2b-256 fd26bd7981ef22249231653c374dac561d3cba2c47a109ebe20c7140028a0df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp35-none-win32.whl
Algorithm Hash digest
SHA256 a273fa0dc2ddeaa525e73bbee7b980eb39ee016c7bee54661bb2f7d441b54692
MD5 aaa2fb9c19396ade71103e90dd7139a1
BLAKE2b-256 067049ca210e029e85247b046704348dedaa2f721d423c135f130ebd9790b090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 13502d4e46905934c5b66331710bda1bee392bb6be024f77b0e37df59ff1e887
MD5 fc4388ef1263095c6cc25c62cc1d866e
BLAKE2b-256 6ba582aa3f1245625f606f51c49c5ef4e31d9fc00d676be4eeb2e1c29387095d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ee9ba58e15a5f73adf0408364ad91f076a8690419e3268a5abbc4f901e45fa9
MD5 e9a451c7c2c76703c21064f0fc53ac79
BLAKE2b-256 1a1c2937f20464ee603f1488f379a783d335bfce7efc13a3e68509f24c7f6048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3c9c23d589d6fd5736fe4779377356c6e77826a5d56b25d8d90b372f682fe101
MD5 5a322f8688f74d95d8ef07ccdcf34481
BLAKE2b-256 db43de04654475a277522386bc880ba8ee8fd71a965cd917515802905aa8f3dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 c59d1e9a7590f79afc18f6445a38233231de7321b95bf5a50f0caa82af5db19f
MD5 a33986246311c4a658e333e8c96d71d6
BLAKE2b-256 7070b4d493efa935c34e97425a8364a6faf569a4c9efb23e8134aa1c3d2d49d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp34-none-win32.whl
Algorithm Hash digest
SHA256 9fcf265d83d84d9b82f8537843bde02e4553321d53b06fe00767b9ebb76f63fd
MD5 4368c0d5e8a5403986e2697d9a32c4d8
BLAKE2b-256 b6cc5ab9ebb65af6bb433d63353d8eddbcd4f0ca36549b650f9666ee81166f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3223bbe13b723f9e5ede7d69535b6aee795ac802dfd881d6e2f29dce3432f5b0
MD5 f3e7c8d53697e4a03ac420fef2091fd9
BLAKE2b-256 3f25747e9d1c1b8c503c8917ab0c88276f97d667470d5382946f7ab04fc54f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 31dd07b2bfeb083fb0c24da3b1fd1c807ddc30c3fc23e40c5624932a694d211d
MD5 822eeecd43122532438e84fa8d67469c
BLAKE2b-256 c4b50d67eb44c699c33e038404a5c577db9822e8a95327f70f8bea520e9ebfa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 775443cebf95614165c5c9bb96fd0ceba8f8199379a843ecd5c71934bf897d83
MD5 a4157108b857ec53b1207fbff872b7eb
BLAKE2b-256 da38288dddd2bb8d378be76e012f45d63374a5de9d16982b7b76c238e6c0f4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c41bd8be1643e7c99412f1d7cd061d1436288307ac398378c4ef6b868bf2798
MD5 866021052b593d1f4362b3dd22e88e7b
BLAKE2b-256 ec7ae6f6ca03956b463e07259f98ca4daf836c5753aa08a92c7cb522a8d92d77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp33-none-win32.whl
Algorithm Hash digest
SHA256 5ffffa7c4d595138e86a9c499ddb962edcbdcd80a3138a7b81a36947f1b815e6
MD5 ec2336d2ac6731f6011b497f38161786
BLAKE2b-256 2d256363cbe91fa57b704edcf4e9d6ca271aa039e541f535e7e1a8479c0330a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp33-cp33m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d35d430c02149a1be51e04232e4c3430b56e093a7f8537bc062dfbc1d16c59ba
MD5 df69082f5f4682ef6f07127ca470bf55
BLAKE2b-256 27a9da53e6c9569d41fa0998a2e03986f8bf0ebb531eaac6d6b4303514b55dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp33-cp33m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed4120c40a17d1b9e1620b2b64a748333882fe7ab8d117bcb55768f6fd3343b1
MD5 9cf866124b397b9720e7508d821646f6
BLAKE2b-256 5e076d3cac5bc72afe5f2af361d4de376eaf7000aaacf8c34c32458d5fbe063f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 b37369901832ef5a66e236c031ba75a1de27e9316c4d5b8157e236b513f1f50c
MD5 e4e71a2fef44a527a148a9b83a3701cd
BLAKE2b-256 3656b3a00f6dfe0e13cbabde9059710225d94342d4f3505e480d5ad5ca0c9bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 f6bed3a53bdaba9b5cdcd7e83749b1c91918736643e90593751abb3df7144b8c
MD5 a9f3d6340235e97af5429df312fe2765
BLAKE2b-256 7d811ed2b3752395d02a82b29272834b7dc1c624eb2b8f45747ffce7f8e166a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-none-win32.whl
Algorithm Hash digest
SHA256 e10e103c5631958e0f29c560bd446e4332948a364912227bc30f421ed1d6ab99
MD5 3c4e2408e33455ebb786cd48727b006b
BLAKE2b-256 c552b23a2a42e61cc4335e5282cfd16aa58aab23886263330ac1c0ffd6676e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e0b5366f08875e6dfd4acf587c49eb813e8149106701f40dcca3ccfb14c1f5d
MD5 b5039552cf6d00966b50b5071ffec7ff
BLAKE2b-256 7879bf344055f2c3db0b6f2fa6ca1515552d86ea440fe7f78744be98ec53f474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b7ae4ff7517960d311f577319ddac3c9fcf91fdf7c024a764e30b1578c0a9a5
MD5 b4583f6d8f6c7fcc29179d699414ff05
BLAKE2b-256 99594d5ab46b526197ca964ed0999f377585266fe17ac6d6344a0ac631c2f91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07105b57bb185db0631076e1d2bf005c442270d098e491ccfb4a98efa3f2c9cc
MD5 6333484b151c8eaf8d74ef2087aa6fd1
BLAKE2b-256 2e7a08e587973eecab9959513c0e4cff3272a478345b02b68600c178289c1187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 af82605e4d052c9d4aa2aff473eea0c8a10afdf2a1098f23793298e9072724e6
MD5 677ae5e7df65a6a4d7ba8f98202685bf
BLAKE2b-256 420b278b7df7a8034f466916c59d452eef252ed0136c744d0ed95ddb71027449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-cp27m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 835a881111f2c403cfa9aa0a591257414e821efc89be607a8065c3fc23cf013a
MD5 41c37e3f9dea9e45f9f5e6f34863793a
BLAKE2b-256 706c90019178079a58bfaafc46776db7258a83ad22aeb76c7b1cf72c4521c75e

See more details on using hashes here.

File details

Details for the file pymongo-3.4.0-cp27-cp27m-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.4.0-cp27-cp27m-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 5a3729466eb9d834b4e5f24a9a39108800b66b0a703da8f52eb69ff0583744c3
MD5 1bfa2cae7874c746801df1703aabb617
BLAKE2b-256 5fcffa5dff3225730b46e475704789435cc6e1f9997e24bf435611e4052f3b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 a0a21767c782afedf55d1261d92b95aa70428ee70ea8dde4bc746d51ac9b5e0e
MD5 c4b7de72ae0e4998d18f4f9e7c7b4475
BLAKE2b-256 76d050210db8ebf29584e283785f78bf17480232d312c10cfd6e8ac227fa7ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-none-win32.whl
Algorithm Hash digest
SHA256 86beb4be0ffca122026637fe09edb69b6bb81c579c266fc5b671f2a4591bf4a6
MD5 3a2456c045595ba43718b4b370b2bae3
BLAKE2b-256 541df3ac60d1271a22834ef9eb8c7d18043d9c9eed06aa99e49c2f8286ac381e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5398ae1a5d7f0dd0cc4f28246f14abac7f5082c9d6fd0fa28f32881cd6d696ee
MD5 ff56944e8345b2e273f3c31f8996f935
BLAKE2b-256 b8318099ac9bdfe865692cf920048b5b0bb2f17347e2a90814ed439563ba1b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 97b989555b286dd8733cd44f3e6c3adc6a6d082a8b8b24c200ca943fe8b41d99
MD5 0acc372532a9d2f52743030372fbc22f
BLAKE2b-256 17631e6e113851f81a80a1ef20d4295675954a1625036dea6eb594670513584d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9568d2b3f2e0bbfb5206a381203145f4055394b893ff4e074f6ea0480deee9c1
MD5 e92f9a0cd5b21efbd36c138beca5e9bd
BLAKE2b-256 799945a7f55c5af96e0faf9793d20d3f9ec90359e77cf9d76b11179d283679ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c80d29b576779d8fa715fa2cacce496712ca4928e14db99c08577eb9463ef24e
MD5 cce60f500cc579d3a86c0868fb5988ac
BLAKE2b-256 dc428057fb0914b64f2df9d949283f928c36505472a44f2b7e22e621b500d231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-cp26m-macosx_10_12_intel.whl
Algorithm Hash digest
SHA256 deb09ff6837e7d701e5896422bf6f3934092ead977fd68616dccab5aa43ba089
MD5 f2944a7f3e3a11fd7479d64e82096a79
BLAKE2b-256 7f3c2244198c982d2c3245d7dc5952f5ec9f8285f4277c2d2f26527dd6fb72ba

See more details on using hashes here.

File details

Details for the file pymongo-3.4.0-cp26-cp26m-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.4.0-cp26-cp26m-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 6cc73df41330be908c962dafceb1cd8d7155ccb3899c3708d0cf11ae31e7610b
MD5 b7287b9be047223652c92eea90fe2be1
BLAKE2b-256 01f115c06a25c6d625420a4a59bae0c4ff0a89e3a7323a53087d6ce14ebe299d

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