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

Release files for pymongo 3.7.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.7.0
File Size Uploaded
pymongo-3.7.0.tar.gz 626.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 3.7.0
File
pymongo-3.7.0-py3.7-macosx-10.9-x86_64.egg Legacy Egg format - - Details
pymongo-3.7.0-py3.6-win-amd64.egg Legacy Egg format - - Details
pymongo-3.7.0-py3.6-macosx-10.9-x86_64.egg Legacy Egg format - - Details
pymongo-3.7.0-py3.5-win32.egg Legacy Egg format - - Details
pymongo-3.7.0-py3.5-macosx-10.6-intel.egg Legacy Egg format - - Details
pymongo-3.7.0-py3.4-win-amd64.egg Legacy Egg format - - Details
pymongo-3.7.0-py3.4-macosx-10.6-intel.egg Legacy Egg format - - Details
pymongo-3.7.0-py2.7-win-amd64.egg Legacy Egg format - - Details
pymongo-3.7.0-py2.7-win32.egg Legacy Egg format - - Details
pymongo-3.7.0-py2.7-macosx-10.13-intel.egg Legacy Egg format - - Details
pymongo-3.7.0-py2.6-win-amd64.egg Legacy Egg format - - Details
pymongo-3.7.0-py2.6-win32.egg Legacy Egg format - - Details
pymongo-3.7.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymongo-3.7.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymongo-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
pymongo-3.7.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pymongo-3.7.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pymongo-3.7.0-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.7.0-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.7.0-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
pymongo-3.7.0-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
pymongo-3.7.0-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
pymongo-3.7.0-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.7.0-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.7.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.7.0-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
pymongo-3.7.0-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
pymongo-3.7.0-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.7.0-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.7.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.7.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.7.0-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.7.0-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
pymongo-3.7.0-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
pymongo-3.7.0-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.7.0-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.7.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.7.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.7.0-cp26-cp26mu-manylinux1_i686.whl CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.7.0-cp26-cp26m-win_amd64.whl CPython 2.6 CPython 2.6 pymalloc Windows x86-64 Details
pymongo-3.7.0-cp26-cp26m-win32.whl CPython 2.6 CPython 2.6 pymalloc Windows x86-32 Details
pymongo-3.7.0-cp26-cp26m-manylinux1_x86_64.whl CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.7.0-cp26-cp26m-manylinux1_i686.whl CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-32 Details

Total release size: 19.3 MB

Release files / pymongo-3.7.0.tar.gz

Download URL pymongo-3.7.0.tar.gz
Size 626.8 kB
Tags Source
SHA-256 checksum
How to use checksums
3327afb38017ac1de32e4ca3a6c8edb1fe19d6024771609590684d3a37e7c250
BLAKE2b-256 checksum
How to use checksums
38c593e3b26f6354e85ca7738b7e53435faa0da58c1ad495afc06ae86655bad8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.7.0-py3.7-macosx-10.9-x86_64.egg

Download URL pymongo-3.7.0-py3.7-macosx-10.9-x86_64.egg
Size 631.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
2fa9d8292b93716dfaed09701a7129704cf290dd7a3a7e057563dee4e805934a
BLAKE2b-256 checksum
How to use checksums
0788c33cb1ed5f6e0ebbeb59c604f7a562a521a90b09d302d6d4db433847b597
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py3.6-win-amd64.egg
Size 633.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
9785f19100e5b3422ce93c1455d5344484967cc6871a642a333ecf3554524398
BLAKE2b-256 checksum
How to use checksums
bc78d3e125ad0b9ff01c80da1d09d1ee9b0cdd5e03e1afdb5884117a573fd93e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.7.0-py3.6-macosx-10.9-x86_64.egg

Download URL pymongo-3.7.0-py3.6-macosx-10.9-x86_64.egg
Size 631.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
74b829a8ad20715f02b1ba4d5e777d60c0500acc69377e802e19e1943d3f1a81
BLAKE2b-256 checksum
How to use checksums
ae4eaf601236f8882884b1bd88e4ab80603d11e1a9ef6cee31ee8200b724f979
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py3.5-win32.egg
Size 635.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
86a3e9fe14e2d46aa2e349378732b917718bd03d5317f917cd9363ea5e29c234
BLAKE2b-256 checksum
How to use checksums
56ae7f2b9be1a52290608f1869e00a67515083168e90c97ee120563a75eb14d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py3.5-macosx-10.6-intel.egg
Size 674.3 kB
Tags Egg
SHA-256 checksum
How to use checksums
814919d3f66da8f9dc3d5df014c0699ec1698653f1829c588bfe251dda444782
BLAKE2b-256 checksum
How to use checksums
968db34a1f08e056a68183dd446464918b6a73efb8dcab1218b92cc56c29fa9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py3.4-win-amd64.egg
Size 640.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
bce845a8efdcfae71dcaa52ff278a026fcf37afb64878c231129a264ef3afd2f
BLAKE2b-256 checksum
How to use checksums
bf5c5be42efa68ada9fe3f78ea6e990c6545e6405553cdc2331a22081cf107e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py3.4-macosx-10.6-intel.egg
Size 675.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
af3c32dd771e91e8e02335e13ebc618b740b034aabf99bd417c4fb768acc8c4c
BLAKE2b-256 checksum
How to use checksums
00ba7de6f243b265c816dd8540d9324da920072c6905a7f9f09559aae9e331a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py2.7-win-amd64.egg
Size 629.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
30928492147298754428e045a4e790a4dd91d0d834754cf0d556310aca270080
BLAKE2b-256 checksum
How to use checksums
4969b3335edb628d67e8350224f047e96a48bb6be49ce69065b0781e305e7bb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py2.7-win32.egg
Size 627.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
fcbd07bfc085a5b17141071d5ddcf087a96fed69ecbbd1d67d305f836214c195
BLAKE2b-256 checksum
How to use checksums
8feebe6697b897001db94c569289fd7bd9407179a7c8e5de72ba79b599c66efd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.7.0-py2.7-macosx-10.13-intel.egg

