Skip to main content

Python driver for MongoDB <http://www.mongodb.org>

Project description

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.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongo-2.9.3.tar.gz (433.3 kB view details)

Uploaded Source

Built Distributions

pymongo-2.9.3.win-amd64-py3.5.exe (380.5 kB view details)

Uploaded Source

pymongo-2.9.3.win-amd64-py3.4.exe (463.3 kB view details)

Uploaded Source

pymongo-2.9.3.win-amd64-py3.3.exe (463.4 kB view details)

Uploaded Source

pymongo-2.9.3.win-amd64-py3.2.exe (465.8 kB view details)

Uploaded Source

pymongo-2.9.3.win-amd64-py2.7.exe (464.8 kB view details)

Uploaded Source

pymongo-2.9.3.win-amd64-py2.6.exe (465.3 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py3.5.exe (368.6 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py3.4.exe (429.7 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py3.3.exe (429.7 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py3.2.exe (434.7 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py2.7.exe (434.5 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py2.6.exe (435.0 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py2.5.exe (300.4 kB view details)

Uploaded Source

pymongo-2.9.3.win32-py2.4.exe (300.4 kB view details)

Uploaded Source

pymongo-2.9.3-py3.5-win-amd64.egg (483.1 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.5-win32.egg (478.3 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.5-macosx-10.6-intel.egg (506.3 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.4-win-amd64.egg (480.9 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.4-win32.egg (478.3 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.4-macosx-10.6-intel.egg (506.9 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.3-win-amd64.egg (488.4 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.3-win32.egg (485.7 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.3-macosx-10.6-x86_64.egg (514.8 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.2-win-amd64.egg (480.0 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.2-win32.egg (476.8 kB view details)

Uploaded Egg

pymongo-2.9.3-py3.2-macosx-10.6-x86_64.egg (506.1 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.7-win-amd64.egg (473.0 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.7-win32.egg (470.1 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.7-macosx-10.11-intel.egg (493.8 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.7-macosx-10.10-intel.egg (493.8 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.7-macosx-10.9-intel.egg (494.5 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.7-macosx-10.8-intel.egg (495.4 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.6-win-amd64.egg (474.4 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.6-win32.egg (471.4 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.6-macosx-10.11-intel.egg (494.6 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.6-macosx-10.10-intel.egg (494.6 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.6-macosx-10.9-intel.egg (495.4 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.6-macosx-10.8-intel.egg (496.2 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.5-win32.egg (471.8 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.5-macosx-10.9-x86_64.egg (471.3 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.5-macosx-10.8-x86_64.egg (471.5 kB view details)

Uploaded Egg

pymongo-2.9.3-py2.4-win32.egg (476.8 kB view details)

Uploaded Egg

pymongo-2.9.3-cp35-none-win_amd64.whl (242.0 kB view details)

Uploaded CPython 3.5Windows x86-64

pymongo-2.9.3-cp35-none-win32.whl (237.3 kB view details)

Uploaded CPython 3.5Windows x86

pymongo-2.9.3-cp35-cp35m-macosx_10_6_intel.whl (265.0 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

pymongo-2.9.3-cp34-none-win_amd64.whl (238.8 kB view details)

Uploaded CPython 3.4Windows x86-64

pymongo-2.9.3-cp34-none-win32.whl (236.4 kB view details)

Uploaded CPython 3.4Windows x86

pymongo-2.9.3-cp34-cp34m-macosx_10_6_intel.whl (264.6 kB view details)

Uploaded CPython 3.4mmacOS 10.6+ Intel (x86-64, i386)

pymongo-2.9.3-cp33-none-win_amd64.whl (238.9 kB view details)

Uploaded CPython 3.3Windows x86-64

pymongo-2.9.3-cp33-none-win32.whl (236.4 kB view details)

Uploaded CPython 3.3Windows x86

pymongo-2.9.3-cp33-cp33m-macosx_10_6_x86_64.whl (264.7 kB view details)

Uploaded CPython 3.3mmacOS 10.6+ x86-64

pymongo-2.9.3-cp32-none-win_amd64.whl (239.2 kB view details)

Uploaded CPython 3.2Windows x86-64

pymongo-2.9.3-cp32-none-win32.whl (236.3 kB view details)

Uploaded CPython 3.2Windows x86

pymongo-2.9.3-cp32-cp32m-macosx_10_6_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.2mmacOS 10.6+ x86-64

pymongo-2.9.3-cp27-none-win_amd64.whl (238.8 kB view details)

Uploaded CPython 2.7Windows x86-64

pymongo-2.9.3-cp27-none-win32.whl (236.1 kB view details)

Uploaded CPython 2.7Windows x86

pymongo-2.9.3-cp27-none-macosx_10_11_intel.whl (259.2 kB view details)

Uploaded CPython 2.7macOS 10.11+ Intel (x86-64, i386)

pymongo-2.9.3-cp27-none-macosx_10_9_intel.whl (259.9 kB view details)

Uploaded CPython 2.7macOS 10.9+ Intel (x86-64, i386)

pymongo-2.9.3-cp27-none-macosx_10_8_intel.whl (260.8 kB view details)

Uploaded CPython 2.7macOS 10.8+ Intel (x86-64, i386)

pymongo-2.9.3-cp27-cp27m-macosx_10_10_intel.whl (259.2 kB view details)

Uploaded CPython 2.7mmacOS 10.10+ Intel (x86-64, i386)

pymongo-2.9.3-cp26-none-win_amd64.whl (239.3 kB view details)

Uploaded CPython 2.6Windows x86-64

pymongo-2.9.3-cp26-none-win32.whl (236.7 kB view details)

Uploaded CPython 2.6Windows x86

pymongo-2.9.3-cp26-none-macosx_10_11_intel.whl (259.2 kB view details)

Uploaded CPython 2.6macOS 10.11+ Intel (x86-64, i386)

pymongo-2.9.3-cp26-none-macosx_10_10_intel.whl (259.2 kB view details)

Uploaded CPython 2.6macOS 10.10+ Intel (x86-64, i386)

pymongo-2.9.3-cp26-none-macosx_10_9_intel.whl (259.9 kB view details)

Uploaded CPython 2.6macOS 10.9+ Intel (x86-64, i386)

pymongo-2.9.3-cp26-none-macosx_10_8_intel.whl (260.8 kB view details)

Uploaded CPython 2.6macOS 10.8+ Intel (x86-64, i386)

File details

Details for the file pymongo-2.9.3.tar.gz.

File metadata

  • Download URL: pymongo-2.9.3.tar.gz
  • Upload date:
  • Size: 433.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pymongo-2.9.3.tar.gz
Algorithm Hash digest
SHA256 1a3a75e4998a6b69d9f94c1dbac13116aee90a3f26d02f02fc0289f9e8b332c8
MD5 aeb3d596d895f350c027210231b53ec2
BLAKE2b-256 102415a00d2a82e4e84a8653cfbf7be10b9364330746ecbf8f47315deb2e52b2

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win-amd64-py3.5.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 dde6b48080f28df938211e61539991796839ac6911725800307b7131bed04d97
MD5 6f1053bc5e4ef330e5e441c247110fcd
BLAKE2b-256 379d454fe6a71c81508f49203b0920c34c31e1545b51cfb3432eb1734b5029fd

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win-amd64-py3.4.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 c9e5b321c2c919d6dcf14fa02c338cdec283e05c1ff4efc0675c99856c8a597b
MD5 0cabd610ab6cf3f48f6acf705120ce38
BLAKE2b-256 ffe164de4dfed0133620b6676079888828eab31358771ea9c3b2e1d8816b1a95

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win-amd64-py3.3.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 e304da46cec193d1310c0349bd2299e25c27d108f604ac5af6f5e9177458afe8
MD5 a8ffedb6ce08250095cb49f32534d46e
BLAKE2b-256 49984609de10ec1e62813979e41f975282231213b3574c02fab725c12b0c497d

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win-amd64-py3.2.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 99a8db9fd6947ae3a890db1b334185e4d70048160b61d06c3cf7b7cb89ecf916
MD5 7c069512238bd4c33851f22bb58824c2
BLAKE2b-256 ca62f5cc2abc5cf652647456f7e57f56367b4874b7105eadaa3dfb00e58cbc87

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win-amd64-py2.7.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 b89548d306d2a6185cd32155ee37cce2009d17a4b31c733e3da74741fc8bec48
MD5 529bdd8466fa20c648a97461145295a1
BLAKE2b-256 ced8a91a6a1413f61acd17c19bb73cabe2a8f5490899d1b8e9187db96b920d00

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win-amd64-py2.6.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 6ec125840e0fb6464220a9be9aa18efebe9494ed90356afe6ea326957aa7ffa3
MD5 976636695e7b2c027a1a3d6be29c5edf
BLAKE2b-256 947ab6a6ec467f39f8ddd3c9645f5ef777f687336e85a976776dc349d2dbf88d

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py3.5.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py3.5.exe
Algorithm Hash digest
SHA256 b7fa9d983a251a34b4e5165cb1e25e71b78a801478474d8fd09a7fd80abf1f7d
MD5 2c0f4d69d20d1f1a8b232371a0b096b0
BLAKE2b-256 08b126498eeb45d0f6cdd02b9ef8f2a0167764f7809b3e7e2d18c02a4dba071d

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py3.4.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py3.4.exe
Algorithm Hash digest
SHA256 05455789249c740857f55070b33f5fbf38e058980bf47555f6b6d24443b44451
MD5 b1db8ce4ed1b37c9241fd79b5ed73a1c
BLAKE2b-256 ce07429eca5c494248436665b5590b19cd8d44527818b0486509076dac6d31d2

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py3.3.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py3.3.exe
Algorithm Hash digest
SHA256 5ebddf66e3717ac0988291f85c29aa53bfab2715a9df01e24817c16758dd5936
MD5 3af62a33acd77a3ddf65c208152cd8eb
BLAKE2b-256 c950897bf277d290cd66d4ee079c6711bfd59da66ad47c3c3ce209be7d4d6cde

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py3.2.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py3.2.exe
Algorithm Hash digest
SHA256 3f90bb1e3292289e2fa6b83b87f059a6d769ac8889e0b906a7b3886bef9d8920
MD5 c43cde650b6d8efd32f46abc0d95e04f
BLAKE2b-256 d824191d41838c4c0722b0ef25bc12c1230794bfb7febd9425ffa654085e6137

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py2.7.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py2.7.exe
Algorithm Hash digest
SHA256 49c8a1b723ca80c986dd92e3d0fd56471a3f333c3c371f5dba541bfde024fb88
MD5 fba38456ff916b5f9278a96d804cbd9e
BLAKE2b-256 ff040d0bd0b0a24f05181a3b10de23ec63d5a82394684662274a34ff5ab15b6b

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py2.6.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py2.6.exe
Algorithm Hash digest
SHA256 f8646067f9a1228ff37c45a69ce6bfbc12ca3a69090b24765dd3a33aa74ef332
MD5 1060903ed2645eac5542f5c092b15874
BLAKE2b-256 0f730257419c1cc2fc21c67e8f8e36cfc853e4f90b741b3a51a21fe9554b1134

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py2.5.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py2.5.exe
Algorithm Hash digest
SHA256 f3998882d29627c73240ead4f75757b1f31fa7e40d36c47c7f02dc7303822119
MD5 b91bba2a39b244a2b205dbae229937da
BLAKE2b-256 9ab550de090e2b07c5565de4957048bd426ead1a42bac0652d1a619c2ae7c33d

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3.win32-py2.4.exe.

File metadata

File hashes

Hashes for pymongo-2.9.3.win32-py2.4.exe
Algorithm Hash digest
SHA256 86ec0b5477d49fcc0080fa6fa175a33f791917cc196a735fa93a7f5c160c49d6
MD5 e12eb93047451dd1a337f3e944e567a7
BLAKE2b-256 88ce503c98ab6f26c22a65d606b92ad7e8da19dc0d2e32c5e3c84c5d11bb2dd4

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.5-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.5-win-amd64.egg
Algorithm Hash digest
SHA256 61d7a1a8522cbcb0822d5323db6335cfaf495c4e2da27d4c4332bdba8c4486ec
MD5 79265d85c2974cde2f216289cc790c30
BLAKE2b-256 8f52d6c5d496dd2aefe3a7fd2a5e2255a6251dba5ba3e14d2e28d47c8ecc11a0

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.5-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.5-win32.egg
Algorithm Hash digest
SHA256 86d40650a2a4759fe8abc293f79fc7854c35e936002a5e848e5a39c6ca5bf414
MD5 84a4c74147f5abc2a58390f6be169fb2
BLAKE2b-256 13e7ed88eab285754b05fd309f9e2f4028eb2f3b04f18c62f5f74d89f300499c

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.5-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.5-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 7c1256d706702fca5c415ee90aa166ee78e1150e21a31df5771b464ca2c63022
MD5 05c5f15b7b5e2b74076dc254c92f8a71
BLAKE2b-256 7b3353235c5a46dafd92c67db7a3ff90a2ed8ba9e2963353b9601594d5473f9b

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.4-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 64d826cfd67b69cfdf6582285a8babf4d5286adbc6a62f7b2611ac935e2f1b8a
MD5 059464c885ba9397f1c77e6b9a9115fd
BLAKE2b-256 d75be216368b97c0fe1a26a5c878af2481c2354c53be2980b174ebbe34c4a847

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.4-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.4-win32.egg
Algorithm Hash digest
SHA256 53c5da851bdd4c6437050e95e6bdba93ac9eece0a33f45c542ad1a5c59de757d
MD5 d48a30ad93f1d80b78943717fc1520aa
BLAKE2b-256 2e0b99459fedc7238e12e93591dc50f204575ccf560483fa50c1f626247c4848

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.4-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.4-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 6e4546481a5b1029fb60b5d431871918dbf37e3b66f461066721091bf9de61d2
MD5 9d0a9670901468da058c1c1a05c4cfa1
BLAKE2b-256 3c0193cedae6f32fda4559fe82c505bd073b1625e1a40d93d4752ff38b8b8fe6

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.3-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 5161845406dc7b994695c7f5ea359cc3084edf857986f5dd2110911616337b8d
MD5 1086e559269cb182abf7edda0d8d1360
BLAKE2b-256 ab502bd3a981d40d4038ee95608b9de01ebb5992ccfead968cac8bca5da31875

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.3-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.3-win32.egg
Algorithm Hash digest
SHA256 10f75bb035c33d2efdb27a7511a2efa7f00f0f050c835c322cd2dda85be921ea
MD5 5f8b1cb751fb0562bc73d2df8713ebe5
BLAKE2b-256 e4d142c73a1e31f5cc38147a24737ddaebd4175c5e1455d4aad81ce3121e390d

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.3-macosx-10.6-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.3-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 2c52d3d4ab89e555b2e4433f08e2cfcc9d53cf9a603ecf7f181cac211e515126
MD5 f4b5666440409cbabc80beeb5fb5e65a
BLAKE2b-256 45454851b76ad2c9046a4dea5a768d330d23c627b8f629eefee0fe0b745648de

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.2-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 774b1c3359c9279030c7527bfd1840c9874f0b640de1306bdc0a2c7002957e20
MD5 7a3a33664325306c7335d5677a67fdb2
BLAKE2b-256 b561c5e07eb1fd5d59c1e2a7a97e58120232923d9e3808a408d60b2976ddcd9f

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.2-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.2-win32.egg
Algorithm Hash digest
SHA256 4c1e03f2225d1fe22b8923daa522ec954d8d242d3c1a5acc5c79150a9450949b
MD5 12d76dff8fc79033ea1890c1ebf304dd
BLAKE2b-256 f545ce542cd3855d832b4e60184844aeda1b6f497267b2045be65237e5d8ffe1

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py3.2-macosx-10.6-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py3.2-macosx-10.6-x86_64.egg
Algorithm Hash digest
SHA256 93f206fe8e803b6ceab978a8f135defa4a048660a5c09dfb59cc0d27ec94fb0b
MD5 d35b7ea056709fe86a768c59d02204e0
BLAKE2b-256 85d6c966ff729f29ae21225f8b4474e3a631fbc5951213e902db8be950634593

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.7-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 902dec8cc7fd2a5d6ca953a5f714c00b7301edc1e714de9d2c9d596e659eb432
MD5 974d21994a8d562a1931a39177613992
BLAKE2b-256 bad582d0dc6b534263832dafd6fd2d3ed306cf847f0f96722d36121eb3b4ba5f

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.7-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.7-win32.egg
Algorithm Hash digest
SHA256 63699f9d437fc61adbfc4c09c5cbc1e75981021e8066bbcaa194f2f9cc0a9ff3
MD5 101f6837905795eae84d56021e653617
BLAKE2b-256 8ee2cd120a568f511f1d37eb40cf6068587efc2d2a273c4dbf1af583e4b90229

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.7-macosx-10.11-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.7-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 71c7f452d9ced394ea333cf12dde1a4d750fb4ef3eabad18bc5d0efb4b8df3dc
MD5 d85ebca91faf2715df0ec6c019bc3c11
BLAKE2b-256 c2236e3fe8cca5914b6a701a0305ddc2588a4b9b87fd32041de4c28bf80a0c13

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.7-macosx-10.10-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.7-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 837bddccf73d92a40f305f8088449183e068eca2c6e44426699c9e0978b7cb44
MD5 756a0e053a4e96095b2d6322175de7e7
BLAKE2b-256 82669d75ed877adf61d04a51f6cabf8a06e6f5c5589f0d6cdd8029064924e616

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.7-macosx-10.9-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.7-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 ccd4c75dbb6aa376a4d6d8e5b363f346c495e0962b27d98bf97a945c284b0d6c
MD5 c70126d465876f0be55e0a4ff2e82a5d
BLAKE2b-256 59ae0742530629e7f9fac0910eaa6cd90778aab35e8a0488d11b79feed2dfd6f

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.7-macosx-10.8-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 691eecf0ce5409e8bb38dfd92acb91752d63ed920e24bc8683b3094dff703e80
MD5 6e7c6ef7c9588d80d0fcfedcb643386e
BLAKE2b-256 5dee61a176dea60eab7c6716459860f814b0f92d27de425bc8516d90929a7b19

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.6-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 7760a61d0a6120180a38a900a121977fa3b935226f64457582e9c3b54dee41b9
MD5 dfac9191efe7985eda7c66c4d27a4a09
BLAKE2b-256 f78e5b598e642fdf647a4546c199b86f89f4849dd442f85e3b3311fb4a6e9d9c

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.6-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.6-win32.egg
Algorithm Hash digest
SHA256 72df387f538abfcf20fdb44f03e85663382d8cb13bb3fbe2b4763805e8762152
MD5 2427091f71580eb14e5b8711a53adbdf
BLAKE2b-256 e23c96112c67563b9662650cfe0a354f7a6d0484b3ac4dc83bd3a65482ee5af9

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.6-macosx-10.11-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.6-macosx-10.11-intel.egg
Algorithm Hash digest
SHA256 034e4185a9aa0a5b131c034cec045ffe98ac4d48e66a1b0804d68aef0bd3c95a
MD5 c36f7b8dc2b1cd21bca09fa8c59631fa
BLAKE2b-256 e93fad7548c7ce3e0d9d65abafed6f63a3ce64889413c117f411930fc9453684

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.6-macosx-10.10-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.6-macosx-10.10-intel.egg
Algorithm Hash digest
SHA256 aabc991c06d0033b45fa0cb345e2bc335c2a2c65015e9e3220f1fdb45f704fb7
MD5 a6e11b34b4529f90ad8752ba8a593ec0
BLAKE2b-256 6ec7a1b898a2f92e6abe6f2a9f29a54f455a50c12d33910891da40d7eaf06a13

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.6-macosx-10.9-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.6-macosx-10.9-intel.egg
Algorithm Hash digest
SHA256 6e9d06955517c4b05ba739e6e1354ff530c0fd3ba865e35e7d4120cad66f80de
MD5 16081231d9ae7f8743fccd411a0f1c0b
BLAKE2b-256 1e2df58fd99562367eee5eaf9005f1765c7bc9825782101879034718a41cf0c4

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.6-macosx-10.8-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 ee0793b32815d662f7062f40eb4ef3d86da5706d3b4f6c20e2dedb1135dc0251
MD5 a210645dd99c2e4e634df02d873965de
BLAKE2b-256 a1bdb5a5ba66e068c5b884e6fed12145e07b59f48781e9382ebe053f422cb281

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.5-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.5-win32.egg
Algorithm Hash digest
SHA256 15a9753c97c9af52abf1f43623fc3ffa3b09c2b6b67a073a59bef6ef4b0d78a7
MD5 47f75cfed06d7182fdb621cd3f03c705
BLAKE2b-256 feb68ba89bf9b2907767afb37463d188d01e50b6893ca1979090e0e008b19315

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.5-macosx-10.9-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.5-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 492b62fdbcf17fec0993d254eb8eab3a6fd889f970a87022a6b1433de6c2c17a
MD5 32db6522ab552e2e9082c236583f9730
BLAKE2b-256 433708bbd4d5af23a7df39eab248be2abb2a398c069f9faf6efb705bd2655ad8

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.5-macosx-10.8-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 3c432b020b9bcb54b92a0771d847e2a173f569bdfcac1b16ef8a07337ac90bc4
MD5 3928b29610e9930d64b7c5ab3b6cc0e5
BLAKE2b-256 8836040c7dd6d3a9f925887279ab648ec556d45d59c2a60ed980dcf191b76587

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-py2.4-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.9.3-py2.4-win32.egg
Algorithm Hash digest
SHA256 bcdbc27020be114d0aa78eec358cf753f0d0d9128d296dfb12a2a935dc068d04
MD5 3365c3252a5b375258cd14c0b09240ee
BLAKE2b-256 dcec5f2e7cdad1d8fcebb1239656630362378116ba056d51bfcdbca6cc83ccfa

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp35-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 e7efd1baf274ff914f1342dfd335f66b2865fe234baea65766c4d50c000972af
MD5 e704256825b6ddfe2339a5e9827dbf06
BLAKE2b-256 1ee42d49bbde07e7ab33dcd7ecedad3017c6a5b560681109e5e63d7a68c005c6

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp35-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp35-none-win32.whl
Algorithm Hash digest
SHA256 24a1f62d201ac72a883567918dd46f1cdcf16de3bfdf06347011d5f6c4f375f7
MD5 d8126fb80cd49e1614790674fa4a7241
BLAKE2b-256 50fa9407e3e8d78a0a1eef097cf42af97bc0a8620c3c43806a4ed516adfec6cf

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 431e377ee28cc620f7cb910df9428bebcd28375ac97e98041549cec28a76fb99
MD5 a10a3b8f64b6602a765c402ee5b884f0
BLAKE2b-256 ddc9a2887a98296292a9520959efc246423cbeb15abfc14c1c45a1a870008071

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp34-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 92abbdca1ece0afe6186c8a3060535d124813bc2402be915ba033a688477978e
MD5 0be4f4fd2bffdafff3c9ca8b049c6baa
BLAKE2b-256 3b48815bc62b730c421b9ad3ac3a59cdd783be4452c82a77a16d848f7744468f

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp34-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp34-none-win32.whl
Algorithm Hash digest
SHA256 e98413515c9bfd8ed6c966a2e64f0d87b37a00a01dda3a2e6f91c42157b8ee31
MD5 a04fb3d0f7e9603c97a25c944d3ffe1d
BLAKE2b-256 88ebba192bc30c0c5d5793504c19aa47530de0d51ab9d488baf25e18bbc9d564

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp34-cp34m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6f803913198ae32b7058d4efd159505d5d0bcec987a87cc05df4e2eb252df736
MD5 a6faf86d20ac80f2bdd8f30a3b49d183
BLAKE2b-256 fa408750047ff150c6d75bee60649cd1e3d65b1441e65486b7c5632d1b1c3d2c

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp33-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 964f037be77e481f8c76c63c4be145cc3e2927bea8702bba8d843b04b804aed9
MD5 5c34cd969631a5778c1312d96df41149
BLAKE2b-256 e5d3d9316f7b9637c8b47f06ff728071d2766d49ae902a689ad26e94ff1ef958

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp33-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp33-none-win32.whl
Algorithm Hash digest
SHA256 172bda670de6658ef1e19559082618f3b81c344d12b473624fa63df7d9518ec7
MD5 1f27a6a9c10ea682b1efce1eb74a28a8
BLAKE2b-256 04dda0f456fe2c70ecac111bd5667f48ef820590b12910a7501d1ca390b42526

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp33-cp33m-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 6c2cb6c0cb760815eaa27756672ec7600add013d5c3f13a02eda33e084d22c28
MD5 b7f6a682d9b4f0862b1b9c2b782accff
BLAKE2b-256 21c95ecc0d20a079357c759a31ec64496d52540152498d37175352d4a3de7d03

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp32-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 102e0d752fa641d44afc8b65ce2663b6daa0372aa8dd95152245b0eba3117a01
MD5 6f1eefcd02bcbee008ea9b71e4a49399
BLAKE2b-256 4941e453d26872d1c61d237afe4890b884a839445c7f3270b4c76bb5b2f76681

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp32-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp32-none-win32.whl
Algorithm Hash digest
SHA256 4b398b14a6699ff41fde2b0e02ffca907bf911b3f4f0fa2e8fa9eec8a2073258
MD5 179394c47700ab28d6f50fb57783c7a6
BLAKE2b-256 ce884f94003cb240a8215558cd6c624fa54ebde3d020d3bda12a55717126be8a

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp32-cp32m-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 287c3986b81bd9527377b12784da83778bbf3812c575cba5450257a6b8088869
MD5 57f1da7ba4cc0a2ed6f6b599100e1efa
BLAKE2b-256 fa8a795d179acf789812856a32e3c2daddbc039c798208cd127dff9ce491a845

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp27-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 42225bc0fc4d3f03469dc2c5902c1cc43ba875abe983939096dbd2353348b1f9
MD5 f4057af6079210a772a494c97057335a
BLAKE2b-256 d97281f57dd7fe53d209198c180c9d50dae88b79caae993fb55c53fd55bafeaf

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp27-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp27-none-win32.whl
Algorithm Hash digest
SHA256 83ad541a536d191eeb8b8139c1488650a60c18bdc00f7a206e9704157b04b211
MD5 1cb3741210a9212e4854ca9281409ac3
BLAKE2b-256 bb1b72e23c5e61b27f3f4b6ab763d9b80329336db8bd6ca0c8e414f8b4f83705

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp27-none-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp27-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 358b0a1bd6ce8bb47bf62175f9d6792223312d4ca53e3eb75551027b892d17dc
MD5 733baab7cf0cb90fce9d19dbdf67c5ee
BLAKE2b-256 83c21e5d13a27c90498c092cfc6b0a301651964f3850620787ad43a6cf2ce8c5

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp27-none-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 c0701f42cc0582646aa9bbbbdd3642222ba5de3f1ec8f292b11edf1f9c6b0485
MD5 e48b03271745e9afeca2ece22e35c3e9
BLAKE2b-256 0fe83536ef3e15df6bfb221d44e86ee43159a5e0e8101eeebc8fe45ab0032863

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp27-none-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 fcf1ce936ed5958a6be7b4d162cacd5963c73a15bb62d1f67294443e86b6b141
MD5 37b832dbded49de609e90b133481e80d
BLAKE2b-256 d46e620967dfe8af9d14a495bafc82c965098ce8544bc6ada8cdc1b4dde81e59

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp27-cp27m-macosx_10_10_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp27-cp27m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 950413c856830ba99a86d19837c26fc77efe804730f3cb545f97630e33176a7c
MD5 33ad2320e0227c78b1233714ce1376d6
BLAKE2b-256 c3a9313ad5cd30046cc2919fc5e73708055498e513e507163f4c8de04dc932c4

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp26-none-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 c3a9c0a63ff75f6ebf2d514f97bce962ecdcaded2b6f11735116b97de3fa65aa
MD5 5772a7b4729818524abb2dcb5c9a6b5d
BLAKE2b-256 797c3c3f6ac4f5a5bb3ba4807831a6a9fdd057d4de48b0b008deac68cee2bf5f

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp26-none-win32.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp26-none-win32.whl
Algorithm Hash digest
SHA256 6d0223c6ae065cf69431a45981a0ca83eb62e29bbc95fc600d901b2fa73a7095
MD5 622d6b4c1154f57fe8d8604bf199fc1e
BLAKE2b-256 577384cde6d76c64e47428b6f42aa4b0032384b4fbad3c9743aa9ee52628379f

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp26-none-macosx_10_11_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp26-none-macosx_10_11_intel.whl
Algorithm Hash digest
SHA256 f9c30f108e16acd93e67bc04658d4138d8f95480b3c3fe841b5b494a259f6c83
MD5 f6b9167fe3590001da77d37c2de3bce5
BLAKE2b-256 90851b019bbe0d48355efc21ada35433707fc7c53aba4a1047ad31c34a7df32c

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp26-none-macosx_10_10_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp26-none-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 f8f3b486744ec89134347f634a498cbf839e2005f0592805b7c71dc13e2453e2
MD5 35006b74e956b8ea82166c7e9d92fb4c
BLAKE2b-256 314b18f55dcbedbffc6cb56323f0ab15f291391eca662f64f81b57e4feb7edf2

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp26-none-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 e79f8165b408035f06da4760827a3435b156c4f90bfa9926b10b2f4c6d0915d5
MD5 cc06dcb0cb53eaf0fe82b261f3074412
BLAKE2b-256 9a1b4ed47701d7ed8cf779cec9bb797c6ec32de1eb218b403c4643d1fcb1354b

See more details on using hashes here.

File details

Details for the file pymongo-2.9.3-cp26-none-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for pymongo-2.9.3-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 57331691ea87642a7084f4d5d3296d6f693c9ed10ef66470efedf19d32654f9f
MD5 f53afc5447b9c3c3915d5deefe745248
BLAKE2b-256 32d3ebee54d5534381c64856be3b5b3ffb81e4c2bf9dc6a4405b5bfe951a4be4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page