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.

PyMongo supports MongoDB 2.6, 3.0, 3.2, 3.4, 3.6, 4.0 and 4.2.

Support / Feedback

For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you’re more likely to get an answer on the mongodb-user list on Google Groups.

Bugs / Feature Requests

Think you’ve found a bug? Want to see a new feature in PyMongo? Please open a case in our issue management tool, JIRA:

Bug reports in JIRA for all driver projects (i.e. PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.

How To Ask For Help

Please include all of the following information when opening an issue:

  • Detailed steps to reproduce the problem, including full traceback, if possible.

  • The exact python version used, with patch level:

    $ python -c "import sys; print(sys.version)"
  • The exact version of PyMongo used, with patch level:

    $ python -c "import pymongo; print(pymongo.version); print(pymongo.has_c())"
  • The operating system and version (e.g. Windows 7, OSX 10.8, …)

  • Web framework or asynchronous network library used, if any, with version (e.g. Django 1.7, mod_wsgi 4.3.0, gevent 1.0.1, Tornado 4.0.2, …)

Security Vulnerabilities

If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.

Installation

PyMongo can be installed with pip:

$ python -m pip install pymongo

Or easy_install from setuptools:

$ python -m easy_install pymongo

You can also download the project source and do:

$ python setup.py install

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

Dependencies

PyMongo supports CPython 2.7, 3.4+, PyPy, and PyPy3.5+.

Optional dependencies:

GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:

$ python -m pip install pymongo[gssapi]

Support for mongodb+srv:// URIs requires dnspython:

$ python -m pip install pymongo[srv]

TLS / SSL support may require ipaddress and certifi or wincertstore depending on the Python version in use. The necessary dependencies can be installed along with PyMongo:

$ python -m pip install pymongo[tls]

Wire protocol compression with snappy requires python-snappy:

$ python -m pip install pymongo[snappy]

Wire protocol compression with zstandard requires zstandard:

$ python -m pip install pymongo[zstd]

You can install all dependencies automatically with the following command:

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

Other optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1 and SCRAM-SHA-256. It especially improves performance on Python versions older than 2.7.8.

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

Additional dependencies are:

  • (to generate documentation) sphinx

Examples

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

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

Documentation

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

Testing

The easiest way to run the tests is to run python setup.py test in the root of the distribution.

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

$ python green_framework_test.py gevent

Or with Eventlet’s:

$ python green_framework_test.py eventlet

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-3.9.0.tar.gz (701.1 kB view details)

Uploaded Source

Built Distributions

pymongo-3.9.0-py2.7-win-amd64.egg (711.1 kB view details)

Uploaded Source

pymongo-3.9.0-py2.7-win32.egg (706.7 kB view details)

Uploaded Source

pymongo-3.9.0-py2.7-macosx-10.14-intel.egg (707.6 kB view details)

Uploaded Source

pymongo-3.9.0-cp37-cp37m-win_amd64.whl (351.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-3.9.0-cp37-cp37m-win32.whl (345.8 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.9.0-cp37-cp37m-manylinux1_x86_64.whl (447.3 kB view details)

Uploaded CPython 3.7m

pymongo-3.9.0-cp37-cp37m-manylinux1_i686.whl (441.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.9.0-cp37-cp37m-macosx_10_6_intel.whl (378.8 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

pymongo-3.9.0-cp36-cp36m-win_amd64.whl (351.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.9.0-cp36-cp36m-win32.whl (345.8 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.9.0-cp36-cp36m-manylinux1_x86_64.whl (446.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.9.0-cp36-cp36m-manylinux1_i686.whl (440.8 kB view details)

Uploaded CPython 3.6m

pymongo-3.9.0-cp36-cp36m-macosx_10_6_intel.whl (378.8 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.9.0-cp35-cp35m-win_amd64.whl (347.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.9.0-cp35-cp35m-win32.whl (341.7 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.9.0-cp35-cp35m-manylinux1_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.5m

pymongo-3.9.0-cp35-cp35m-manylinux1_i686.whl (440.6 kB view details)

Uploaded CPython 3.5m

pymongo-3.9.0-cp35-cp35m-macosx_10_6_intel.whl (378.8 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.9.0-cp34-cp34m-win_amd64.whl (344.3 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.9.0-cp34-cp34m-win32.whl (341.0 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.9.0-cp34-cp34m-manylinux1_x86_64.whl (447.2 kB view details)

Uploaded CPython 3.4m

pymongo-3.9.0-cp34-cp34m-manylinux1_i686.whl (440.6 kB view details)

Uploaded CPython 3.4m

pymongo-3.9.0-cp34-cp34m-macosx_10_6_intel.whl (378.5 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.9.0-cp27-cp27mu-manylinux1_x86_64.whl (440.4 kB view details)

Uploaded CPython 2.7mu

pymongo-3.9.0-cp27-cp27mu-manylinux1_i686.whl (432.8 kB view details)

Uploaded CPython 2.7mu

pymongo-3.9.0-cp27-cp27m-win_amd64.whl (348.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.9.0-cp27-cp27m-win32.whl (345.0 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.9.0-cp27-cp27m-manylinux1_x86_64.whl (440.4 kB view details)

Uploaded CPython 2.7m

pymongo-3.9.0-cp27-cp27m-manylinux1_i686.whl (432.8 kB view details)

Uploaded CPython 2.7m

pymongo-3.9.0-cp27-cp27m-macosx_10_14_intel.whl (339.9 kB view details)

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

  • Download URL: pymongo-3.9.0.tar.gz
  • Upload date:
  • Size: 701.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0.tar.gz
Algorithm Hash digest
SHA256 4249c6ba45587b959292a727532826c5032d59171f923f7f823788f413c2a5a3
MD5 531786df7ad98f15c43f1b17edf5f84c
BLAKE2b-256 c0699388b715d013444ae8e5d497a6825d120f6a7a67ef5aa8ddea62f601cbff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.9.0-py2.7-win-amd64.egg
  • Upload date:
  • Size: 711.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 b67ec339b180acdbebcd03807ae4b1764a43e7069340fe860a60ac310b9d38be
MD5 632e161c99258adefc778e0b1f042868
BLAKE2b-256 0c445d616986260c1d8da694b405e28c7e3e442dbc84e8dff651852dd51d6f25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.9.0-py2.7-win32.egg
  • Upload date:
  • Size: 706.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 5b59bbde4eb417f3f9379f7b1a9de3669894f2bae9de933a836e2bffea2bbfa1
MD5 565bf8734ff49e8ddd323b4fe4a67888
BLAKE2b-256 b501460cc4fdae4de2beac571534398e98916b56408e38e882be2d5f69530c57

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-py2.7-macosx-10.14-intel.egg.

File metadata

  • Download URL: pymongo-3.9.0-py2.7-macosx-10.14-intel.egg
  • Upload date:
  • Size: 707.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

File hashes

Hashes for pymongo-3.9.0-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 7b4aea184e4868ebd4f9f786ffee14a1121bda5436ad04f6bcbacfa2147f8386
MD5 66a0d4ecbefdbf719b02e46334c4ca9f
BLAKE2b-256 f0b20c5db2ab76ca7fb52cff2cd82a6e0383c5716bd59464a14df299a32c9a5d

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 93dbf7388f6bf9af48dbb32f265b75b3dbc743a7a2ce98e44c88c049c58d85d3
MD5 3a9bf468b96d723f74fe74360b5ef64c
BLAKE2b-256 c936715c4ccace03a20cf7e8f15a670f651615744987af62fad8b48bea8f65f9

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 345.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b268c7fa03ac77a8662fab3b2ab0be4beecb82f60f4c24b584e69565691a107f
MD5 77293709f3f1e8b41952c35857832e02
BLAKE2b-256 cba6b0ae3781b0ad75825e00e29dc5489b53512625e02328d73556e1ecdf12f8

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 447.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 56b29c638ab924716b48a3e94e3d7ac00b04acec1daa8190c36d61fc714c3629
MD5 d9634beb40fc9c9604ff6b522fb262e8
BLAKE2b-256 23237666537adafcd232c88c156aa9382c859791d79bf12094005e009c2b6a3d

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 441.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a13363869f2f36291d6367069c65d51d7b8d1b2fb410266b0b6b1f3c90d6deb0
MD5 92dd8ee950d1b8dab8bd67675132753a
BLAKE2b-256 7f63a7894c47f9f18bca6fd0fb633bf53b8a63c8af5377b2341e8d5f1fefd182

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 378.8 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

File hashes

Hashes for pymongo-3.9.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 61101d1cc92881fac1f9ac7e99b033062f4c210178dc33193c8f5567feecb069
MD5 f7e8b768f5b50d04dfaabe210680cf97
BLAKE2b-256 a38cec46f4aa95515989711a7893e64c30f9d33c58eaccc01f8f37c4513739a2

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f70f0133301cccf9bfd68fd20f67184ef991be578b646e78441106f9e27cc44d
MD5 aa58fa2d41d704113b6ac464ba33bace
BLAKE2b-256 8952829cb3b58047af08f4cf7905be3545b7718b96e9c83142072edb48ee5d05

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 345.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1f9fe869e289210250cba4ea20fbd169905b1793e1cd2737f423e107061afa98
MD5 8c8102454c6c3bb98fd10b08629af90b
BLAKE2b-256 5ddb012f8573cf803009cce725906116bbc2d7fee04a4089e8d6ad2ecf55df0d

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 446.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a102b346f1921237eaa9a31ee89eda57ad3c3973d79be3a456d92524e7df8fec
MD5 2ece0eac7cdd1b11c29e38d34927ba1a
BLAKE2b-256 6d27f30b90f40054948b32df04a8e6355946874d084ac73755986b28d3003578

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 440.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5dca250cbf1183c3e7b7b18c882c2b2199bfb20c74c4c68dbf11596808a296da
MD5 fa3f836a8daf595252adf2fe3ce44427
BLAKE2b-256 ae9e41b02ebf88694128fe27335df5b5cdeeebfda312439a453757717635ce03

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 378.8 kB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

File hashes

Hashes for pymongo-3.9.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4ff8f5e7c0a78983c1ee07894fff1b21c0e0ad3a122d9786cc3745fd60e4a2ce
MD5 6cd7d382a4b65e01f75b07323f7df503
BLAKE2b-256 fc79c298dfe767f6937f0d5eaefa412ca6897ec27c1834e325a71476c7c6f2ce

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 347.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 fa75c21c1d82f20cce62f6fc4a68c2b0f33572ab406df1b17cd77a947d0b2993
MD5 dc0a2fbe3e7c65606d9d25011f7ad07f
BLAKE2b-256 55bbb220bfbe9b800d6e09e488679a11a44dd36ffa05dfb2a467ac197647d25a

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 341.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9b705daec636c560dd2d63935f428a6b3cddfe903fffc0f349e0e91007c893d6
MD5 b290738977c2c37077d646ca608fc003
BLAKE2b-256 609f4d16daa06c9740f0c74bc1e69171adf3929792a14b5056db02652a5508a5

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 446.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cca4e1ab5ba0cd7877d3938167ee8ae9c2986cc0e10d3dcc3243d664d3a83fec
MD5 1b682b9087587f4e12ce9ffda0e32388
BLAKE2b-256 fe963f43c48b2801e5cefe893421d67640cdc2b7cd940a51790b5c2062fb044e

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 440.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1be549c0ce2ba8242c149156ae2064b12a5d4704448d49f630b4910606efd474
MD5 d881595dfe67c0f934916bc1b9f82f7c
BLAKE2b-256 ae3b56e84d9458be0097adac3c79c742695a9ad59e1a3824a75700e73a7eaf46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.9.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 378.8 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

File hashes

Hashes for pymongo-3.9.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 88ac09e1b197c3b4531e43054d49c022a3ea1281431b2f4980abafa35d2a5ce2
MD5 995148c3b3ab28e787652d009516afd2
BLAKE2b-256 f154680f809b213a711e546359d69e21fe97200f1b4379b907c462c94a678a4f

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 344.3 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 ad474e93525baa6c58d75d63a73143af24c9f93c8e26e8d382f32c4da637901a
MD5 355199f1bc9b77901197e84da76cc95d
BLAKE2b-256 f5dbd34d842f933729988f80d4da2d45e6760541238ee665cc63e9059554c48a

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp34-cp34m-win32.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 341.0 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 3653cea82d1e35edd0a2355150daf8a27ebf12cf55182d5ad1046bfa288f5140
MD5 507db64d562906986938276b904b90ad
BLAKE2b-256 7c4bd5a9114220c48a4b3b2872e149eccb78fcbdc13821dd5b2a260788ecc569

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 447.2 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e28153b5d5ca33d4ba0c3bbc0e1ff161b9016e5e5f3f8ca10d6fa49106eb9e04
MD5 28417aa4b3290b9aa0e24a91764e3cb6
BLAKE2b-256 53e93f03ea2423e54731fc0a80f420574bdc6c1f4f6ab7d3605d1ae021b457ae

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 440.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b0339809b12ea292d468524dd1777f1a9637d9bdc0353a9261b88f82537d606
MD5 93e68dd6e04dc3ca9a2e4c8b94be8fb1
BLAKE2b-256 f4abe249ba0fac080ab94a232da359ba1c4540d9d6e95e9e14a97295db118566

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.9.0-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 378.5 kB
  • Tags: CPython 3.4m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

File hashes

Hashes for pymongo-3.9.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f30d7b37804daf0bab1143abc71666c630d7e270f5c14c5a7c300a6699c21108
MD5 4f0e0d4433bec7ed5f5d15a8433b59e4
BLAKE2b-256 a7a8e5c2982f85023db394b1bde97e8b5a8d6453e25d37615c459344feaf9f1d

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 440.4 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a76475834a978058425b0163f1bad35a5f70e45929a543075633c3fc1df564c5
MD5 d8731011abd81fad16c3e304415d3bcf
BLAKE2b-256 005c5379d5b8167a5938918d9ee147f865f6f8a64b93947d402cfdca5c1416d2

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 432.8 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 09f8196e1cb081713aa3face08d1806dc0a5dd64cb9f67fefc568519253a7ff2
MD5 eaea279bdff721e289c42ce528b3501a
BLAKE2b-256 f4bdd2cd4f019d20682b69d03caa4db0a1c9895208c1f96f44e01f2366831b68

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 348.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a090a819fe6fefadc2901d3911c07c76c0935ec5c790a50e9f3c3c47bacd5978
MD5 0269dfa5a96e7b265c65f5bb7d30144c
BLAKE2b-256 1ade61cc44ad6bc903022f11334bdce005760372a1b35decb0a0f371e2fc4906

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 345.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16

File hashes

Hashes for pymongo-3.9.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 cef61de3f0f4441ec40266ff2ab42e5c16eaba1dc1fc6e1036f274621c52adc1
MD5 32690f192ccc4528501d17b5909fb660
BLAKE2b-256 353b6c9dc14e8e582129a5f01b1d75a1c27bd5aa74f681082ab12d2ea709d6b6

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 440.4 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 86624c0205a403fb4fbfedef79c5b4ab27e21fd018fdb6a27cf03b3c32a9e2b9
MD5 32f005dbd560ba229076725703325e5b
BLAKE2b-256 928ded22f234bf8016400d34b5bd40f895964f2f185fe7fc63513ffd476e1f30

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 432.8 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.9

File hashes

Hashes for pymongo-3.9.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 56ec9358bbfe5ae3b25e785f8a14619d6799c855a44734c9098bb457174019bf
MD5 6d974c6a31990aab885138d320066942
BLAKE2b-256 9a1ebdb092c9290c568092563ff75f57da86174f8bd3ee212ae4ba877916d05a

See more details on using hashes here.

File details

Details for the file pymongo-3.9.0-cp27-cp27m-macosx_10_14_intel.whl.

File metadata

  • Download URL: pymongo-3.9.0-cp27-cp27m-macosx_10_14_intel.whl
  • Upload date:
  • Size: 339.9 kB
  • Tags: CPython 2.7m, macOS 10.14+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.10

File hashes

Hashes for pymongo-3.9.0-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 a409a43c76da50881b70cc9ee70a1744f882848e8e93a68fb434254379777fa3
MD5 4d47af672dea51bb8e8c34334a14d3f0
BLAKE2b-256 25b194226fd63725b8f429da93a50412f523524f8c30259e75d26ac708ec824b

See more details on using hashes here.

Supported by

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