Skip to main content
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. 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 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

Release files for pymongo 3.6.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pymongo 3.6.0
File Size Uploaded
pymongo-3.6.0.tar.gz 581.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 3.6.0
File
pymongo-3.6.0-py3.6-win-amd64.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.6-win32.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.6-macosx-10.6-intel.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.5-win-amd64.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.5-win32.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.5-macosx-10.6-intel.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.4-win-amd64.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.4-win32.egg Legacy Egg format - - Details
pymongo-3.6.0-py3.4-macosx-10.6-intel.egg Legacy Egg format - - Details
pymongo-3.6.0-py2.7-win-amd64.egg Legacy Egg format - - Details
pymongo-3.6.0-py2.7-win32.egg Legacy Egg format - - Details
pymongo-3.6.0-py2.7-macosx-10.12-x86_64.egg Legacy Egg format - - Details
pymongo-3.6.0-py2.6-win-amd64.egg Legacy Egg format - - Details
pymongo-3.6.0-py2.6-win32.egg Legacy Egg format - - Details
pymongo-3.6.0-py2.6-macosx-10.12-intel.egg Legacy Egg format - - Details
pymongo-3.6.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pymongo-3.6.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pymongo-3.6.0-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.6.0-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.6.0-cp36-cp36m-macosx_10_6_intel.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.6.0-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
pymongo-3.6.0-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
pymongo-3.6.0-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.6.0-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.6.0-cp35-cp35m-macosx_10_6_intel.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.6.0-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
pymongo-3.6.0-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
pymongo-3.6.0-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.6.0-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.6.0-cp34-cp34m-macosx_10_6_intel.whl CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.6.0-cp27-none-macosx_10_12_x86_64.whl CPython 2.7 none macOS 10.12+ x86-64 Details
pymongo-3.6.0-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
pymongo-3.6.0-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.6.0-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
pymongo-3.6.0-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
pymongo-3.6.0-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.6.0-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.6.0-cp27-cp27m-macosx_10_13_intel.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.13+ Intel (x86-64, i386) Details
pymongo-3.6.0-cp26-cp26mu-manylinux1_x86_64.whl CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
pymongo-3.6.0-cp26-cp26mu-manylinux1_i686.whl CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.6.0-cp26-cp26m-win_amd64.whl CPython 2.6 CPython 2.6 pymalloc Windows x86-64 Details
pymongo-3.6.0-cp26-cp26m-win32.whl CPython 2.6 CPython 2.6 pymalloc Windows x86-32 Details
pymongo-3.6.0-cp26-cp26m-manylinux1_x86_64.whl CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.6.0-cp26-cp26m-manylinux1_i686.whl CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.6.0-cp26-cp26m-macosx_10_12_intel.whl CPython 2.6 CPython 2.6 pymalloc macOS 10.12+ Intel (x86-64, i386) Details

Total release size: 19.5 MB

Release files / pymongo-3.6.0.tar.gz

Download URL pymongo-3.6.0.tar.gz
Size 581.3 kB
Tags Source
SHA-256 checksum
How to use checksums
c6de26d1e171cdc449745b82f1addbc873d105b8e7335097da991c0fc664a4a8
BLAKE2b-256 checksum
How to use checksums
698a2384c55f4bd494eeb6104a9b35c36714ba1178dcd08ee5a73b92eed3d8c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.6-win-amd64.egg

Download URL pymongo-3.6.0-py3.6-win-amd64.egg
Size 585.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
eeaf83db38425913283cf2db6caeb4c85911d3923615ea7d5b752e5ad49914ec
BLAKE2b-256 checksum
How to use checksums
d5bdb49f1382f4949d2b42dfd24b22d97077a8e45014918bab804e85ae1f19e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.6-win32.egg

Download URL pymongo-3.6.0-py3.6-win32.egg
Size 580.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
ff14210232acff8a236244551834e643484ff621638c74590aa0583d3c36cc31
BLAKE2b-256 checksum
How to use checksums
732e4ae421044914108d29e9534b540baa18a40737ee6f1a0c881aef4f0cd92a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.6-macosx-10.6-intel.egg

