Skip to main content

PyMongo

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.

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

If you have setuptools installed you should be able to do easy_install pymongo to install PyMongo. Otherwise you can download the project source and do python setup.py install to install.

Do not install the “bson” package. PyMongo comes with its own bson package; doing “easy_install bson” installs a third-party package that is incompatible with PyMongo.

Dependencies

The PyMongo distribution is supported and tested on Python 2.x (where x >= 4) and Python 3.x (where x >= 1). PyMongo versions <= 1.3 also supported Python 2.3, but that is no longer supported.

Additional dependencies are:

  • (to generate documentation) sphinx

  • (to auto-discover tests) nose

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.save({"x": 10})
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.save({"x": 8})
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.save({"x": 11})
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 install nose (easy_install nose) and run nosetests or python setup.py test in the root of the distribution. Tests are located in the test/ directory.

Release files for pymongo 2.8

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 2.8
File Size Uploaded
pymongo-2.8.tar.gz 394.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 2.8
File
pymongo-2.8.win-amd64-py3.4.exe Details
pymongo-2.8.win-amd64-py3.3.exe Details
pymongo-2.8.win-amd64-py3.2.exe Details
pymongo-2.8.win-amd64-py2.7.exe Details
pymongo-2.8.win-amd64-py2.6.exe Details
pymongo-2.8.win32-py3.4.exe Details
pymongo-2.8.win32-py3.3.exe Details
pymongo-2.8.win32-py3.2.exe Details
pymongo-2.8.win32-py2.7.exe Details
pymongo-2.8.win32-py2.6.exe Details
pymongo-2.8.win32-py2.5.exe Details
pymongo-2.8.win32-py2.4.exe Details
pymongo-2.8-py3.4-win-amd64.egg Legacy Egg format - - Details
pymongo-2.8-py3.4-win32.egg Legacy Egg format - - Details
pymongo-2.8-py3.4-macosx-10.6-intel.egg Legacy Egg format - - Details
pymongo-2.8-py3.3-win-amd64.egg Legacy Egg format - - Details
pymongo-2.8-py3.3-win32.egg Legacy Egg format - - Details
pymongo-2.8-py3.3-macosx-10.6-x86_64.egg Legacy Egg format - - Details
pymongo-2.8-py3.2-win-amd64.egg Legacy Egg format - - Details
pymongo-2.8-py3.2-win32.egg Legacy Egg format - - Details
pymongo-2.8-py3.2-macosx-10.6-x86_64.egg Legacy Egg format - - Details
pymongo-2.8-py2.7-win-amd64.egg Legacy Egg format - - Details
pymongo-2.8-py2.7-win32.egg Legacy Egg format - - Details
pymongo-2.8-py2.7-macosx-10.10-intel.egg Legacy Egg format - - Details
pymongo-2.8-py2.7-macosx-10.9-intel.egg Legacy Egg format - - Details
pymongo-2.8-py2.7-macosx-10.8-intel.egg Legacy Egg format - - Details
pymongo-2.8-py2.6-win-amd64.egg Legacy Egg format - - Details
pymongo-2.8-py2.6-win32.egg Legacy Egg format - - Details
pymongo-2.8-py2.6-macosx-10.10-intel.egg Legacy Egg format - - Details
pymongo-2.8-py2.6-macosx-10.9-intel.egg Legacy Egg format - - Details
pymongo-2.8-py2.6-macosx-10.8-intel.egg Legacy Egg format - - Details
pymongo-2.8-py2.5-win32.egg Legacy Egg format - - Details
pymongo-2.8-py2.5-macosx-10.9-x86_64.egg Legacy Egg format - - Details
pymongo-2.8-py2.5-macosx-10.8-x86_64.egg Legacy Egg format - - Details
pymongo-2.8-py2.4-win32.egg Legacy Egg format - - Details
pymongo-2.8-cp34-none-win_amd64.whl CPython 3.4 none Windows x86-64 Details
pymongo-2.8-cp34-none-win32.whl CPython 3.4 none Windows x86-32 Details
pymongo-2.8-cp34-cp34m-macosx_10_6_intel.whl CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-2.8-cp33-none-win_amd64.whl CPython 3.3 none Windows x86-64 Details
pymongo-2.8-cp33-none-win32.whl CPython 3.3 none Windows x86-32 Details
pymongo-2.8-cp33-cp33m-macosx_10_6_x86_64.whl CPython 3.3 CPython 3.3 pymalloc macOS 10.6+ x86-64 Details
pymongo-2.8-cp32-none-win_amd64.whl CPython 3.2 none Windows x86-64 Details
pymongo-2.8-cp32-none-win32.whl CPython 3.2 none Windows x86-32 Details
pymongo-2.8-cp32-cp32m-macosx_10_6_x86_64.whl CPython 3.2 CPython 3.2 pymalloc macOS 10.6+ x86-64 Details
pymongo-2.8-cp27-none-win_amd64.whl CPython 2.7 none Windows x86-64 Details
pymongo-2.8-cp27-none-win32.whl CPython 2.7 none Windows x86-32 Details
pymongo-2.8-cp27-none-macosx_10_10_intel.whl CPython 2.7 none macOS 10.10+ Intel (x86-64, i386) Details
pymongo-2.8-cp27-none-macosx_10_9_intel.whl CPython 2.7 none macOS 10.9+ Intel (x86-64, i386) Details
pymongo-2.8-cp27-none-macosx_10_8_intel.whl CPython 2.7 none macOS 10.8+ Intel (x86-64, i386) Details
pymongo-2.8-cp26-none-win_amd64.whl CPython 2.6 none Windows x86-64 Details
pymongo-2.8-cp26-none-win32.whl CPython 2.6 none Windows x86-32 Details
pymongo-2.8-cp26-none-macosx_10_10_intel.whl CPython 2.6 none macOS 10.10+ Intel (x86-64, i386) Details
pymongo-2.8-cp26-none-macosx_10_9_intel.whl CPython 2.6 none macOS 10.9+ Intel (x86-64, i386) Details
pymongo-2.8-cp26-none-macosx_10_8_intel.whl CPython 2.6 none macOS 10.8+ Intel (x86-64, i386) Details

