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 and 4.0.

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]

You can install all dependencies automatically with the following command:

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

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

Uploaded Source

Built Distributions

pymongo-3.8.0-py2.7-win-amd64.egg (646.7 kB view details)

Uploaded Source

pymongo-3.8.0-py2.7-win32.egg (642.6 kB view details)

Uploaded Source

pymongo-3.8.0-py2.7-macosx-10.13-intel.egg (673.0 kB view details)

Uploaded Source

pymongo-3.8.0-cp37-cp37m-win_amd64.whl (317.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-3.8.0-cp37-cp37m-win32.whl (312.5 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.8.0-cp37-cp37m-manylinux1_x86_64.whl (417.1 kB view details)

Uploaded CPython 3.7m

pymongo-3.8.0-cp37-cp37m-manylinux1_i686.whl (411.7 kB view details)

Uploaded CPython 3.7m

pymongo-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl (314.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pymongo-3.8.0-cp36-cp36m-win_amd64.whl (321.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.8.0-cp36-cp36m-win32.whl (316.2 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.8.0-cp36-cp36m-manylinux1_x86_64.whl (416.1 kB view details)

Uploaded CPython 3.6m

pymongo-3.8.0-cp36-cp36m-manylinux1_i686.whl (410.7 kB view details)

Uploaded CPython 3.6m

pymongo-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl (314.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pymongo-3.8.0-cp35-cp35m-win_amd64.whl (321.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.8.0-cp35-cp35m-win32.whl (316.2 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.8.0-cp35-cp35m-manylinux1_x86_64.whl (415.9 kB view details)

Uploaded CPython 3.5m

pymongo-3.8.0-cp35-cp35m-manylinux1_i686.whl (410.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.8.0-cp35-cp35m-macosx_10_6_intel.whl (352.9 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.8.0-cp34-cp34m-win_amd64.whl (318.6 kB view details)

Uploaded CPython 3.4m Windows x86-64

pymongo-3.8.0-cp34-cp34m-win32.whl (315.6 kB view details)

Uploaded CPython 3.4m Windows x86

pymongo-3.8.0-cp34-cp34m-manylinux1_x86_64.whl (417.1 kB view details)

Uploaded CPython 3.4m

pymongo-3.8.0-cp34-cp34m-manylinux1_i686.whl (410.5 kB view details)

Uploaded CPython 3.4m

pymongo-3.8.0-cp34-cp34m-macosx_10_6_intel.whl (352.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

pymongo-3.8.0-cp27-cp27mu-manylinux1_x86_64.whl (410.2 kB view details)

Uploaded CPython 2.7mu

pymongo-3.8.0-cp27-cp27mu-manylinux1_i686.whl (402.8 kB view details)

Uploaded CPython 2.7mu

pymongo-3.8.0-cp27-cp27m-win_amd64.whl (319.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.8.0-cp27-cp27m-win32.whl (315.3 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.8.0-cp27-cp27m-manylinux1_x86_64.whl (410.1 kB view details)

Uploaded CPython 2.7m

pymongo-3.8.0-cp27-cp27m-manylinux1_i686.whl (402.7 kB view details)

Uploaded CPython 2.7m

pymongo-3.8.0-cp27-cp27m-macosx_10_13_intel.whl (344.5 kB view details)

Uploaded CPython 2.7m macOS 10.13+ intel

File details

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

File metadata

  • Download URL: pymongo-3.8.0.tar.gz
  • Upload date:
  • Size: 649.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0.tar.gz
Algorithm Hash digest
SHA256 9d50c99c6388863cbfdc5db9bad62e3a7c2e5fc151554a07c7f3c2530334a34f
MD5 3e8035f85cfb2be95207724c59bddfaa
BLAKE2b-256 1977da358f5729ff046ceaf6c6a86755f9d8285719f93df6da15bb2440367d7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-py2.7-win-amd64.egg
  • Upload date:
  • Size: 646.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 74838f04da0b3995b830fe1f00f9b200831582cbc42a22b77e04dfb717cb0d56
MD5 144b598c1419ffda5288a8fbed753b15
BLAKE2b-256 0fba7385c50e15a9c225f292c7dd48d874749b1fe1d64b59630ae855353127c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-py2.7-win32.egg
  • Upload date:
  • Size: 642.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 c3e813b1bd0b883639e30170dc9daccb9b6ef7e81836188b88d3fc7364892b35
MD5 a1f4f7faaaf5e1c689518b362d6acf8d
BLAKE2b-256 8149e1d7ce2f7faf89f35da790f8c1e2f0b0ab3903e00d5cbb93e3d2aa9bb844

See more details on using hashes here.

File details

Details for the file pymongo-3.8.0-py2.7-macosx-10.13-intel.egg.

File metadata

  • Download URL: pymongo-3.8.0-py2.7-macosx-10.13-intel.egg
  • Upload date:
  • Size: 673.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-py2.7-macosx-10.13-intel.egg
Algorithm Hash digest
SHA256 3b6336b1d2a1ac2fcc8f629070016f3c76ad7dc969f269232471953d6dd17c0d
MD5 8d7ee613f2286729a81a51bee596f9ad
BLAKE2b-256 8a0f8057a2d5d9e96be832b09415fb50aa3843e8e5e34f28bc375a859696bee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 317.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 61cad83637ae12c1c825130d7f9325cd6c162e3a64e8747a8144866020be3ff4
MD5 5ef3c8405746f3feeeff10a03ed8f375
BLAKE2b-256 57b0acf286a558e19dc0992354181c8650dffc79fced47a4555e49ca70acf426

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 312.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d9cc103a4e97f78bc77a1d72759ab3722f6cdf0374ad4fb4b0c53bd3238bdf98
MD5 0d0956633527ed789e0bf212ce0699f8
BLAKE2b-256 92d26993655f5c46755cf3385ef8cec78f49909e035777724a0bf02251de733f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 417.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d48a94edf3cdd34524936a72ea01b352682b337f33a42db10ba29a96c37147d3
MD5 b04f7437519809ce275375cb0c4d5437
BLAKE2b-256 eef9c748aa7807dafcc5eade282db46e16242b15dfe951da10ff434fd22ca282

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 411.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ef89ec435e89da902451dde6845066fe2770befaf0301fe2a1ac426b51fced3
MD5 98a12d49d95bbd0c7993b945829c0e5e
BLAKE2b-256 f3c087bb4e061a0436dd17af6061c2f5534495c1e885d2eedfb8ef44c0fcb781

See more details on using hashes here.

File details

Details for the file pymongo-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymongo-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 314.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4d7ff9957ee770cf03bd7156a68a2f2e838e60712d9608eadc8741c15d01e72
MD5 2e7e773d6f6307ac670ca9d439d510da
BLAKE2b-256 bdee35337df27629f1936591e90b97ad3a19670259ddfa6fbd6b38a12d68454d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 321.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4505ff8b7923dd7a8bed1bf25c9c4d0df5ab0b8b2821f2296533f2149a55f401
MD5 5e6aa0576b4f759a57710816a50ce829
BLAKE2b-256 c7af37efccd56d4d2498240eed09587394e27c5900238f3dc46715844385c202

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 316.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 460b224681ea711e48e3638d15be2249024031b7dcb9622ba19c2e85bd5a26cc
MD5 eb426221e4c6aaad96797163d0325b42
BLAKE2b-256 458aa3c0a1a21344155cd7b9bea861f298dbd1bdec4aefb17252b12e363a647a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 416.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 61e8e1c58b4fdf47ab79b7c7db8bb022c1e40b3b5fcbbaeea5fc94dc5c75638d
MD5 2554fa13301dcd8024e8b5cc8622c705
BLAKE2b-256 fb4a586826433281ca285f0201235fccf63cc29a30fa78bcd72b6a34e365972d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 410.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9569796d48498e4db4e1d56284b626a8ed15f641ce3a8b2085f06bb03f4c2c88
MD5 9b3237876954b0c51567758ec5608cd6
BLAKE2b-256 8a028c073868104e98d56dc4eff01a20145992038f2fd1b5ca8499b1661ad9f3

See more details on using hashes here.

File details

Details for the file pymongo-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymongo-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 314.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54f4770b5810e8dc3cbeed675874195f02bb2bc4e95a9d665068edfb3baff4f7
MD5 bc3f4dd03b1b90ce0d474a20671ce5e5
BLAKE2b-256 0c390ac214d6b0b716ab9e47e72ddb9c7eb6d0d2599d066200eaeba72bebee9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 321.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 fcb9ae8aa9158106c5d98a4349ec0d90b68f052d620b2d24622ba03b91e4d81d
MD5 9767b53d7306dead3e1a349b5fc06842
BLAKE2b-256 53af2ee3cfb8d7e0f2ae4e23f19fcacdb0dbb6821a24093956011d8779f60352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 316.2 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 49375839af76834e9c5c3cc78c78386873fd0b2ad9a0860a7dc4ec9fe73af9dd
MD5 a809c27da72f3b4175a9c2d1866948c1
BLAKE2b-256 2a36924d29379fc92bd96317d94d2a2173d6688fd5571bc9825743eda98e3acf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 415.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 530621906c5dd6d27305b39c4e017701e5f4299aa68b93cde70eb985f94ca26f
MD5 31e422f761ecbf40528402f5aff68285
BLAKE2b-256 6e6aededed811c0b19edb1fd6e381baefc8fef4e2bddc452b43e0bc56bf56e79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 410.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a65f0f71ece86c860d30a1436b646db8ea32aec518845ef2903ca569faec32e
MD5 a2780dc95f98bc8ef8d2ab13dbf6d39a
BLAKE2b-256 595dc73ae33ac6984c572bd28429e0cf0c4e3d86d956c419e584b2c28df934fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.8.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 47473b70c5f3cd5ddd2c49ab3b9ceafdafbbed5bc963f147df22a9343d7978f5
MD5 16c56fb6cd86573ed284426bd7f01bdf
BLAKE2b-256 c897bb3e1c761d60548dfa1adf9a2941883f1dd014362289ba0ccf852543f475

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 318.6 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 d1cd175df7c8b5fc976bade78bf4d9fb5aa7ab465c0f59931e380bbe188ef8fc
MD5 4f37e232cc67a0a4980cbcf0546b81d3
BLAKE2b-256 7680f4c7fa052e5302e53c39584f7eab59b7a69dec5b13020e25a7a9bab63818

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 315.6 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 9ea016c2c011df21f77c1f806ce45129a344ba2d414bd50f9e065b13a4a134be
MD5 cf089814b1599b188a335143aee01bce
BLAKE2b-256 9a19eee5dbd44fdee3ab5190264f99a2072024ce0500961ecbb433051a65fb3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 417.1 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 854e8425e5eb775ccfffad04ecd094c99923d60a2c2d49babb5c435e836a91fa
MD5 5e794e7caa1b2dd92dd9c67a7699844e
BLAKE2b-256 87c8ae16115fb7c28dc1b0fba742952f7425756ec93c5c1dd5676e3fb7af2536

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 410.5 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf1dea28379a16b23e47db312883f07b3ba8d9d6abc1c59e51d4c8ae1820ab43
MD5 c9b43a344b467f4c88073bf489a892fa
BLAKE2b-256 404eacfbb845ad5b0fc4f1b5766b9e4de15640217c9f8206d019c91d98c16058

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.8.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 c1db85c39e6a60588f855dbc7bd68fb0dab796096148ab5aa4abecaff19e1c6e
MD5 26f44a1fec96821e1dbdb672e291d624
BLAKE2b-256 4d1f3a1962c4e451aa0569010b300fe8355c1a2748194fbe8bd28333dd72583f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 410.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 32421df60d06f479d71b6b539642e410ece3006e8910688e68df962c8eb40a21
MD5 5d70f6799cb7b9f56ad901d57698c658
BLAKE2b-256 6eea353a9f8ced71b9e258438aa4d6aa048c1eaf5b774d3ef2273d686fde0947

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 402.8 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cee2fc0b94e66e7230da12fc4b3d34793c49957e16ee04f6468a94e264a1e41d
MD5 3c5dbb647d7f1b5cb85f7f0f8b8285d9
BLAKE2b-256 9e2d0171673c3e9a72e09753cd92f9cae2985cfd3ea3b592b2d188e4cf00b989

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 319.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 324b22a8443e11faca44c96b20e7ec8a9e59a1e664457edeeb4f796080b31cde
MD5 f06e2879045caa78181404ddfe7346cc
BLAKE2b-256 6be9d016e0320f68e242a4924ea44f4e31afcbf4dd5f615a6754bed9c6f6fbb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 315.3 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0

File hashes

Hashes for pymongo-3.8.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6e04e496af7d156b66cce70460011c621ecbadf5dcdce325c7acbb3cd6ea245d
MD5 769149facc3a6b06dcb4277be20db2b6
BLAKE2b-256 e3a014f1f7ee64510ae90baf93a541242329ae1125c7e7ca23844340403084b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 410.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a8421f0823174888fb12a5fa675322e756499d71e77ff712b4412d4b8f3c6503
MD5 7990ccda93401d13af1b39880ac31a55
BLAKE2b-256 cacd44d07715ec95ae55756def88e068d7d7885580ffe8289229258b462b75dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.8.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 402.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aef7d88384ada699976350a285c7a333f96ebc959e98e7d2c98589f47bbf3b7f
MD5 5dce85131b4f71bb533f1f161e1dee37
BLAKE2b-256 d9f78329814ed9a6a3348137035b388e3981f0d98cc7f0cbdf37960fefe7ff7e

See more details on using hashes here.

File details

Details for the file pymongo-3.8.0-cp27-cp27m-macosx_10_13_intel.whl.

File metadata

  • Download URL: pymongo-3.8.0-cp27-cp27m-macosx_10_13_intel.whl
  • Upload date:
  • Size: 344.5 kB
  • Tags: CPython 2.7m, macOS 10.13+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1

File hashes

Hashes for pymongo-3.8.0-cp27-cp27m-macosx_10_13_intel.whl
Algorithm Hash digest
SHA256 5ed9382410e938b0ff76041c34018210504729a83bcf4f6a70c7092c28169f6f
MD5 8209542a91de078a322d21920d21ed41
BLAKE2b-256 8213d1a3e0778aaf400b6ca392401d637907a92ca8dfd5fff281ae78652fcbd4

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