Download URL pymongo-3.6.0-py3.6-macosx-10.6-intel.egg
Size 610.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
02180988dc858739a856e9f77276298c6015e6fa9e87a6ad6362f679b2e5c2bb
BLAKE2b-256 checksum
How to use checksums
cdd03d0336511f7f1f603c6a48b832a6da2680bb5b054748ef3de1186b383d30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.5-win-amd64.egg

Download URL pymongo-3.6.0-py3.5-win-amd64.egg
Size 593.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
a1b2926be8aff7e641ab622991f77bb9c546268d416277b1fb5efd6305206e46
BLAKE2b-256 checksum
How to use checksums
ccb7efd1f6aa8d3c875410ded5ac974addb66f426699c6cdb1080818cdbeef77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.5-win32.egg

Download URL pymongo-3.6.0-py3.5-win32.egg
Size 588.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
99416866f7a8f6eb7bfb696eedb1153ef204a67a8ce18d8cddf0c93e16010d43
BLAKE2b-256 checksum
How to use checksums
48c415b969fc54c675dc495f28af7ea620858ff384e7ab4c7c3a93061604d6c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.5-macosx-10.6-intel.egg

Download URL pymongo-3.6.0-py3.5-macosx-10.6-intel.egg
Size 618.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
6e53318801aed1abf4a41d94c4cea2b89749b706ed9a79599d69df5b70ffc175
BLAKE2b-256 checksum
How to use checksums
374dd944b71d2ce3b9fddf02dba1821facffa84c6dc017f3deef43e3fc83e18f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.4-win-amd64.egg

Download URL pymongo-3.6.0-py3.4-win-amd64.egg
Size 592.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
3cd107632808d1b94da6591f3bf2579ba88333650a6537b7655882487a8caac4
BLAKE2b-256 checksum
How to use checksums
694f17921038db616297874e5dd17b0518f7eaea368dd8c5df12ce3ed554d773
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.4-win32.egg

Download URL pymongo-3.6.0-py3.4-win32.egg
Size 588.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
6fae8c918c9f66ccfa15a7bc3b92fb9e095302f8bb7789ee59eb05b7d8c618fa
BLAKE2b-256 checksum
How to use checksums
dfbcad3a161059050817014e898018748bda687f639b93cc90cb571a43057d97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py3.4-macosx-10.6-intel.egg

Download URL pymongo-3.6.0-py3.4-macosx-10.6-intel.egg
Size 620.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
3ab86827cfc1283300cd050bad185840b150877ad5b324053f7a9455ee6e596f
BLAKE2b-256 checksum
How to use checksums
a86e6080bd49b1ae044a74b7ab2c88600ed4eda869e59b2a5b6427cea55351ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py2.7-win-amd64.egg

Download URL pymongo-3.6.0-py2.7-win-amd64.egg
Size 581.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
c438452261daac308c0a19c7dfa46aeee1a93896611b483879865a0aa1615cc5
BLAKE2b-256 checksum
How to use checksums
7c8630c6d1e5aefce50776d1dd9061e742662a16873c5cba89da33ac12f4386a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py2.7-win32.egg

Download URL pymongo-3.6.0-py2.7-win32.egg
Size 578.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
4568c460343f724e8944078ab165fa54d9e33fdb1867f1e3d1e231f8ca4368a6
BLAKE2b-256 checksum
How to use checksums
2352449921b3e498488d314ea83a06c4486b91a6e237031837d69bcfcdf47608
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py2.7-macosx-10.12-x86_64.egg

Download URL pymongo-3.6.0-py2.7-macosx-10.12-x86_64.egg
Size 579.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
7a5fc9aead0fd4946607279ef34f379e312716abfae53e6fa6603ae3eec4308a
BLAKE2b-256 checksum
How to use checksums
b1c7ccddd805ea65af2822fedbbced92f25f032117909843f28751e1f198990c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py2.6-win-amd64.egg

Download URL pymongo-3.6.0-py2.6-win-amd64.egg
Size 583.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
1f865cb1999dce298746c84608ba8f2401e186691f6560a3401d812b3fdba74f
BLAKE2b-256 checksum
How to use checksums
d971f016b9f3121ebccedbc1ba6463df58892ac4aa219971ffd9014c85f38cdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py2.6-win32.egg