Total release size: 19.7 MB

Release files / pymongo-2.8.tar.gz

Download URL pymongo-2.8.tar.gz
Size 394.5 kB
Tags Source
SHA-256 checksum
How to use checksums
0543f65364fb54fb54b954136cf6b5e689ab12a7c1d15c59c52d3d0c5fa73935
BLAKE2b-256 checksum
How to use checksums
d62d580ac9ea77d2b03c53c6f0a7248edf668577d5e1e4b9f37d278f90b52cf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win-amd64-py3.4.exe

Download URL pymongo-2.8.win-amd64-py3.4.exe
Size 443.0 kB
Tags Source
SHA-256 checksum
How to use checksums
9b0cf867737561320149aa8253570666ae6f3149da4c5d2fd8c2774689968e86
BLAKE2b-256 checksum
How to use checksums
14e9b4c72891f738f759078417a5d9882de57db60f8a27f1177e0ded098ddc2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win-amd64-py3.3.exe

Download URL pymongo-2.8.win-amd64-py3.3.exe
Size 443.1 kB
Tags Source
SHA-256 checksum
How to use checksums
796a79499a55a6f888f2059d8caf96adfb53fb2781044c4aa14c2f05b145b4b7
BLAKE2b-256 checksum
How to use checksums
7ca96becf2f8375fd1db61e932739863cb258c4d3243744d12ae8a94ea5cea85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win-amd64-py3.2.exe

Download URL pymongo-2.8.win-amd64-py3.2.exe
Size 445.5 kB
Tags Source
SHA-256 checksum
How to use checksums
59b53ffc2062be47dc68d5f3363e6c3de21899c20537b185e4e6262bc592a4c0
BLAKE2b-256 checksum
How to use checksums
8cd48d83db2cd18894a022c7ce8b32a16c793be2eca6bd7fd360f8c9005b5513
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win-amd64-py2.7.exe

Download URL pymongo-2.8.win-amd64-py2.7.exe
Size 444.5 kB
Tags Source
SHA-256 checksum
How to use checksums
149973182942a0c7f2c1f6c2bf0f21c4431fcec7e88d7cc5246a26b3201d8a51
BLAKE2b-256 checksum
How to use checksums
6837746aae47dcb78c245b84c0ed5dbd860d1ab404675e3359456ef1d4ce1612
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win-amd64-py2.6.exe

