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, 3.6, 4.0 and 4.2.

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.7, 3.4+, PyPy, and PyPy3.5+.

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]

Wire protocol compression with zstandard requires zstandard:

$ python -m pip install pymongo[zstd]

You can install all dependencies automatically with the following command:

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

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

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.

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.9.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.9.0
File Size Uploaded
pymongo-3.9.0.tar.gz 701.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 3.9.0
File
pymongo-3.9.0-py2.7-win-amd64.egg Legacy Egg format - - Details
pymongo-3.9.0-py2.7-win32.egg Legacy Egg format - - Details
pymongo-3.9.0-py2.7-macosx-10.14-intel.egg Legacy Egg format - - Details
pymongo-3.9.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymongo-3.9.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymongo-3.9.0-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.9.0-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.9.0-cp37-cp37m-macosx_10_6_intel.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.9.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pymongo-3.9.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pymongo-3.9.0-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.9.0-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.9.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.9.0-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
pymongo-3.9.0-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
pymongo-3.9.0-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.9.0-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.9.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.9.0-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
pymongo-3.9.0-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
pymongo-3.9.0-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.9.0-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.9.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.9.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.9.0-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.9.0-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
pymongo-3.9.0-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
pymongo-3.9.0-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.9.0-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.9.0-cp27-cp27m-macosx_10_14_intel.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386) Details

Total release size: 13.4 MB

Release files / pymongo-3.9.0.tar.gz

Download URL pymongo-3.9.0.tar.gz
Size 701.1 kB
Tags Source
SHA-256 checksum
How to use checksums
4249c6ba45587b959292a727532826c5032d59171f923f7f823788f413c2a5a3
BLAKE2b-256 checksum
How to use checksums
c0699388b715d013444ae8e5d497a6825d120f6a7a67ef5aa8ddea62f601cbff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-py2.7-win-amd64.egg
Size 711.1 kB
Tags Egg
SHA-256 checksum
How to use checksums
b67ec339b180acdbebcd03807ae4b1764a43e7069340fe860a60ac310b9d38be
BLAKE2b-256 checksum
How to use checksums
0c445d616986260c1d8da694b405e28c7e3e442dbc84e8dff651852dd51d6f25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-py2.7-win32.egg
Size 706.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
5b59bbde4eb417f3f9379f7b1a9de3669894f2bae9de933a836e2bffea2bbfa1
BLAKE2b-256 checksum
How to use checksums
b501460cc4fdae4de2beac571534398e98916b56408e38e882be2d5f69530c57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

Release files / pymongo-3.9.0-py2.7-macosx-10.14-intel.egg

Download URL pymongo-3.9.0-py2.7-macosx-10.14-intel.egg
Size 707.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
7b4aea184e4868ebd4f9f786ffee14a1121bda5436ad04f6bcbacfa2147f8386
BLAKE2b-256 checksum
How to use checksums
f0b20c5db2ab76ca7fb52cff2cd82a6e0383c5716bd59464a14df299a32c9a5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

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

Download URL pymongo-3.9.0-cp37-cp37m-win_amd64.whl
Size 351.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
93dbf7388f6bf9af48dbb32f265b75b3dbc743a7a2ce98e44c88c049c58d85d3
BLAKE2b-256 checksum
How to use checksums
c936715c4ccace03a20cf7e8f15a670f651615744987af62fad8b48bea8f65f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp37-cp37m-win32.whl
Size 345.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b268c7fa03ac77a8662fab3b2ab0be4beecb82f60f4c24b584e69565691a107f
BLAKE2b-256 checksum
How to use checksums
cba6b0ae3781b0ad75825e00e29dc5489b53512625e02328d73556e1ecdf12f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

Release files / pymongo-3.9.0-cp37-cp37m-manylinux1_x86_64.whl

Download URL pymongo-3.9.0-cp37-cp37m-manylinux1_x86_64.whl
Size 447.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
56b29c638ab924716b48a3e94e3d7ac00b04acec1daa8190c36d61fc714c3629
BLAKE2b-256 checksum
How to use checksums
23237666537adafcd232c88c156aa9382c859791d79bf12094005e009c2b6a3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

Release files / pymongo-3.9.0-cp37-cp37m-manylinux1_i686.whl