Download URL pymongo-3.6.0-py2.6-win32.egg
Size 580.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
4a69850e3d5d19e3b97918de5a19f1dacd1c08a0fe8df55221fe47a2ea767931
BLAKE2b-256 checksum
How to use checksums
b35ab77ac99d3c33b8f73bd473181dcc53808c03aa5d9e48982f9ab0971c6092
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-py2.6-macosx-10.12-intel.egg

Download URL pymongo-3.6.0-py2.6-macosx-10.12-intel.egg
Size 605.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
3b49f5979e1c4603b19b3805032a1a5abaecbc0f54dc765ba1b663e765711baf
BLAKE2b-256 checksum
How to use checksums
ced76de34b4bd4605c699dbb3405d8fd290e63723170d821a9dffdc5f0f78a40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp36-cp36m-win_amd64.whl

Download URL pymongo-3.6.0-cp36-cp36m-win_amd64.whl
Size 291.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
01dd4d25dc0fad15db3b384d04ac6cc1f75b56b48afd0a85a8d8207b44b741bb
BLAKE2b-256 checksum
How to use checksums
9e86003c793b914de7c2831b8630a329657669758ba2bf8039cd404d0b37f951
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp36-cp36m-win32.whl

Download URL pymongo-3.6.0-cp36-cp36m-win32.whl
Size 285.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
634dc6e204f2dedfae18a095790e3baba6b071dbe0660b2b3af0f21ea0215cd4
BLAKE2b-256 checksum
How to use checksums
0fc62053c5977cd5954f4d1f8dd8677ebc05595dddf864c7777350e7b44bbd5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp36-cp36m-manylinux1_x86_64.whl

Download URL pymongo-3.6.0-cp36-cp36m-manylinux1_x86_64.whl
Size 378.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ea876d43fdeefebf8afa18cd647efa7b930eb8a4719ebdb1a8106cc51c446437
BLAKE2b-256 checksum
How to use checksums
c184068994d5d24e7e3012f1ab1937e0b15af712a6c5788c77d17ea9d096d12f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp36-cp36m-manylinux1_i686.whl

Download URL pymongo-3.6.0-cp36-cp36m-manylinux1_i686.whl
Size 373.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
18fa5c2ebb23c8f34f30a5c764ada19621a4523f83aeeb8df9fc19ecfe76f838
BLAKE2b-256 checksum
How to use checksums
295a249444445cf8137d9dae666d121590dfa358965d2da9632441ea20111076
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp36-cp36m-macosx_10_6_intel.whl

Download URL pymongo-3.6.0-cp36-cp36m-macosx_10_6_intel.whl
Size 315.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
fa1449e2a6cd96dfadf66530ba203fadfbcf54a4724628dac4104fc292b06477
BLAKE2b-256 checksum
How to use checksums
0d671eb6eda8d1e5e03ef8ce439c4f4e53f1206dcfcaa07bba92c28490fcc349
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp35-cp35m-win_amd64.whl

Download URL pymongo-3.6.0-cp35-cp35m-win_amd64.whl
Size 291.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
adb7b6cf1bb6908cbe5b2e131e2cc22c707fbf0f9f0f27878494834683b997a2
BLAKE2b-256 checksum
How to use checksums
fcef9cd93f2e17ea339fd12f32802d260001d597f12d308d83da19afbff9a63c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp35-cp35m-win32.whl

Download URL pymongo-3.6.0-cp35-cp35m-win32.whl
Size 285.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
456b96c606147cea58f9316092b1ac8a239e891a1e8644a932e8a3c9cafec155
BLAKE2b-256 checksum
How to use checksums
d965f8bede7606407a457ed847407f8d516c3f06fef3770db14d2e15bbbaeec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp35-cp35m-manylinux1_x86_64.whl