Download URL pymongo-3.7.0-py2.7-macosx-10.13-intel.egg
Size 656.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
c6490e2f22279cbe2090cd6075e375f3d7396a8deaf9efc38061cfe3ab15e158
BLAKE2b-256 checksum
How to use checksums
a6d9cde2fc75e832eaec1f048688f4bf32f4bd35994e76bffcfe43527aa6b539
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py2.6-win-amd64.egg
Size 631.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
1e385e45d5aed6fd5294da1f9b71d33dcd812887f9e17410cbf83c324270fbbd
BLAKE2b-256 checksum
How to use checksums
388b434cf7823e69bce42953e57ddf3e317f01c138ca1b18814217c2de59fb37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-py2.6-win32.egg
Size 629.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
7e4246dda4e80a60c4d594fb79fa8eccbdbc14561b08093b67c0cd05059b08b3
BLAKE2b-256 checksum
How to use checksums
1b51ae6b92d3315b973c632566e2ab86c5b3facd0ff885b115324c55fe8aba82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.7.0-cp37-cp37m-win_amd64.whl

Download URL pymongo-3.7.0-cp37-cp37m-win_amd64.whl
Size 311.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
5170ef12426d355a490840dc7f2b69602e92a4c57cca27ef59d1c371dfab6c0e
BLAKE2b-256 checksum
How to use checksums
f82e6b3ee48383e1a0fe3151a4f5d610983dbfcfb9ba4825204cc55f38da179d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.7.0-cp37-cp37m-win32.whl

Download URL pymongo-3.7.0-cp37-cp37m-win32.whl
Size 305.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
252cecc7e204106de8b61aacf3e00a5c31ebd2548b027a675ef339d3df9428d6
BLAKE2b-256 checksum
How to use checksums
d740c8015b043c503708db720ee4d7623799c0c368c61de9f1cdd1e7a291113d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pymongo-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Size 306.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8e889b1256a6aac3f64d9e7369a3fbcb3dce9389d4145cb7f0f7439071f0739e
BLAKE2b-256 checksum
How to use checksums
73e87b85214208849f9fed2d21fc371fe61d3a87fbebf8a5f8d410cb173708f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp36-cp36m-win_amd64.whl
Size 309.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f4b400ae8464d878b3297fb0e37f425f6f3b4343ca728b16a8bfa86b10e8c7c4
BLAKE2b-256 checksum
How to use checksums
0f54ec07858c625460027536aefe8bbe1d0f319b62b5884ec8650e1c2649dccb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp36-cp36m-win32.whl
Size 309.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
ef156326eb692bcc7a278298a69c90bcde72f0ac4edb3099082265d7b947c339
BLAKE2b-256 checksum
How to use checksums
3bd90e7116130b1090478a99ba3e23b47964533d394e9c552b1d8619c67baa56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

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