Download URL pymongo-3.9.0-cp37-cp37m-manylinux1_i686.whl
Size 441.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a13363869f2f36291d6367069c65d51d7b8d1b2fb410266b0b6b1f3c90d6deb0
BLAKE2b-256 checksum
How to use checksums
7f63a7894c47f9f18bca6fd0fb633bf53b8a63c8af5377b2341e8d5f1fefd182
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

Release files / pymongo-3.9.0-cp37-cp37m-macosx_10_6_intel.whl

Download URL pymongo-3.9.0-cp37-cp37m-macosx_10_6_intel.whl
Size 378.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
61101d1cc92881fac1f9ac7e99b033062f4c210178dc33193c8f5567feecb069
BLAKE2b-256 checksum
How to use checksums
a38cec46f4aa95515989711a7893e64c30f9d33c58eaccc01f8f37c4513739a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

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

Download URL pymongo-3.9.0-cp36-cp36m-win_amd64.whl
Size 351.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f70f0133301cccf9bfd68fd20f67184ef991be578b646e78441106f9e27cc44d
BLAKE2b-256 checksum
How to use checksums
8952829cb3b58047af08f4cf7905be3545b7718b96e9c83142072edb48ee5d05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp36-cp36m-win32.whl
Size 345.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
1f9fe869e289210250cba4ea20fbd169905b1793e1cd2737f423e107061afa98
BLAKE2b-256 checksum
How to use checksums
5ddb012f8573cf803009cce725906116bbc2d7fee04a4089e8d6ad2ecf55df0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp36-cp36m-manylinux1_x86_64.whl
Size 446.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a102b346f1921237eaa9a31ee89eda57ad3c3973d79be3a456d92524e7df8fec
BLAKE2b-256 checksum
How to use checksums
6d27f30b90f40054948b32df04a8e6355946874d084ac73755986b28d3003578
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp36-cp36m-manylinux1_i686.whl
Size 440.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5dca250cbf1183c3e7b7b18c882c2b2199bfb20c74c4c68dbf11596808a296da
BLAKE2b-256 checksum
How to use checksums
ae9e41b02ebf88694128fe27335df5b5cdeeebfda312439a453757717635ce03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp36-cp36m-macosx_10_6_intel.whl
Size 378.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
4ff8f5e7c0a78983c1ee07894fff1b21c0e0ad3a122d9786cc3745fd60e4a2ce
BLAKE2b-256 checksum
How to use checksums
fc79c298dfe767f6937f0d5eaefa412ca6897ec27c1834e325a71476c7c6f2ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

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

Download URL pymongo-3.9.0-cp35-cp35m-win_amd64.whl
Size 347.3 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
fa75c21c1d82f20cce62f6fc4a68c2b0f33572ab406df1b17cd77a947d0b2993
BLAKE2b-256 checksum
How to use checksums
55bbb220bfbe9b800d6e09e488679a11a44dd36ffa05dfb2a467ac197647d25a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp35-cp35m-win32.whl
Size 341.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
9b705daec636c560dd2d63935f428a6b3cddfe903fffc0f349e0e91007c893d6
BLAKE2b-256 checksum
How to use checksums
609f4d16daa06c9740f0c74bc1e69171adf3929792a14b5056db02652a5508a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp35-cp35m-manylinux1_x86_64.whl
Size 446.1 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cca4e1ab5ba0cd7877d3938167ee8ae9c2986cc0e10d3dcc3243d664d3a83fec
BLAKE2b-256 checksum
How to use checksums
fe963f43c48b2801e5cefe893421d67640cdc2b7cd940a51790b5c2062fb044e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp35-cp35m-manylinux1_i686.whl
Size 440.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1be549c0ce2ba8242c149156ae2064b12a5d4704448d49f630b4910606efd474
BLAKE2b-256 checksum
How to use checksums
ae3b56e84d9458be0097adac3c79c742695a9ad59e1a3824a75700e73a7eaf46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp35-cp35m-macosx_10_6_intel.whl
Size 378.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
88ac09e1b197c3b4531e43054d49c022a3ea1281431b2f4980abafa35d2a5ce2
BLAKE2b-256 checksum
How to use checksums
f154680f809b213a711e546359d69e21fe97200f1b4379b907c462c94a678a4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

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