Download URL pymongo-3.6.0-cp35-cp35m-manylinux1_x86_64.whl
Size 378.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f90b14d3c833c3d588066fec3334d5c1648a7cfee4e279dc1e553ec13082559b
BLAKE2b-256 checksum
How to use checksums
6bb9bba2404bc6c5bb7463594ef18e4e29634d8f1585d3a8414c77dceef3853f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp35-cp35m-manylinux1_i686.whl

Download URL pymongo-3.6.0-cp35-cp35m-manylinux1_i686.whl
Size 372.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
99c794e427ff9cb50d7bd9ec52c4f1b89a8318f37b4ccbefdce446a7f4ec5f7c
BLAKE2b-256 checksum
How to use checksums
44c0654631eadea1c46c8f5fc0a6a3a486372b4fc51116aa8e9e866a8432c14e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp35-cp35m-macosx_10_6_intel.whl

Download URL pymongo-3.6.0-cp35-cp35m-macosx_10_6_intel.whl
Size 315.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
ef1fb8ebbc0a0d1c92f6a2da4602e7ea10863fd546854d168c6638a0976e79fd
BLAKE2b-256 checksum
How to use checksums
d5e26b9b4c44dfabed4287c200bfda9c038a8e604aa694224af65a68ee384822
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp34-cp34m-win_amd64.whl

Download URL pymongo-3.6.0-cp34-cp34m-win_amd64.whl
Size 287.9 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
20769fd9bc0837e7334ad2c6c06953024b415dbed09fd59d6a61feeb29a6fe30
BLAKE2b-256 checksum
How to use checksums
54b534c214e7f5aff3c0e2a318928a5159f365810729a6e42f57e80755815b89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp34-cp34m-win32.whl

Download URL pymongo-3.6.0-cp34-cp34m-win32.whl
Size 285.1 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
9162ebfca987ddf1dead8406e9b5bab3a68444b13fdd5aed9eca8bdec01a58f4
BLAKE2b-256 checksum
How to use checksums
07d541f8bea9949f7529e9b6d590079926b5f3e3a8b3854b8d6d8d26ee120ae8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp34-cp34m-manylinux1_x86_64.whl

Download URL pymongo-3.6.0-cp34-cp34m-manylinux1_x86_64.whl
Size 379.3 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
63d64859599b3ddc85ae7a211051e12ed956ce1deeaddc2c620fa323b6dfa97f
BLAKE2b-256 checksum
How to use checksums
e5040cd822fe1ce8b2f1c3c4d3cbc85f7ad07af3a2aa807064e651572908a6af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp34-cp34m-manylinux1_i686.whl

Download URL pymongo-3.6.0-cp34-cp34m-manylinux1_i686.whl
Size 373.1 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b20de0b3b796f2ff2dddf14aba911bc429911583b8bbbaee2976e7fce7a56d56
BLAKE2b-256 checksum
How to use checksums
22e34bb391192760c7a398cf5e8e5dd75c0641f28d30b79304a2feb1007a7f74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp34-cp34m-macosx_10_6_intel.whl

Download URL pymongo-3.6.0-cp34-cp34m-macosx_10_6_intel.whl
Size 315.6 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
2dd5b261b00adffce993dc5ffd0feb94368e1657eb16edeed62ae8fe142ac34e
BLAKE2b-256 checksum
How to use checksums
7f933e91a5f03d77814fb17d909e618f9875759b192eae794b23ff8aa4d45f81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-none-macosx_10_12_x86_64.whl

Download URL pymongo-3.6.0-cp27-none-macosx_10_12_x86_64.whl
Size 285.5 kB
Tags CPython 2.7 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
66afa84a953e0e59d1f60bb05f25202759b9a606c748ee410b96763152cfd11a
BLAKE2b-256 checksum
How to use checksums
8f8306eb0f68757a3e942b7d4cc4c011ba5784f15bbede0aaa469531b4581ab5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-cp27mu-manylinux1_x86_64.whl

Download URL pymongo-3.6.0-cp27-cp27mu-manylinux1_x86_64.whl
Size 381.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8c360dba39dce961d1e3b5af048612d17575f62abf889b9ddd74ab52d9026ed9
BLAKE2b-256 checksum
How to use checksums
908b4ab711bcf19363b54ae7e64c5d7e4fd932ca1af2b41d4d52e542ddfe8740
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-cp27mu-manylinux1_i686.whl