Release files / pymongo-3.7.0-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL pymongo-3.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
Size 310.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0ab6f1917a9226459c9ecb1af879a853aae5f5be2afe599deb4bcd9702d03c20
BLAKE2b-256 checksum
How to use checksums
735b40d57055eb554adba8d77e778837215dd18b5fbfae1dc397df96453c7b01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.7.0-cp35-cp35m-win32.whl
Size 303.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
9dc1590e1f1ffd4a9a8be836610afeb887dcd75c96663e1d0390c492146f59ff
BLAKE2b-256 checksum
How to use checksums
a2c45d2b590a6c9a58962db286994022f82dd4c1e292b1539282a6e5b712ff7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.7.0-cp35-cp35m-manylinux1_i686.whl
Size 402.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a5e4becae6c053602fb9ed6dd4d12c525e3f716357334ee306929724087b65b4
BLAKE2b-256 checksum
How to use checksums
3c70e9af7286fdc87d183e6edaab88e00c744900b5df5935be7c4f8936a6d93f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.7.0-cp34-cp34m-win_amd64.whl
Size 306.3 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
c6c6868995787429cedb919d0399a0211c0ca48880c3dcacda2ae72cb2663caa
BLAKE2b-256 checksum
How to use checksums
5a8863e3402d827006cd28dbb35350d98f345cef581936d4efc76fefc2dbfb10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp34-cp34m-win32.whl
Size 308.6 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e56e54f710935a6896db9a3bc85d69ddc91806a56c0f5045989b3aa918369cea
BLAKE2b-256 checksum
How to use checksums
4129f47379c5ef6e685699f84aece0e157014b0de97ba33e414145696bfd961d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp34-cp34m-manylinux1_x86_64.whl
Size 409.2 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
21e25d25ead34b07289f5a30916661e5f0adfff8f2a9326f98b8961113e14a83
BLAKE2b-256 checksum
How to use checksums
919e1fdb9b3ced12446d53ca74abfad7c3d9f6cbbe2ae53aef90ef60c9f685ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp34-cp34m-manylinux1_i686.whl
Size 402.7 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3dd41aaab8ac3b93281c331bca8824bb75591568d802a0a509c61f4be7ea235d
BLAKE2b-256 checksum
How to use checksums
236c5950466deeeb38706fd985a7ccd535a69e807584098b7b964801964d1b23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.7.0-cp27-cp27mu-manylinux1_x86_64.whl
Size 411.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5984c1c12e8dd6a96e8b82c4bec3f86180c4b048dcdccd34ed8c8bb81740e4ca
BLAKE2b-256 checksum
How to use checksums
c02d5a927c0a4b90bf32e64fbaca269fad3116e6e86cfa1b9a3da5bdcc2a144e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp27-cp27mu-manylinux1_i686.whl
Size 400.5 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
453e9a1e3a9dfe7c7bf3367ab82842cb236735c58f6ca849a485b30f9dfa42f8
BLAKE2b-256 checksum
How to use checksums
36d8273e365c7b198cbc056277a35083b3740a7dbde5f3f0e03a495d54fd020f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp27-cp27m-win_amd64.whl
Size 306.4 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
5cc2adccb61bfe6c76fc5b6d488d76b3c093a69d79e70adb73b5678d2f0afc67
BLAKE2b-256 checksum
How to use checksums
6c564cb312c2b3e4364ec90f295726be9c832c5e59eabc722d1d4e6263152441
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp27-cp27m-win32.whl
Size 308.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
7b0a16aaac8599b8403860d8cb00a978387423dabed2f09b0c6184006c75cb9d
BLAKE2b-256 checksum
How to use checksums
4d7bdfeaf0be90b1ac1f1cf1dab3525b0d6df3d3e00ec9a57417a97f37f2f967
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.7.0-cp27-cp27m-manylinux1_i686.whl
Size 400.5 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
65a0967d15d4b3d46b9885a69c45148cc9dc09ee9f10f0fd05669fe9ebffd947
BLAKE2b-256 checksum
How to use checksums
53d82201edf7ff1cff78340d3206941223fb826bf6e4928d24ba9d9fa28b2766
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.7.0-cp26-cp26mu-manylinux1_x86_64.whl
Size 410.9 kB
Tags CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
29a12524bc5b7e2bc55e426e6b7be4a734cccf99298248748f6ca0088ecb54e3
BLAKE2b-256 checksum
How to use checksums
710a9cda25e1eff9e69785ac7f3e6e4bac4b03364e1cdd359c6a61bb0e98d60b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp26-cp26mu-manylinux1_i686.whl
Size 400.4 kB
Tags CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
80c9df3fde525855431d2959550746404eb6fae8f8a87d7d15e9c0ac650c70e1
BLAKE2b-256 checksum
How to use checksums
3a526db3e7083b180451e7212c6454412649f88578a9c7c5229ee1e101fbcf49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp26-cp26m-win_amd64.whl
Size 310.6 kB
Tags CPython 2.6 CPython 2.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f7f309ebbda39fb00ec28f311e90b8ec9def924c41b658c45d6ab8077aadece8
BLAKE2b-256 checksum
How to use checksums
29ed63e5a16848a34fadd2007f8516bd0f91f4885346d785157fbeb7ae3b7bce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.7.0-cp26-cp26m-win32.whl
Size 308.7 kB
Tags CPython 2.6 CPython 2.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
95f0c66aabe98e58c236baea43252dc32a3b214b8dee30f678cacba15e5889a0
BLAKE2b-256 checksum
How to use checksums
2beb9d157dd79f502000e5a681c5a23ea161f07945118acec7c6466ab8e6d9ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.7.0-cp26-cp26m-manylinux1_i686.whl
Size 400.4 kB
Tags CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b4e77252237fea02eab5a59514b62bb23095869790dbcfcb45e500e3704c69d0
BLAKE2b-256 checksum
How to use checksums
fd06ee6b3560071cf26c9df25cecdf464091c98f453327d3acfbbfccec0cc152
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

This release

3.7.0 This release

44 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