Download URL pymongo-2.8.win-amd64-py2.6.exe
Size 445.0 kB
Tags Source
SHA-256 checksum
How to use checksums
04c8e3addc6d695bb6dc2924c492bc12f07ebe7c939c2f6cfa5d0e0f016d4640
BLAKE2b-256 checksum
How to use checksums
3a23958a20dedb8966d6e427c8d28cd10470010e71e62f525228749965371b09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win32-py3.4.exe

Download URL pymongo-2.8.win32-py3.4.exe
Size 409.4 kB
Tags Source
SHA-256 checksum
How to use checksums
399521acf66031d87bcf0b005aaf479d519f8d4c40b1f2ab748ae8aaa3fd3989
BLAKE2b-256 checksum
How to use checksums
d9a5c1af9abe4465e13d1f861303062494dd9d7d807268d06898ee737d0ca5d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win32-py3.3.exe

Download URL pymongo-2.8.win32-py3.3.exe
Size 409.4 kB
Tags Source
SHA-256 checksum
How to use checksums
f2632e377d9d9cf99716996907e2886e8d6fdd362c04fc7c7b375b990b67cf9b
BLAKE2b-256 checksum
How to use checksums
142389d036ef939e2634cc2a04743ecf42521425dea6be63b74136d03460c591
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win32-py3.2.exe

Download URL pymongo-2.8.win32-py3.2.exe
Size 414.4 kB
Tags Source
SHA-256 checksum
How to use checksums
bfc227896c05286b9eb09f55d0b0afb7b4a10b39205dec109cbf29e333c89d4b
BLAKE2b-256 checksum
How to use checksums
b4af43b786170f9f60a54f5eac3c44656a61d533c6d6d9adb66ad484f006cf5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win32-py2.7.exe

Download URL pymongo-2.8.win32-py2.7.exe
Size 414.2 kB
Tags Source
SHA-256 checksum
How to use checksums
3236492e8e140f5583819593f95f0067e11f54ca2d669ffd45e4e19e6862b132
BLAKE2b-256 checksum
How to use checksums
258116458afe7152382a9f50842a4e6bc1ee1729815005fb397d1a9d44ec1589
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win32-py2.6.exe

Download URL pymongo-2.8.win32-py2.6.exe
Size 414.7 kB
Tags Source
SHA-256 checksum
How to use checksums
bc32cfd807d6da908ae6314e8fcbf0ffa713c50edd39b12ef4d592628f8d5fbf
BLAKE2b-256 checksum
How to use checksums
427aeb9ef68dce51c11cf6cc89c620902fa6514cf0073330fdccea5cacd11c35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win32-py2.5.exe

Download URL pymongo-2.8.win32-py2.5.exe
Size 280.0 kB
Tags Source
SHA-256 checksum
How to use checksums
07fba04f6cd7e3a9a2e6054632cc940236196ab305c0a52a76b81f4b482ad5f9
BLAKE2b-256 checksum
How to use checksums
373d44218411cd884226d493317f9c36dc53728b2980ad2ddde6567db832bde3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8.win32-py2.4.exe

Download URL pymongo-2.8.win32-py2.4.exe
Size 280.0 kB
Tags Source
SHA-256 checksum
How to use checksums
552b53e3f4071959f11ccb052a7ab6c137bb6dffd1d819f21d7ab143d605e951
BLAKE2b-256 checksum
How to use checksums
e4538ba2a83a37bef3466045ea88ebba488119eed929088a26bcff6eaa1fcadc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-2.8-py3.4-win-amd64.egg
Size 435.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
386d89696c17f991386a722e4c7207e6e36e22ff628145524231d7b5a8c6192a
BLAKE2b-256 checksum
How to use checksums
49cf977def61998a06ec31dbeec8bf3eb9afb845df236de73720abdfb6c38803
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-2.8-py3.4-win32.egg
Size 433.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
770252171ce59d3ca99a5823847210ed52b9ccd669c1b294aed61a9b47a08e2b
BLAKE2b-256 checksum
How to use checksums
115309e47142d0f5215f341c7f4dade829f03cef81c03d8d33274eea125d8928
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-2.8-py3.4-macosx-10.6-intel.egg
Size 462.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
d26765a1e8389343199c05c6a2bc96f0b5a3b16ae5745fd849f3ae1f7314c999
BLAKE2b-256 checksum
How to use checksums
62ea64e207b8b18221597e87a5e3e0137c2a7e0a965c90f171ba61f7cbb53c4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py3.3-win-amd64.egg