Download URL pymongo-3.6.0-cp27-cp27mu-manylinux1_i686.whl
Size 371.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d8a81a7d611936931145fa759cfacf99ff755d16e2d336677af439e128613da1
BLAKE2b-256 checksum
How to use checksums
6a7192818e99328ae55f0ecfcf425bc6b276c2989aeec9630f1d744549919e97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-cp27m-win_amd64.whl

Download URL pymongo-3.6.0-cp27-cp27m-win_amd64.whl
Size 287.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
1ee151105631724db9616dd2e083d7c28141c3fedc3d71c12bace5466621f785
BLAKE2b-256 checksum
How to use checksums
20e252cbd3a1c105ef39d0bd81dbf50da81d7ec434130cfb3982321bde1d81ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-cp27m-win32.whl

Download URL pymongo-3.6.0-cp27-cp27m-win32.whl
Size 284.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
dd93e47651d7a7a63c32d0c8f5d6e6c50d99b7a0f2ef08a4237727d89dac8f4e
BLAKE2b-256 checksum
How to use checksums
6845989d0cd95b371c6165d931b310745efd071da60534a74cb27eeddc04df52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-cp27m-manylinux1_x86_64.whl

Download URL pymongo-3.6.0-cp27-cp27m-manylinux1_x86_64.whl
Size 381.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
480addc4e9b87877d0508d64a5f2489448358537e94476f6341538981aef6e8f
BLAKE2b-256 checksum
How to use checksums
df66bb9a1b038b4a01571201d82667504a5e25ef712d5e9ca2c64a7b2c373734
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-cp27m-manylinux1_i686.whl

Download URL pymongo-3.6.0-cp27-cp27m-manylinux1_i686.whl
Size 371.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6de8a60ce357b36bfee923abcea29ede2906fa88cdc426d078e8fbb9b00efaa8
BLAKE2b-256 checksum
How to use checksums
c4e32971bc3ed804d1b9ffdab6d8040f1a46543725903672a40853517635f0e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp27-cp27m-macosx_10_13_intel.whl

Download URL pymongo-3.6.0-cp27-cp27m-macosx_10_13_intel.whl
Size 309.7 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.13+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
db739c3323e4b5abd4778a2b3c73b7582c5ceadb40612e0dcc20fbc1abb538a3
BLAKE2b-256 checksum
How to use checksums
ffd81bf7d3f5f3ecb98a84b6705bd9434ebca3a76b2b943afff5f6b99ee5e04b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp26-cp26mu-manylinux1_x86_64.whl

Download URL pymongo-3.6.0-cp26-cp26mu-manylinux1_x86_64.whl
Size 381.2 kB
Tags CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
82498737ef6c1ed6982b819eeac7fc241a581e7ac0eb73bea21bd4888e6e0530
BLAKE2b-256 checksum
How to use checksums
d5a598f51c991500c7394dc9001d6a4de0343dcccfd97d55f2b24f4351707b60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp26-cp26mu-manylinux1_i686.whl

Download URL pymongo-3.6.0-cp26-cp26mu-manylinux1_i686.whl
Size 371.5 kB
Tags CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8c235432ddc354382ef9cce1e852d3c55ade84f661bcb617f2d095476d2927c4
BLAKE2b-256 checksum
How to use checksums
554885a426b9da513789a745336681ae7d1cb925a47fa266b7dd5f3b14c93a77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp26-cp26m-win_amd64.whl

Download URL pymongo-3.6.0-cp26-cp26m-win_amd64.whl
Size 288.4 kB
Tags CPython 2.6 CPython 2.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
595b2b780e5b17e95eac1c5a8935a673742186849cd73bde6706b76b7de8d1ef
BLAKE2b-256 checksum
How to use checksums
d4557707bc93ade402332c1918be5d6fe7dd51c13794d345f7efd751f827f9d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp26-cp26m-win32.whl