Download URL pymongo-3.9.0-cp34-cp34m-win_amd64.whl
Size 344.3 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ad474e93525baa6c58d75d63a73143af24c9f93c8e26e8d382f32c4da637901a
BLAKE2b-256 checksum
How to use checksums
f5dbd34d842f933729988f80d4da2d45e6760541238ee665cc63e9059554c48a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp34-cp34m-win32.whl
Size 341.0 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
3653cea82d1e35edd0a2355150daf8a27ebf12cf55182d5ad1046bfa288f5140
BLAKE2b-256 checksum
How to use checksums
7c4bd5a9114220c48a4b3b2872e149eccb78fcbdc13821dd5b2a260788ecc569
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp34-cp34m-manylinux1_x86_64.whl
Size 447.2 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e28153b5d5ca33d4ba0c3bbc0e1ff161b9016e5e5f3f8ca10d6fa49106eb9e04
BLAKE2b-256 checksum
How to use checksums
53e93f03ea2423e54731fc0a80f420574bdc6c1f4f6ab7d3605d1ae021b457ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp34-cp34m-manylinux1_i686.whl
Size 440.6 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8b0339809b12ea292d468524dd1777f1a9637d9bdc0353a9261b88f82537d606
BLAKE2b-256 checksum
How to use checksums
f4abe249ba0fac080ab94a232da359ba1c4540d9d6e95e9e14a97295db118566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp34-cp34m-macosx_10_6_intel.whl
Size 378.5 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
f30d7b37804daf0bab1143abc71666c630d7e270f5c14c5a7c300a6699c21108
BLAKE2b-256 checksum
How to use checksums
a7a8e5c2982f85023db394b1bde97e8b5a8d6453e25d37615c459344feaf9f1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

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

Download URL pymongo-3.9.0-cp27-cp27mu-manylinux1_x86_64.whl
Size 440.4 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a76475834a978058425b0163f1bad35a5f70e45929a543075633c3fc1df564c5
BLAKE2b-256 checksum
How to use checksums
005c5379d5b8167a5938918d9ee147f865f6f8a64b93947d402cfdca5c1416d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp27-cp27mu-manylinux1_i686.whl
Size 432.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
09f8196e1cb081713aa3face08d1806dc0a5dd64cb9f67fefc568519253a7ff2
BLAKE2b-256 checksum
How to use checksums
f4bdd2cd4f019d20682b69d03caa4db0a1c9895208c1f96f44e01f2366831b68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp27-cp27m-win_amd64.whl
Size 348.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
a090a819fe6fefadc2901d3911c07c76c0935ec5c790a50e9f3c3c47bacd5978
BLAKE2b-256 checksum
How to use checksums
1ade61cc44ad6bc903022f11334bdce005760372a1b35decb0a0f371e2fc4906
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp27-cp27m-win32.whl
Size 345.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
cef61de3f0f4441ec40266ff2ab42e5c16eaba1dc1fc6e1036f274621c52adc1
BLAKE2b-256 checksum
How to use checksums
353b6c9dc14e8e582129a5f01b1d75a1c27bd5aa74f681082ab12d2ea709d6b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

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

Download URL pymongo-3.9.0-cp27-cp27m-manylinux1_x86_64.whl
Size 440.4 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
86624c0205a403fb4fbfedef79c5b4ab27e21fd018fdb6a27cf03b3c32a9e2b9
BLAKE2b-256 checksum
How to use checksums
928ded22f234bf8016400d34b5bd40f895964f2f185fe7fc63513ffd476e1f30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

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

Download URL pymongo-3.9.0-cp27-cp27m-manylinux1_i686.whl
Size 432.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
56ec9358bbfe5ae3b25e785f8a14619d6799c855a44734c9098bb457174019bf
BLAKE2b-256 checksum
How to use checksums
9a1ebdb092c9290c568092563ff75f57da86174f8bd3ee212ae4ba877916d05a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

Release files / pymongo-3.9.0-cp27-cp27m-macosx_10_14_intel.whl

Download URL pymongo-3.9.0-cp27-cp27m-macosx_10_14_intel.whl
Size 339.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
a409a43c76da50881b70cc9ee70a1744f882848e8e93a68fb434254379777fa3
BLAKE2b-256 checksum
How to use checksums
25b194226fd63725b8f429da93a50412f523524f8c30259e75d26ac708ec824b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

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

This release

3.9.0 This release

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

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