Download URL pymongo-2.8-py3.3-win-amd64.egg
Size 442.1 kB
Tags Egg
SHA-256 checksum
How to use checksums
d6fbcc3562aed1bfa1d76063065dad7f64f310a480c7304a387f75ec8c3188f0
BLAKE2b-256 checksum
How to use checksums
a75402609e860c5d3b289ec947bc22ef4b42c803b244a827c8700d33aa63075b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py3.3-win32.egg

Download URL pymongo-2.8-py3.3-win32.egg
Size 439.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
b7d83ebaf4a120f7991fd4348ac63d96799e9d766aaea5ea6af384e6ce94a2e6
BLAKE2b-256 checksum
How to use checksums
1d5d1eaaecb26e650e857db941362e6f37dac399ba4ce188cc81de2820fc69de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py3.3-macosx-10.6-x86_64.egg

Download URL pymongo-2.8-py3.3-macosx-10.6-x86_64.egg
Size 468.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
ba5c4b4b91aba994e330bb4f36f3d63a8aff662684abc56d8c7ab0c5a0002c15
BLAKE2b-256 checksum
How to use checksums
d0d41c344585e70dc87f6b879fc7bbccd8f7b374408e253c839c0e1e2fb503ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py3.2-win-amd64.egg

Download URL pymongo-2.8-py3.2-win-amd64.egg
Size 434.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
1326e29c7ca011329b041e9506f4663b5c1accb68ccf16b13a4bc27dc1326c22
BLAKE2b-256 checksum
How to use checksums
bfdf7dc40834e2412daf2f65240744969e702d8cf9e7909d189320aefcc88f02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py3.2-win32.egg

Download URL pymongo-2.8-py3.2-win32.egg
Size 431.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
5b92b313a5800fe92e9fe814215f5f01826162654e65f45cbd2b07e2fb16c7f5
BLAKE2b-256 checksum
How to use checksums
3167ebb518dcf8bcd312003ca2773f3acee31df2be8ed6e1bf8519544d02be62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py3.2-macosx-10.6-x86_64.egg

Download URL pymongo-2.8-py3.2-macosx-10.6-x86_64.egg
Size 461.2 kB
Tags Egg
SHA-256 checksum
How to use checksums
f5a6c33f8097d1c7e955754871163ad824b040d7e3a38a5de33504f5733a8eb9
BLAKE2b-256 checksum
How to use checksums
d4aea0c8eccaf39dea2ef0cfeb8d5a5543d5aecc2dad6e03a71254b855d2c140
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-2.8-py2.7-win-amd64.egg
Size 428.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
911620b04d736f147f97b339ef948622c9bfd2a2398b86a0b135851e4b89c2b9
BLAKE2b-256 checksum
How to use checksums
1899483444adb0957d1c1db8234ab1ed8459fba748b0d242dc772209babbee4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-2.8-py2.7-win32.egg
Size 425.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
95a92a6c935e5fffd331d3bc1417d2c731b44aa31b616ac2bad6e7f06de6d739
BLAKE2b-256 checksum
How to use checksums
efeb935aa17de59a4430ff2ded38def018b13e725a5a6f073c48a98ab3614b79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.7-macosx-10.10-intel.egg

Download URL pymongo-2.8-py2.7-macosx-10.10-intel.egg
Size 449.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
2977640df42ee4b359009586917e9ae43a00c781dc083e2e3509623e9a63514f
BLAKE2b-256 checksum
How to use checksums
24938c630f331c7f04ae38cde1fd32154566a1edcbddfef2c382ee1ae154e974
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.7-macosx-10.9-intel.egg

Download URL pymongo-2.8-py2.7-macosx-10.9-intel.egg
Size 449.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
ec7bce08532ef294cec0210091fa5a5d1065f4956e7700315c19362ed91286b9
BLAKE2b-256 checksum
How to use checksums
7b0fa618be6b07852a0489329dcadb53d019b72051d88a287af93baff8090f6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.7-macosx-10.8-intel.egg

