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]

You can install all dependencies automatically with the following command:

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

Other optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1, the default authentication mechanism for MongoDB 3.0+. It especially improves performance on Python versions older than 2.7.8.

  • monotonic adds support for a monotonic clock, which improves reliability in environments where clock adjustments are frequent. Not needed in Python 3.

Additional dependencies are:

  • (to generate documentation) sphinx

  • (to run the tests under Python 2.6) unittest2

Examples

Here’s a basic example (for more see the examples section of the docs):

>>> import pymongo
>>> client = pymongo.MongoClient("localhost", 27017)
>>> db = client.test
>>> db.name
u'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), u'test'), u'my_collection')
>>> db.my_collection.insert_one({"x": 10}).inserted_id
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.insert_one({"x": 8}).inserted_id
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.insert_one({"x": 11}).inserted_id
ObjectId('4aba160ee23f6b543e000002')
>>> db.my_collection.find_one()
{u'x': 10, u'_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
u'x_1'
>>> for item in db.my_collection.find().sort("x", pymongo.ASCENDING):
...     print(item["x"])
...
8
10
11
>>> [item["x"] for item in db.my_collection.find().limit(2).skip(1)]
[8, 11]

Documentation

You will need sphinx installed to generate the documentation. Documentation can be generated by running python setup.py doc. Generated documentation can be found in the doc/build/html/ directory.

Testing

The easiest way to run the tests is to run python setup.py test in the root of the distribution. Note that you will need unittest2 to run the tests under Python 2.6.

To verify that PyMongo works with Gevent’s monkey-patching:

$ python green_framework_test.py gevent

Or with Eventlet’s:

$ python green_framework_test.py eventlet

Release files for pymongo 3.6.1

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.1
File Size Uploaded
pymongo-3.6.1.tar.gz 1.6 MB Details

Built distributions (wheels)

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

Total release size: 19.4 MB

Release files / pymongo-3.6.1.tar.gz

Download URL pymongo-3.6.1.tar.gz
Size 1.6 MB
Tags Source
SHA-256 checksum
How to use checksums
f7ebcb846962ee40374db2d9014a89bea9c983ae63c1877957c3a0a756974796
BLAKE2b-256 checksum
How to use checksums
a3fe826348375bfe2d11c96cdc7b7cbabbd84b8b15b62eb33638ee3241fca5f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.6-win-amd64.egg
Size 586.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
051770590ddbd5fb7db17d3315d4c1b0f18039d830dd18e1bae39451c30d31cd
BLAKE2b-256 checksum
How to use checksums
a9e3d5d27f77f95248701a60e8ddfc1ba42589b53ea90d5b38400c416123f606
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.6-win32.egg
Size 581.3 kB
Tags Egg
SHA-256 checksum
How to use checksums
45fb9f589c0f35436dbe391c53a387ffffa8d086b8521a86fca4f3e1d0edbf71
BLAKE2b-256 checksum
How to use checksums
495a20b4bdc04362d611db3193c131029aa041a6eafe24f050e5a8faf32a7a0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.6-macosx-10.6-intel.egg
Size 612.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
e2745dd408a26d4517702d1686afc8e1e1638d2167e857c684f912192cc00dcf
BLAKE2b-256 checksum
How to use checksums
dccf0c104670d586764b5ada2f06e22698f1f66c1311d2e4a3cc9e140a4de997
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.5-win-amd64.egg
Size 594.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
a0a695eef38c15570f6da3b4900e1a1d85fa92c754177d5f05267b49da79c92b
BLAKE2b-256 checksum
How to use checksums
22082a1216336fffdc8af79cb90a40a570d979ebcbc382d68a613fb756995c75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.5-win32.egg
Size 589.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
63a47a97b5cb4c67c86552b15e08df12ff026a648211120adf5ebe00453e85e9
BLAKE2b-256 checksum
How to use checksums
2ab715447273d39070ec30243ddba1d3a39edf7ce435b8586324ccf6aa09e3cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.5-macosx-10.6-intel.egg
Size 620.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
9e6db7ff63fb836d56e62216e10e868c23a99f3cb02875411eb2cb787acf58c7
BLAKE2b-256 checksum
How to use checksums
b47f90b82c4b2e548796f8ce9b2d93d8d615d2822f759d34910fb15e957f2e8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.4-win-amd64.egg
Size 593.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
97d6a218c4ad4f8fdde0143776d5224e884cbcfe631e7446379fa1790d8cf04f
BLAKE2b-256 checksum
How to use checksums
109e519d05d9c4e6c144a12666b50910d04c186c853caa64b14657f3a808792d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.4-win32.egg
Size 590.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
aa46076524471729430afacca3dd8ad4578878eca6fc9e2b593a0b381b5bbeb7
BLAKE2b-256 checksum
How to use checksums
8e17fcc6815da4110468dd27aa0e90726bcfcb9de7c08bb506ec7ffa4cba62a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py3.4-macosx-10.6-intel.egg
Size 621.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
c596af57286ef28cae7a48e3070d222f96f5f0eab76ad39d680ae6b9bbc957c7
BLAKE2b-256 checksum
How to use checksums
635d6d22950440dc2f6e65fab470e1879ae65df0434f48c9d1cb8400e0b44a57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py2.7-win-amd64.egg
Size 582.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
5f2814a9492a724fd77c90ffc01f810276ef9972ae02587bfaae40835f9b8407
BLAKE2b-256 checksum
How to use checksums
75e278187979782cfef6991183b35e344ad6d91fcfcd6f355cec1d3fdbdb8d07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py2.7-win32.egg
Size 579.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
36a992e02fced328de5304145dc3729a8cea12e58ad34b842a6f46d7941c9fc7
BLAKE2b-256 checksum
How to use checksums
c29a6c1ab3703f8d084b43466cad954774a9c9381e7ed651ed018fec6c0bb7c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py2.7-macosx-10.13-intel.egg
Size 605.1 kB
Tags Egg
SHA-256 checksum
How to use checksums
6c4459d5c2b45ba55e14360e03078426015c1b0881facaec51bd9bd9e2304cec
BLAKE2b-256 checksum
How to use checksums
859549456c4c1b71ba948e33cc41a6d7d0495153bb48f1615a0756ff59920c4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py2.6-win-amd64.egg
Size 584.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
192ee5e33821931f4ec6df5fff4361220c0c92bb5b7437c6db52e20a0c9b4d98
BLAKE2b-256 checksum
How to use checksums
ea5271c11c1f1858edaed05e8fbde69728a26ad8fca2d464a6318ff6bd7e38a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-py2.6-win32.egg
Size 581.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
44abdc26989600bb03b62d57616ec7c1b9182290720167c39e38c3a2b0d44e44
BLAKE2b-256 checksum
How to use checksums
dbe9ad418f3293aef5a798445c2bf105689f8c5efe7a380c881327565153ac92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-cp36-cp36m-win_amd64.whl
Size 291.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
4807dfbb5cdcfe0224329992dc48b897c780d0ad7553c3799d34f84ba5cab446
BLAKE2b-256 checksum
How to use checksums
4639b9bb7fed3e3a0ea621a1512a938c105cd996320d7d9894d8239ca9093340
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-cp36-cp36m-win32.whl
Size 286.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
833bc6cb2ec7058dea9f5840a9314ac74738d2117486a044e88f3976e37ea7a0
BLAKE2b-256 checksum
How to use checksums
c29600951e252c6cad023b3fd60457b2ab1c1329073516086c7ac1b6833a439e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

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

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

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

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

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

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

Download URL pymongo-3.6.1-cp35-cp35m-win32.whl
Size 286.3 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
4400fa92af310bf66b76c313c7ded3bb63f3d63b4f43c3bfbff552cf294dc9fa
BLAKE2b-256 checksum
How to use checksums
ef35774f5cdf7a52ab9fc130c954fa83d24c7654b4c3e52b851451667aaac7d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-cp35-cp35m-manylinux1_x86_64.whl
Size 378.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
07fdee1c5567f237796a8550233e04853785d8dcf95929f96ab519ed91543109
BLAKE2b-256 checksum
How to use checksums
5ded569dc31fa8b3defcca05654e6c23b97a152be6b7a5bd427bc7c9be7b139d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

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

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

Download URL pymongo-3.6.1-cp34-cp34m-win_amd64.whl
Size 288.3 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
061085dfe4fbf1d9d6ed2f2e52fe6ab72559e48b4294370b433751638160d10b
BLAKE2b-256 checksum
How to use checksums
bd51ab93ed80059d0f068016e0cffd42917f756259486eaea9c51883b5c671fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.6.1-cp34-cp34m-manylinux1_x86_64.whl
Size 379.7 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0d98731aaea8cb32b535c376f6785927e4e3d9459ffe1440b8a639827a849350
BLAKE2b-256 checksum
How to use checksums
9d5ba9cd276fd6f5b61be0c3b72fcdd908b317746ffc1dd1986d88c6dc6e6d0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

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

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

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

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

Download URL pymongo-3.6.1-cp27-cp27mu-manylinux1_i686.whl
Size 372.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
419ed5d5b76ef304815f354d9df7f2085acfd6ff7cc1b714ca702e2239b341c2
BLAKE2b-256 checksum
How to use checksums
93ce0d4b2e6be5d33e808e320d81ce8203aa1b828772480b25733d3d7e0eca41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-cp27-cp27m-win_amd64.whl
Size 288.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7fbd9233e8b6741b047c5857e2ad5efb74091f167d7fa8a2a3379217165058f9
BLAKE2b-256 checksum
How to use checksums
db6ff021f83748fb1e63e327a3ce5ee5a4a190403bd6418c810e5a4adfd00ad5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.6.1-cp27-cp27m-manylinux1_x86_64.whl
Size 381.7 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
10f683950f70626ccedf4a662d1c0b3244e8e013c2067872af5633830abd1bfd
BLAKE2b-256 checksum
How to use checksums
88a1a50c19ce78b94f8f837b207a740a9ad14cb4304d3d8a655a902dd21da8dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-cp27-cp27m-manylinux1_i686.whl
Size 372.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
54daf67e1e7e7e5a5160c86123bdd39b1d3b25876c2ab38230dc2a764cb3d98f
BLAKE2b-256 checksum
How to use checksums
283dc6deb02a1c8e3676b7d3d52eacfaffcbf3251ca61686c3eff2c0157aa688
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

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

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

Download URL pymongo-3.6.1-cp26-cp26mu-manylinux1_i686.whl
Size 371.9 kB
Tags CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
abf83b908e535b1386a7732825994e6e36eff6394c1829f3e7a23888136484fa
BLAKE2b-256 checksum
How to use checksums
3518a42b0ebebf57295cb96ee4c8e92d3148878549cec8a3980178a5c8414c68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-cp26-cp26m-win_amd64.whl
Size 288.8 kB
Tags CPython 2.6 CPython 2.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ece2c2add66d3ec2720a963bf073ca11fc3b0b58159767fc3bc5ddaad791d481
BLAKE2b-256 checksum
How to use checksums
02d65df0e370bb851486bddabc49af9b69055e94b84822668ae4eb84513c8f87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-3.6.1-cp26-cp26m-win32.whl
Size 285.8 kB
Tags CPython 2.6 CPython 2.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
42ec201fd9a26e7c1e611e3db19324dead51dd4646391492eb238b41749340e8
BLAKE2b-256 checksum
How to use checksums
a63782c1b1e2fca951d5487ee3cb9e5e0f51a24c93422a9e8fec9cb750abf751
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

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

Download URL pymongo-3.6.1-cp26-cp26m-manylinux1_i686.whl
Size 371.9 kB
Tags CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
dd29bb5bc9068ccc248c8c145efd839421f04363b468b47cfa2d4902ca369afe
BLAKE2b-256 checksum
How to use checksums
a462d510b87b316c712527d39821eb5797f29599d7a8b45207e4e3056ffbcbb9
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.1 This release

43 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