Download URL pymongo-3.6.0-cp26-cp26m-win32.whl
Size 285.4 kB
Tags CPython 2.6 CPython 2.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
914ae20e5f3574135ae270d69bd7e8cfdaacbfc561c47e587dee0dcbada3a3a2
BLAKE2b-256 checksum
How to use checksums
b87d11281f18356b04a5e2afd3bc530cd59955df6c4b1f02be9983033bc15289
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp26-cp26m-manylinux1_x86_64.whl

Download URL pymongo-3.6.0-cp26-cp26m-manylinux1_x86_64.whl
Size 381.2 kB
Tags CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f21caa2aae45ebfc420bc2631acf2c8de0e8384b14565c415c2fae9dc7aacdf9
BLAKE2b-256 checksum
How to use checksums
ff65d60295bf0d5a77eef1a3b32654f681149713e78801b03cab87b43818d43f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp26-cp26m-manylinux1_i686.whl

Download URL pymongo-3.6.0-cp26-cp26m-manylinux1_i686.whl
Size 371.5 kB
Tags CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
59cf6f39042acd8062cc5c685838fb1532bb6424992ac757ceec742452d5a1bc
BLAKE2b-256 checksum
How to use checksums
97000b455a27170ed0c7cc094df3fc0bb7261e8037049d7f48fd2cbae21a6679
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.6.0-cp26-cp26m-macosx_10_12_intel.whl

Download URL pymongo-3.6.0-cp26-cp26m-macosx_10_12_intel.whl
Size 309.6 kB
Tags CPython 2.6 CPython 2.6 pymalloc macOS 10.12+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
54e5a5e70ca8afe38f517746ace4d20f5d814de16d5734299a18a664feb47a3f
BLAKE2b-256 checksum
How to use checksums
3d216c6a15982122ffa6ef68b556819202663cbe8d07bfc6b12b14f8102a147c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

4.11

45 release files

4.9.1

59 release files

4.9

59 release files

4.8.0

50 release files

4.7.1

60 release files

4.7.0

60 release files

4.6.3

82 release files

4.6.2

82 release files

4.6.1

82 release files

4.5.0

82 release files

4.4.1

74 release files

4.4.0

74 release files

4.3.3

74 release files

4.3.2

74 release files

4.2.0

67 release files

4.1.1

83 release files

4.0

83 release files

3.9.0

31 release files

3.8.0

31 release files

3.7.2

39 release files

3.7.1

47 release files

3.7.0

44 release files

This release

3.6.0 This release

46 release files

3.5.1

53 release files

3.4.0

49 release files

3.3.1

53 release files

3.3.0

44 release files

3.2.2

61 release files

3.2

61 release files

3.1.1

61 release files

3.1

61 release files

3.0.2

48 release files

3.0.1

49 release files

3.0

49 release files

2.9.5

41 release files

2.9.4

56 release files

2.9.3

67 release files

2.9.1

67 release files

2.9

63 release files

2.8.1

55 release files

2.8

55 release files

2.7.2

56 release files

2.7.1

56 release files

2.7

56 release files

2.6.3

29 release files

2.6

29 release files

2.5.1

34 release files

2.5

34 release files

2.4.2

34 release files

2.4

34 release files

2.3

28 release files

2.2

25 release files

2.1

21 release files

2.0.1

19 release files

2.0

20 release files

1.11

13 release files

1.10

13 release files

1.9

9 release files

1.8.1

8 release files

1.8

8 release files

1.7

8 release files

1.6

6 release files

1.5.2

6 release files

1.5.1

6 release files

1.5

6 release files

1.4

6 release files

1.3

6 release files

1.2.1

6 release files

1.2

6 release files

1.1.2

6 release files

1.1.1

4 release files

1.1

6 release files

1.0

6 release files

0.16

6 release files

0.15

7 release files

0.14.2

6 release files

0.14.1

5 release files

0.14

5 release files

0.13

5 release files

0.12

5 release files

0.11.3

5 release files

0.11

2 release files

0.10.3

2 release files

0.10.2

2 release files

0.10.1

2 release files

0.10

2 release files

0.9.7

2 release files

0.9.6

2 release files

0.9.5

2 release files

0.9.4

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9

2 release files

0.8.1

2 release files

0.8

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7

2 release files

0.6

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page