Download URL pymongo-2.8-py2.7-macosx-10.8-intel.egg
Size 450.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
c513933616c25ac67856f3c5278e34008e2f405e8f14eed1bea3ac24fbda2ef0
BLAKE2b-256 checksum
How to use checksums
2f101b854c2fb9eaec3d297f3a7e3e4a129b9c27576e364effc869fcfc0ca5af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-2.8-py2.6-win-amd64.egg
Size 429.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
ac49ffb70ea8a85e17c823a8b9692e43c1f97511eef5df324bba5470f6c8ea62
BLAKE2b-256 checksum
How to use checksums
8e1e9ffb1b564abbeb8f34c8c4ccb7bceec73a08c5aace9a8ad53c0e2da8dcc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

Download URL pymongo-2.8-py2.6-win32.egg
Size 427.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
eaec05ac650811aa9faeda3cc07b4ab20f973319bac658d982dce752f68c87fe
BLAKE2b-256 checksum
How to use checksums
74f9bf75da9d33c94ffaeb03467b77ae44c9308eadb8cd3d24f624b17eb0834d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.6-macosx-10.10-intel.egg

Download URL pymongo-2.8-py2.6-macosx-10.10-intel.egg
Size 450.4 kB
Tags Egg
SHA-256 checksum
How to use checksums
8d0cdf4319d36f567bc9d6ad9d61ae28986c2e7a42b307ce19460e39ed95cf5d
BLAKE2b-256 checksum
How to use checksums
fe01faa7810ff39a34bf1730c8d6743e706958dd4cbbdd20191ed5b9a4d3e8cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.6-macosx-10.9-intel.egg

Download URL pymongo-2.8-py2.6-macosx-10.9-intel.egg
Size 450.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
582d6501f087d8421c58190e840799e7734fac2aabd1d016e2e1e21bbf1581cf
BLAKE2b-256 checksum
How to use checksums
988f432d027109a3010f574ae91f7228700dc6509d6d0f6a5f1119cd12defa91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.6-macosx-10.8-intel.egg

Download URL pymongo-2.8-py2.6-macosx-10.8-intel.egg
Size 451.3 kB
Tags Egg
SHA-256 checksum
How to use checksums
f14c0636eda28412ebb2e583cc1453b65c44ead96bf0381c0d49bb63162f7712
BLAKE2b-256 checksum
How to use checksums
3491f9ca22dab60b36e830ba48ed53e69fac6485dba74abbf655ff27cfd243dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.5-win32.egg

Download URL pymongo-2.8-py2.5-win32.egg
Size 427.3 kB
Tags Egg
SHA-256 checksum
How to use checksums
cbd65a8357f50f3d79fdc4027f204b8a295e09b474614432800a5799a207fbbf
BLAKE2b-256 checksum
How to use checksums
1e227e4b1fffa4f0caaaf6c5e3ea91f59b1da0388b7e5799ee7e96327e6122e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.5-macosx-10.9-x86_64.egg

Download URL pymongo-2.8-py2.5-macosx-10.9-x86_64.egg
Size 426.8 kB
Tags Egg
SHA-256 checksum
How to use checksums
1d96aaac7806697648443922770dce6a49d9d46f7ae1e71ea87485321ec55adb
BLAKE2b-256 checksum
How to use checksums
bc0df076b5bb2acfcc8f2102f6c5cf4c5319aaceebba9899a323c18162fbbd64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.5-macosx-10.8-x86_64.egg

Download URL pymongo-2.8-py2.5-macosx-10.8-x86_64.egg
Size 427.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
c1443b59a7fcfa5db732a19c077057dd8dc65836d0eb951fc0db2731cffa30ee
BLAKE2b-256 checksum
How to use checksums
fca937f8b6370e563894635da1f9dfa4739da94f04225c874c2ae0cd1633d76f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-py2.4-win32.egg

Download URL pymongo-2.8-py2.4-win32.egg
Size 431.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
df68d27d02cebd56a5fa584fe3242ee6634ca01c811305eef4dbee336d4a8ef0
BLAKE2b-256 checksum
How to use checksums
4f1f65b0886adba48e982436af366af0247550075f24e2ad8e362308af271767
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp34-none-win_amd64.whl

