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]

You can install all dependencies automatically with the following command:

$ python -m pip install pymongo[gssapi,srv,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 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

This version

3.6.1

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.6.1.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

pymongo-3.6.1-py3.6-win-amd64.egg (586.7 kB view details)

Uploaded Source

pymongo-3.6.1-py3.6-win32.egg (581.3 kB view details)

Uploaded Source

pymongo-3.6.1-py3.6-macosx-10.6-intel.egg (612.5 kB view details)

Uploaded Source

pymongo-3.6.1-py3.5-win-amd64.egg (594.8 kB view details)

Uploaded Source

pymongo-3.6.1-py3.5-win32.egg (589.4 kB view details)

Uploaded Source

pymongo-3.6.1-py3.5-macosx-10.6-intel.egg (620.4 kB view details)

Uploaded Source

pymongo-3.6.1-py3.4-win-amd64.egg (593.0 kB view details)

Uploaded Source

pymongo-3.6.1-py3.4-win32.egg (590.0 kB view details)

Uploaded Source

pymongo-3.6.1-py3.4-macosx-10.6-intel.egg (621.6 kB view details)

Uploaded Source

pymongo-3.6.1-py2.7-win-amd64.egg (582.4 kB view details)

Uploaded Source

pymongo-3.6.1-py2.7-win32.egg (579.0 kB view details)

Uploaded Source

pymongo-3.6.1-py2.7-macosx-10.13-intel.egg (605.1 kB view details)

Uploaded Source

pymongo-3.6.1-py2.6-win-amd64.egg (584.9 kB view details)

Uploaded Source

pymongo-3.6.1-py2.6-win32.egg (581.6 kB view details)

Uploaded Source

pymongo-3.6.1-cp36-cp36m-win_amd64.whl (291.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.6.1-cp36-cp36m-win32.whl (286.3 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.6.1-cp36-cp36m-manylinux1_x86_64.whl (378.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.6.1-cp36-cp36m-manylinux1_i686.whl (373.5 kB view details)

Uploaded CPython 3.6m

pymongo-3.6.1-cp36-cp36m-macosx_10_6_intel.whl (316.1 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.6.1-cp35-cp35m-win_amd64.whl (291.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.6.1-cp35-cp35m-win32.whl (286.3 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.6.1-cp35-cp35m-manylinux1_x86_64.whl (378.8 kB view details)

Uploaded CPython 3.5m

pymongo-3.6.1-cp35-cp35m-manylinux1_i686.whl (373.3 kB view details)

Uploaded CPython 3.5m

pymongo-3.6.1-cp35-cp35m-macosx_10_6_intel.whl (316.1 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.6.1-cp34-cp34m-win_amd64.whl (288.3 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.6.1-cp34-cp34m-win32.whl (285.6 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.6.1-cp34-cp34m-manylinux1_x86_64.whl (379.7 kB view details)

Uploaded CPython 3.4m

pymongo-3.6.1-cp34-cp34m-manylinux1_i686.whl (373.4 kB view details)

Uploaded CPython 3.4m

pymongo-3.6.1-cp34-cp34m-macosx_10_6_intel.whl (316.0 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.6.1-cp27-cp27mu-manylinux1_x86_64.whl (381.8 kB view details)

Uploaded CPython 2.7mu

pymongo-3.6.1-cp27-cp27mu-manylinux1_i686.whl (372.0 kB view details)

Uploaded CPython 2.7mu

pymongo-3.6.1-cp27-cp27m-win_amd64.whl (288.3 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.6.1-cp27-cp27m-win32.whl (285.3 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.6.1-cp27-cp27m-manylinux1_x86_64.whl (381.7 kB view details)

Uploaded CPython 2.7m

pymongo-3.6.1-cp27-cp27m-manylinux1_i686.whl (372.0 kB view details)

Uploaded CPython 2.7m

pymongo-3.6.1-cp27-cp27m-macosx_10_13_intel.whl (310.1 kB view details)

Uploaded CPython 2.7m macOS 10.13+ intel

pymongo-3.6.1-cp26-cp26mu-manylinux1_x86_64.whl (381.7 kB view details)

Uploaded CPython 2.6mu

pymongo-3.6.1-cp26-cp26mu-manylinux1_i686.whl (371.9 kB view details)

Uploaded CPython 2.6mu

pymongo-3.6.1-cp26-cp26m-win_amd64.whl (288.8 kB view details)

Uploaded CPython 2.6m Windows x86-64

pymongo-3.6.1-cp26-cp26m-win32.whl (285.8 kB view details)

Uploaded CPython 2.6m Windows x86

pymongo-3.6.1-cp26-cp26m-manylinux1_x86_64.whl (381.7 kB view details)

Uploaded CPython 2.6m

pymongo-3.6.1-cp26-cp26m-manylinux1_i686.whl (371.9 kB view details)

Uploaded CPython 2.6m

File details

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

File metadata

  • Download URL: pymongo-3.6.1.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pymongo-3.6.1.tar.gz
Algorithm Hash digest
SHA256 f7ebcb846962ee40374db2d9014a89bea9c983ae63c1877957c3a0a756974796
MD5 0d72c87fb93cea0759529befafefce54
BLAKE2b-256 a3fe826348375bfe2d11c96cdc7b7cbabbd84b8b15b62eb33638ee3241fca5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.6-win-amd64.egg
Algorithm Hash digest
SHA256 051770590ddbd5fb7db17d3315d4c1b0f18039d830dd18e1bae39451c30d31cd
MD5 006e0e52e7aa48acc2de278d42056b93
BLAKE2b-256 a9e3d5d27f77f95248701a60e8ddfc1ba42589b53ea90d5b38400c416123f606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.6-win32.egg
Algorithm Hash digest
SHA256 45fb9f589c0f35436dbe391c53a387ffffa8d086b8521a86fca4f3e1d0edbf71
MD5 4078017dfa0c79e664c027439cb5520c
BLAKE2b-256 495a20b4bdc04362d611db3193c131029aa041a6eafe24f050e5a8faf32a7a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.6-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 e2745dd408a26d4517702d1686afc8e1e1638d2167e857c684f912192cc00dcf
MD5 74dcd37d257ec48cb31217cbd7d02a01
BLAKE2b-256 dccf0c104670d586764b5ada2f06e22698f1f66c1311d2e4a3cc9e140a4de997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 a0a695eef38c15570f6da3b4900e1a1d85fa92c754177d5f05267b49da79c92b
MD5 4bcbaaba0a8a205d3a24b9f289effd54
BLAKE2b-256 22082a1216336fffdc8af79cb90a40a570d979ebcbc382d68a613fb756995c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.5-win32.egg
Algorithm Hash digest
SHA256 63a47a97b5cb4c67c86552b15e08df12ff026a648211120adf5ebe00453e85e9
MD5 6a275b34c0300563b566039acaf9e1f6
BLAKE2b-256 2ab715447273d39070ec30243ddba1d3a39edf7ce435b8586324ccf6aa09e3cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 9e6db7ff63fb836d56e62216e10e868c23a99f3cb02875411eb2cb787acf58c7
MD5 50bf00ca5d40ff5e41cccc5df8f4010d
BLAKE2b-256 b47f90b82c4b2e548796f8ce9b2d93d8d615d2822f759d34910fb15e957f2e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 97d6a218c4ad4f8fdde0143776d5224e884cbcfe631e7446379fa1790d8cf04f
MD5 422b97243440968f31048c0ba1168961
BLAKE2b-256 109e519d05d9c4e6c144a12666b50910d04c186c853caa64b14657f3a808792d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.4-win32.egg
Algorithm Hash digest
SHA256 aa46076524471729430afacca3dd8ad4578878eca6fc9e2b593a0b381b5bbeb7
MD5 8eb4bcd9a2545c0d07db3d462b48f0a8
BLAKE2b-256 8e17fcc6815da4110468dd27aa0e90726bcfcb9de7c08bb506ec7ffa4cba62a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 c596af57286ef28cae7a48e3070d222f96f5f0eab76ad39d680ae6b9bbc957c7
MD5 e135c9ab99e39c3f3da1360094308d48
BLAKE2b-256 635d6d22950440dc2f6e65fab470e1879ae65df0434f48c9d1cb8400e0b44a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 5f2814a9492a724fd77c90ffc01f810276ef9972ae02587bfaae40835f9b8407
MD5 ba32a095143f8e64d55f21a94a4366ec
BLAKE2b-256 75e278187979782cfef6991183b35e344ad6d91fcfcd6f355cec1d3fdbdb8d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 36a992e02fced328de5304145dc3729a8cea12e58ad34b842a6f46d7941c9fc7
MD5 ccfca7de3e5372d9630ba1d795fb6510
BLAKE2b-256 c29a6c1ab3703f8d084b43466cad954774a9c9381e7ed651ed018fec6c0bb7c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py2.7-macosx-10.13-intel.egg
Algorithm Hash digest
SHA256 6c4459d5c2b45ba55e14360e03078426015c1b0881facaec51bd9bd9e2304cec
MD5 bb575e6128c7a9a2623c0bfbf506806a
BLAKE2b-256 859549456c4c1b71ba948e33cc41a6d7d0495153bb48f1615a0756ff59920c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 192ee5e33821931f4ec6df5fff4361220c0c92bb5b7437c6db52e20a0c9b4d98
MD5 1d30072f9e08e5afc2106095b0de9764
BLAKE2b-256 ea5271c11c1f1858edaed05e8fbde69728a26ad8fca2d464a6318ff6bd7e38a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 44abdc26989600bb03b62d57616ec7c1b9182290720167c39e38c3a2b0d44e44
MD5 687df2ada57bfd352bc13cc5383f6dc1
BLAKE2b-256 dbe9ad418f3293aef5a798445c2bf105689f8c5efe7a380c881327565153ac92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4807dfbb5cdcfe0224329992dc48b897c780d0ad7553c3799d34f84ba5cab446
MD5 583a3c3817e5a95997ace1b15ed714d4
BLAKE2b-256 4639b9bb7fed3e3a0ea621a1512a938c105cd996320d7d9894d8239ca9093340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 833bc6cb2ec7058dea9f5840a9314ac74738d2117486a044e88f3976e37ea7a0
MD5 db8868282e6b64272b129301e3883e0c
BLAKE2b-256 c29600951e252c6cad023b3fd60457b2ab1c1329073516086c7ac1b6833a439e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef25c8675f5c8c19832f69cd97d728d99bb4ab9c3b200e28a5c8416631afaf3c
MD5 95e2fec6fcc89ef126863620e1ce5c39
BLAKE2b-256 30f978dd244df932309299288a452d1c3524f6f7746f1813b8a8417952b1d9ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f62a818d643776873713c5676f17bd95ac4176220b13dd12c14edd3a450d1ac9
MD5 889a6c0750baa8e74f0c6163375fff70
BLAKE2b-256 9821dc1614992d3b331c5b6ff98a45db4a3aa21756ced592feb27191b31f8b1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 9e5f0e8967d95a256038817460844a8aab588b9bc9ba6296507a1863960a0e44
MD5 50584ebba55ab864999da1b80afb9d3a
BLAKE2b-256 5c7f1f7240883ec3fa768d7e066c9cbd42ceb42d699ba1a0fb9d231c098a542d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d23498d62063b715078947bef48fa4d34dc354f3b268ed15dc6b46fc809a88e9
MD5 8804da343f6bca477dd605d7560db407
BLAKE2b-256 a06fa5545522c167ffb0c8bd9718cc6724e07913a6e02856fb18fbf9d7f26a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4400fa92af310bf66b76c313c7ded3bb63f3d63b4f43c3bfbff552cf294dc9fa
MD5 8bbe0bc1ae37c48457347231354baa6d
BLAKE2b-256 ef35774f5cdf7a52ab9fc130c954fa83d24c7654b4c3e52b851451667aaac7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07fdee1c5567f237796a8550233e04853785d8dcf95929f96ab519ed91543109
MD5 10d15067edc471cf599142dec41c915b
BLAKE2b-256 5ded569dc31fa8b3defcca05654e6c23b97a152be6b7a5bd427bc7c9be7b139d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 601e00fe7fb283f04c95f5dafb787c0862f48ca015a6f1f81b460c74e4303873
MD5 763cc28a79d4d0850707a74dd9053e6e
BLAKE2b-256 e4daaa4817f3f95de33eb4b4026c89db3ae9750af1d95bc559cb0a824daafbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 2954b99cfeb76776879e9f8a4cae9c5e19d5eff92d0b7b663ceddcf192adb66b
MD5 d53240f2914f2dc428d1652ddc48a92b
BLAKE2b-256 7fd67282f45bd11c757d8dbd9bde3b3d322b1e18dad39f46e4d72223738b37d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 061085dfe4fbf1d9d6ed2f2e52fe6ab72559e48b4294370b433751638160d10b
MD5 3e48d23135045519d6e0e2c231940fc1
BLAKE2b-256 bd51ab93ed80059d0f068016e0cffd42917f756259486eaea9c51883b5c671fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 cc15b30f0ac518e6cbd4b6e6e6162f8aa14edfe255d0841146f146151bd58865
MD5 a34d1ef0410dd592b285845e697f5e57
BLAKE2b-256 b3587e4b8384c1fb6440a84b3a62e528841642b9634c869205bae058557019e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0d98731aaea8cb32b535c376f6785927e4e3d9459ffe1440b8a639827a849350
MD5 572da22c9c6d55d5295446f47430fea9
BLAKE2b-256 9d5ba9cd276fd6f5b61be0c3b72fcdd908b317746ffc1dd1986d88c6dc6e6d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae7b3479822a03f6f651913de84ba67101f23e051ae88034085e974f472dcfff
MD5 f561cf0f975b6b50857a567b388a9ab6
BLAKE2b-256 142c123d1b426f713c35f93a2626c97775bb474e14e09661bcac1659bf0bd4aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 7ffac35362c07c103b024b89875e8d7f0625129b65c56fa8a3ecebbd56110405
MD5 679b92ea091c703dfa0fa17011e86b39
BLAKE2b-256 d25dc33a02ae6cfc2bc7b2c6ae1e8ed14814f565ac67753d78355923a6c8cd64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5fd6ce5ed3c6c92d2c94756e6bf041304e5c7c5a5dbea31b8957d52a78bdf01d
MD5 1e65f75f0bb7e42a82861e7a4897520e
BLAKE2b-256 db5a77060da2196471c8c47eeed6526029bd35cb2f10b1e4fc0e5e5234ca1aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 419ed5d5b76ef304815f354d9df7f2085acfd6ff7cc1b714ca702e2239b341c2
MD5 a78ada6eba2527ace308b5286ee48b45
BLAKE2b-256 93ce0d4b2e6be5d33e808e320d81ce8203aa1b828772480b25733d3d7e0eca41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 7fbd9233e8b6741b047c5857e2ad5efb74091f167d7fa8a2a3379217165058f9
MD5 7c0bc29bf7f93669a29216ac151448f4
BLAKE2b-256 db6ff021f83748fb1e63e327a3ce5ee5a4a190403bd6418c810e5a4adfd00ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 adb2dba52c8a2a2d7bcd3b267f7bbf7c822850cf6a7cd15211b9f386c3a670ef
MD5 cf705c22ccca9b22723de5a0708f20fd
BLAKE2b-256 f9a704d78be898a1eb431cea55f38fb1ae366d8c3c093c546d925da88b3f2eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 10f683950f70626ccedf4a662d1c0b3244e8e013c2067872af5633830abd1bfd
MD5 1fde5e26e810a2d6028325c73eec54d8
BLAKE2b-256 88a1a50c19ce78b94f8f837b207a740a9ad14cb4304d3d8a655a902dd21da8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 54daf67e1e7e7e5a5160c86123bdd39b1d3b25876c2ab38230dc2a764cb3d98f
MD5 efea5cd60166d0de6453895d657ff5fa
BLAKE2b-256 283dc6deb02a1c8e3676b7d3d52eacfaffcbf3251ca61686c3eff2c0157aa688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp27-cp27m-macosx_10_13_intel.whl
Algorithm Hash digest
SHA256 92cb26a2a9b38e8df5215803f950b20a6c847d5e00d1dd125eaa84f05f9472d7
MD5 d93e01d7ad9bbee8c34cc9de6ac3ff34
BLAKE2b-256 036d515ac2147879202302a3e33b80a448e5481e9ee43789514e27401a7f0855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp26-cp26mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ecb11113407d919f8714cc7d0841985044633d0b561ef3d797e1b494a3e73537
MD5 db8f4ff0eefa39b7fb132ecc27c941bb
BLAKE2b-256 1b067e77484e07545d9dc2576ef295885dff099a94cfe5c0adc486ca39ef44dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp26-cp26mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 abf83b908e535b1386a7732825994e6e36eff6394c1829f3e7a23888136484fa
MD5 fd219afa922f2039fe57507e81561e43
BLAKE2b-256 3518a42b0ebebf57295cb96ee4c8e92d3148878549cec8a3980178a5c8414c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp26-cp26m-win_amd64.whl
Algorithm Hash digest
SHA256 ece2c2add66d3ec2720a963bf073ca11fc3b0b58159767fc3bc5ddaad791d481
MD5 0533aadb6f8447e946a159e52f717aa0
BLAKE2b-256 02d65df0e370bb851486bddabc49af9b69055e94b84822668ae4eb84513c8f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp26-cp26m-win32.whl
Algorithm Hash digest
SHA256 42ec201fd9a26e7c1e611e3db19324dead51dd4646391492eb238b41749340e8
MD5 62f8a693576143fab03e6b82e82fb566
BLAKE2b-256 a63782c1b1e2fca951d5487ee3cb9e5e0f51a24c93422a9e8fec9cb750abf751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp26-cp26m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e53ad0cc6c489f83e7f6bb6121aa73bb6f6488410024a3bd77c16af1aa3a1000
MD5 34b46ff6a838feaa2d4fb0fb2c84f272
BLAKE2b-256 fbdb3dc385e52e35e44af06e3334f3aab521a89ff5bfe120cabdf83491eae1d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.6.1-cp26-cp26m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd29bb5bc9068ccc248c8c145efd839421f04363b468b47cfa2d4902ca369afe
MD5 45214b148d3728586d42fb2e2eeb8d4d
BLAKE2b-256 a462d510b87b316c712527d39821eb5797f29599d7a8b45207e4e3056ffbcbb9

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