Download URL pymongo-2.8-cp34-none-win_amd64.whl
Size 218.4 kB
Tags CPython 3.4 Windows x86-64
SHA-256 checksum
How to use checksums
ea57ecaa11b912f2b0339de3b59b27971c7315623f28fb368fd2ccaa35f8c8c8
BLAKE2b-256 checksum
How to use checksums
da454919c33891716ae7792e9b6528b050a0962ab8da8e149823f3f7b78f012d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp34-none-win32.whl

Download URL pymongo-2.8-cp34-none-win32.whl
Size 216.0 kB
Tags CPython 3.4 Windows x86-32
SHA-256 checksum
How to use checksums
2f3a720aaf3c7f376754bdd128007b792af6fc4c1ad215f18dcb8918ade7ef36
BLAKE2b-256 checksum
How to use checksums
2512b1d37e2ba3a084bba582549675ecc658742ea1afaf9eb2c15dbe25e43c7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

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

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

Release files / pymongo-2.8-cp33-none-win_amd64.whl

Download URL pymongo-2.8-cp33-none-win_amd64.whl
Size 218.6 kB
Tags CPython 3.3 Windows x86-64
SHA-256 checksum
How to use checksums
28d06f38fb8b20df792c3436724041c330902f3bfdfaa71e6e5825a00f328179
BLAKE2b-256 checksum
How to use checksums
2c17a3e4e75269f83588370cb4993d37abc45f125a3ab92fe4aeb3067f064866
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp33-none-win32.whl

Download URL pymongo-2.8-cp33-none-win32.whl
Size 216.1 kB
Tags CPython 3.3 Windows x86-32
SHA-256 checksum
How to use checksums
66e946612d932f6b5800c6324fd9bcbadd16de379f4ec56e57538ceff8c683fd
BLAKE2b-256 checksum
How to use checksums
bda25b8846d262b7749c701f856f4a3eca11a9133bd2836975d1160e094aeacc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp33-cp33m-macosx_10_6_x86_64.whl

Download URL pymongo-2.8-cp33-cp33m-macosx_10_6_x86_64.whl
Size 244.7 kB
Tags CPython 3.3 CPython 3.3 pymalloc macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
1108c3f21541b03d1a8ff49daea5cdbf76da75ff9c09057d8cb0b16c17933ef1
BLAKE2b-256 checksum
How to use checksums
89e72e7836c11e4424442f7f7fa04ccb4fb9b58719c2184e35961aa0be437e83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp32-none-win_amd64.whl

Download URL pymongo-2.8-cp32-none-win_amd64.whl
Size 218.9 kB
Tags CPython 3.2 Windows x86-64
SHA-256 checksum
How to use checksums
751918b7dc3bbbc05c071073a50e85a4a265fe5ca2d6ed939d65c1403a0701b0
BLAKE2b-256 checksum
How to use checksums
1a8b109f8b19d3a9ed38aca100f5607608b9991840e78847677edb4cdd9a33bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp32-none-win32.whl

Download URL pymongo-2.8-cp32-none-win32.whl
Size 216.0 kB
Tags CPython 3.2 Windows x86-32
SHA-256 checksum
How to use checksums
fdcc535924c10515e588d841a2cfe51debd760a2c636168182cb56b63ba42a89
BLAKE2b-256 checksum
How to use checksums
238e398a35739e9b90b74a2686420785d18f7f8d78bdf944694c2522722a06db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp32-cp32m-macosx_10_6_x86_64.whl

Download URL pymongo-2.8-cp32-cp32m-macosx_10_6_x86_64.whl
Size 244.8 kB
Tags CPython 3.2 CPython 3.2 pymalloc macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
e8a60148a665ff8287559e8fb3835cc144256ee708e3afd3bfa9f23766350af7
BLAKE2b-256 checksum
How to use checksums
2ac673dc6fe30d9ec673e0c18a7d6e680f76c94e787e5c355d9f3eda6ee427a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp27-none-win_amd64.whl

Download URL pymongo-2.8-cp27-none-win_amd64.whl
Size 218.4 kB
Tags CPython 2.7 Windows x86-64
SHA-256 checksum
How to use checksums
a99b554bbeb2f3c8b2df793f187f5c969a3871aa613abd93cc3280c353573dd1
BLAKE2b-256 checksum
How to use checksums
974f01d65b04f946d2fcee0ca644c3ca83f054dc2c44cffebc7a374496cdacb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp27-none-win32.whl

Download URL pymongo-2.8-cp27-none-win32.whl
Size 215.8 kB
Tags CPython 2.7 Windows x86-32
SHA-256 checksum
How to use checksums
e87c320a1f723dde4ae13bb56b8d91c1af39d99b79ee7b2484bf38f6a447b2d2
BLAKE2b-256 checksum
How to use checksums
d2db2aae6de00dc16653e7442dbfed1f065f37c50d98c73f491d4732d2692566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp27-none-macosx_10_10_intel.whl

Download URL pymongo-2.8-cp27-none-macosx_10_10_intel.whl
Size 239.1 kB
Tags CPython 2.7 macOS 10.10+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
e7483795284e961e33f78637936b14dd99fdc4c004ffdcbdec9b0e5017a7e7bf
BLAKE2b-256 checksum
How to use checksums
5f99693c1bf974d51501ee6c349153fa2a92790ec3ecab260f8a005a159165df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp27-none-macosx_10_9_intel.whl

Download URL pymongo-2.8-cp27-none-macosx_10_9_intel.whl
Size 239.2 kB
Tags CPython 2.7 macOS 10.9+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
91bd48766b99094f646ebf34b35055aa2660d6c1fee7b8d5102ee838213f9387
BLAKE2b-256 checksum
How to use checksums
d4d7213c7c0540883d67dd3259a2e14ed60368629eaadceb699e5aac68164791
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp27-none-macosx_10_8_intel.whl

Download URL pymongo-2.8-cp27-none-macosx_10_8_intel.whl
Size 240.1 kB
Tags CPython 2.7 macOS 10.8+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
65e217533c332a85dfe58e0fc1f44521103f030f97e5429499e0c880f50b666d
BLAKE2b-256 checksum
How to use checksums
b6765cb98e2ddf07eeaf2e37d612f7f8f8d3f390570f97d52f0950fb562182f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp26-none-win_amd64.whl

Download URL pymongo-2.8-cp26-none-win_amd64.whl
Size 219.0 kB
Tags CPython 2.6 Windows x86-64
SHA-256 checksum
How to use checksums
e410bfbfc880d63c608c48a787db46284e68642197068855ef1dfc5ff2771b01
BLAKE2b-256 checksum
How to use checksums
f7637f31cea9f2ebec6b6956c0fb4b53dd277d8fdafb8157cf1fe0057d3d3ae0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp26-none-win32.whl

Download URL pymongo-2.8-cp26-none-win32.whl
Size 216.3 kB
Tags CPython 2.6 Windows x86-32
SHA-256 checksum
How to use checksums
c1aedbc6044d5e70ea7a8f81205ae89742e7f58d96fd4cb7ef17312e016f20aa
BLAKE2b-256 checksum
How to use checksums
bf3073d3f970594c5a21dbcf008b1b525af499f31f27b2b0aed92a0ab53db783
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp26-none-macosx_10_10_intel.whl

Download URL pymongo-2.8-cp26-none-macosx_10_10_intel.whl
Size 239.0 kB
Tags CPython 2.6 macOS 10.10+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
8bc017a05f95e6bcb281cc64386822af484f04e8e74a2eb2351c96615a97490f
BLAKE2b-256 checksum
How to use checksums
a49764449ff6c6d28bdd4b1a8e65d7b96fe3e5263bfc9de9f7f63f2f59c03bc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp26-none-macosx_10_9_intel.whl

Download URL pymongo-2.8-cp26-none-macosx_10_9_intel.whl
Size 239.2 kB
Tags CPython 2.6 macOS 10.9+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
cf8d4cb28188705da876eb64adacf5c582769dd7c96425e8aaba3e0d6e2d9e77
BLAKE2b-256 checksum
How to use checksums
d235d539d31133a8dd2a83cd1bff0152dd46c2f6f3607e52304ad49fab369eff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pymongo-2.8-cp26-none-macosx_10_8_intel.whl

Download URL pymongo-2.8-cp26-none-macosx_10_8_intel.whl
Size 240.1 kB
Tags CPython 2.6 macOS 10.8+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
f06963ac44d5d8110cf7a3602c990f9196c06160b73a58bf54285667e71d9a22
BLAKE2b-256 checksum
How to use checksums
8956dfca895ad655443cf6837663193a0876b61f95af1fd7e7a3d7d06d00bcca
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

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

This release

2.8 This release

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