Skip to main content
Info:

See the mongo site for more information. See GitHub for the latest source.

Author:

Mike Dirolf

Maintainer:

Bernie Hackett <bernie@mongodb.com>

About

The PyMongo distribution contains tools for interacting with MongoDB database from Python. The bson package is an implementation of the BSON format for Python. The pymongo package is a native Python driver for MongoDB. The gridfs package is a gridfs implementation on top of pymongo.

PyMongo supports MongoDB 2.6, 3.0, 3.2, 3.4, 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

Release files for pymongo 3.10.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pymongo 3.10.1
File Size Uploaded
pymongo-3.10.1.tar.gz 715.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 3.10.1
File
pymongo-3.10.1-py2.7-win-amd64.egg Legacy Egg format - - Details
pymongo-3.10.1-py2.7-win32.egg Legacy Egg format - - Details
pymongo-3.10.1-py2.7-macosx-10.14-intel.egg Legacy Egg format - - Details
pymongo-3.10.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pymongo-3.10.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pymongo-3.10.1-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pymongo-3.10.1-cp38-cp38-manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
pymongo-3.10.1-cp38-cp38-manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.10.1-cp38-cp38-manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pymongo-3.10.1-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymongo-3.10.1-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
pymongo-3.10.1-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymongo-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pymongo-3.10.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymongo-3.10.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymongo-3.10.1-cp37-cp37m-manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.10.1-cp37-cp37m-manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.10.1-cp37-cp37m-manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.10.1-cp37-cp37m-manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-3.10.1-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.10.1-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.10.1-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.10.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
pymongo-3.10.1-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pymongo-3.10.1-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pymongo-3.10.1-cp36-cp36m-manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.10.1-cp36-cp36m-manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.10.1-cp36-cp36m-manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.10.1-cp36-cp36m-manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-3.10.1-cp36-cp36m-manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.10.1-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.10.1-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.10.1-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
pymongo-3.10.1-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
pymongo-3.10.1-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
pymongo-3.10.1-cp35-cp35m-manylinux2014_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.10.1-cp35-cp35m-manylinux2014_s390x.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.10.1-cp35-cp35m-manylinux2014_ppc64le.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.10.1-cp35-cp35m-manylinux2014_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-3.10.1-cp35-cp35m-manylinux2014_aarch64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.10.1-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.10.1-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.10.1-cp35-cp35m-macosx_10_6_intel.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.10.1-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
pymongo-3.10.1-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
pymongo-3.10.1-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.10.1-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.10.1-cp34-cp34m-macosx_10_6_intel.whl CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.10.1-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
pymongo-3.10.1-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.10.1-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
pymongo-3.10.1-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
pymongo-3.10.1-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.10.1-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.10.1-cp27-cp27m-macosx_10_14_intel.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386) Details

Total release size: 24.7 MB

Release files / pymongo-3.10.1.tar.gz

Download URL pymongo-3.10.1.tar.gz
Size 715.9 kB
Tags Source
SHA-256 checksum
How to use checksums
993257f6ca3cde55332af1f62af3e04ca89ce63c08b56a387cdd46136c72f2fa
BLAKE2b-256 checksum
How to use checksums
dc9b6791f7219f3573bfaa2251da4d814f4fbc49f0bbb258df1e08f7d89a7b85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-py2.7-win-amd64.egg
Size 716.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
ad3dc88dfe61f0f1f9b99c6bc833ea2f45203a937a18f0d2faa57c6952656012
BLAKE2b-256 checksum
How to use checksums
bb11159930f24bc711be861636c7e3e4573ca473aa6eb067cfb54c062b677b47
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymongo-3.10.1-py2.7-win32.egg
Size 712.2 kB
Tags Egg
SHA-256 checksum
How to use checksums
f4d06764a06b137e48db6d569dc95614d9d225c89842c885669ee8abc9f28c7a
BLAKE2b-256 checksum
How to use checksums
ec077929e3b1756b35cf6c9b61b6cf50ebffdefd8a943c5f4af0837ddc6ebeb5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymongo-3.10.1-py2.7-macosx-10.14-intel.egg

Download URL pymongo-3.10.1-py2.7-macosx-10.14-intel.egg
Size 712.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
bd9c1e6f92b4888ae3ef7ae23262c513b962f09f3fb3b48581dde5df7d7a860a
BLAKE2b-256 checksum
How to use checksums
f59dc6f84b9153120fb1818fe19a1b5ea23cf20b09d7b97b6ed9e05ee0d6d0f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-win_amd64.whl

Download URL pymongo-3.10.1-cp38-cp38-win_amd64.whl
Size 355.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
5a2c492680c61b440272341294172fa3b3751797b1ab983533a770e4fb0a67ac
BLAKE2b-256 checksum
How to use checksums
775ef30374f2a997710913c7616eb087e6473ccfd8a46eacee956d7fb8c7dd27
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymongo-3.10.1-cp38-cp38-win32.whl

Download URL pymongo-3.10.1-cp38-cp38-win32.whl
Size 349.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
31d11a600eea0c60de22c8bdcb58cda63c762891facdcb74248c36713240987f
BLAKE2b-256 checksum
How to use checksums
82895c4307a303044b21553251a73df722984263018c8352c6478674f4a4b599
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymongo-3.10.1-cp38-cp38-manylinux2014_x86_64.whl

Download URL pymongo-3.10.1-cp38-cp38-manylinux2014_x86_64.whl
Size 480.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ae65d65fde4135ef423a2608587c9ef585a3551fc2e4e431e7c7e527047581be
BLAKE2b-256 checksum
How to use checksums
c30f087858b27bb800b589c18791f735fe16b12f160c41616dfc670aae159165
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-manylinux2014_s390x.whl

Download URL pymongo-3.10.1-cp38-cp38-manylinux2014_s390x.whl
Size 482.4 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1396eb7151e0558b1f817e4b9d7697d5599e5c40d839a9f7270bd90af994ad82
BLAKE2b-256 checksum
How to use checksums
c5ff6be51b287998df657bf38fdcf03c1ea49adc668c1646bdb1cf5b95006183
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-manylinux2014_ppc64le.whl

Download URL pymongo-3.10.1-cp38-cp38-manylinux2014_ppc64le.whl
Size 488.5 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a3b98121e68bf370dd8ea09df67e916f93ea95b52fc010902312168c4d1aff5d
BLAKE2b-256 checksum
How to use checksums
8b30dc99246f8834eff95fdbf0617e55fb7d9d127b592e2ded0a3635bd40f3c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-manylinux2014_i686.whl

Download URL pymongo-3.10.1-cp38-cp38-manylinux2014_i686.whl
Size 451.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
80df3caf251fe61a3f0c9614adc6e2bfcffd1cd3345280896766712fb4b4d6d7
BLAKE2b-256 checksum
How to use checksums
48a04bec4095449d32a35b377f0bed250e667f78866e9176b804dde1d33a2cc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-manylinux2014_aarch64.whl

Download URL pymongo-3.10.1-cp38-cp38-manylinux2014_aarch64.whl
Size 479.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
20ee0475aa2ba437b0a14806f125d696f90a8433d820fb558fdd6f052acde103
BLAKE2b-256 checksum
How to use checksums
a1b0c3da6fd3991ff52c833e321b01935c31dde4649f5d709ac58cdf98303df8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-manylinux1_x86_64.whl

Download URL pymongo-3.10.1-cp38-cp38-manylinux1_x86_64.whl
Size 464.3 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
53b711b33134e292ef8499835a3df10909c58df53a2a0308f598c432e9a62892
BLAKE2b-256 checksum
How to use checksums
d6384233ec79dd40551e7b5eea381ae4a925322b19e3b3252e80f3ce9fee4a5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-manylinux1_i686.whl

Download URL pymongo-3.10.1-cp38-cp38-manylinux1_i686.whl
Size 451.9 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6238ac1f483494011abde5286282afdfacd8926659e222ba9b74c67008d3a58c
BLAKE2b-256 checksum
How to use checksums
5d056c93b16e6823caffa998ff8530504507c9c72a70ac27959212e55f8dffb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pymongo-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 351.4 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
dd8055da300535eefd446b30995c0813cc4394873c9509323762a93e97c04c03
BLAKE2b-256 checksum
How to use checksums
5e25372cc21c6ad318356fa819ca9b5bf021b747cd5a00b868c1db1e3e8fe228
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-win_amd64.whl

Download URL pymongo-3.10.1-cp37-cp37m-win_amd64.whl
Size 354.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
4c092310f804a5d45a1bcaa4191d6d016c457b6ed3982a622c35f729ff1c7f6b
BLAKE2b-256 checksum
How to use checksums
5bdfd0f82279467c72dd0c8cd1908e04a7fb56145a5d222704722e2593af79f1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymongo-3.10.1-cp37-cp37m-win32.whl

Download URL pymongo-3.10.1-cp37-cp37m-win32.whl
Size 348.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c318fb70542be16d3d4063cde6010b1e4d328993a793529c15a619251f517c39
BLAKE2b-256 checksum
How to use checksums
5c346a90aaefe4e866f17546a4a7b317dfe61cbb373f304ddd7a7644dbbe78ec
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymongo-3.10.1-cp37-cp37m-manylinux2014_x86_64.whl

Download URL pymongo-3.10.1-cp37-cp37m-manylinux2014_x86_64.whl
Size 462.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4c067db43b331fc709080d441cb2e157114fec60749667d12186cc3fc8e7a951
BLAKE2b-256 checksum
How to use checksums
2fe291a313e50adcf35182e260d65cf7ec60f6f0367abefc2fbab264e6f4544d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-manylinux2014_s390x.whl

Download URL pymongo-3.10.1-cp37-cp37m-manylinux2014_s390x.whl
Size 463.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c06b3f998d2d7160db58db69adfb807d2ec307e883e2f17f6b87a1ef6c723f11
BLAKE2b-256 checksum
How to use checksums
523e0e7206900cce25301e4dd132d5e5fbf2785686f9b0326a7069c72c0b2fde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-manylinux2014_ppc64le.whl

Download URL pymongo-3.10.1-cp37-cp37m-manylinux2014_ppc64le.whl
Size 470.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
61235cc39b5b2f593086d1d38f3fc130b2d125bd8fc8621d35bc5b6bdeb92bd2
BLAKE2b-256 checksum
How to use checksums
0ff18a6f9b15168def6646208be39ce07d0fe0e52465c457ec15d0f16e72821e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-manylinux2014_i686.whl

Download URL pymongo-3.10.1-cp37-cp37m-manylinux2014_i686.whl
Size 441.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c4aef42e5fa4c9d5a99f751fb79caa880dac7eaf8a65121549318b984676a1b7
BLAKE2b-256 checksum
How to use checksums
eebe352f055c2204c254d8f195fb9380aafc8629b2139b686ed27a3fa62e09f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-manylinux2014_aarch64.whl

Download URL pymongo-3.10.1-cp37-cp37m-manylinux2014_aarch64.whl
Size 462.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3a6568bc53103df260f5c7d2da36dffc5202b9a36c85540bba1836a774943794
BLAKE2b-256 checksum
How to use checksums
a3b2203b67b67c7ccc5d1f0805afd816e0b19191ba7480824db33c387c711014
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-manylinux1_x86_64.whl

Download URL pymongo-3.10.1-cp37-cp37m-manylinux1_x86_64.whl
Size 451.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
26798795097bdeb571f13942beef7e0b60125397811c75b7aa9214d89880dd1d
BLAKE2b-256 checksum
How to use checksums
be1899380a20b3ae8a54914e0d3dba99807def9a47421eff55638f120f950066
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-manylinux1_i686.whl

Download URL pymongo-3.10.1-cp37-cp37m-manylinux1_i686.whl
Size 441.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
01b4e10027aef5bb9ecefbc26f5df3368ce34aef81df43850f701e716e3fe16d
BLAKE2b-256 checksum
How to use checksums
9418eeed9d6d0440ade3363e375d0c6bd59316886a4b3df27f57feffe103096c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pymongo-3.10.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 350.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b6da85949aa91e9f8c521681344bd2e163de894a5492337fba8b05c409225a4f
BLAKE2b-256 checksum
How to use checksums
23cd27fbc08f0bd835b4735504a758756e979b42c5bc9ebaac5ed3c2cbffd83f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp36-cp36m-win_amd64.whl
Size 354.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
568d6bee70652d8a5af1cd3eec48b4ca1696fb1773b80719ebbd2925b72cb8f6
BLAKE2b-256 checksum
How to use checksums
40bc015c54f2a26cba27763a0ce6a11d0ea6c647967d96ac6ae19e02c6598094
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymongo-3.10.1-cp36-cp36m-win32.whl
Size 348.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
18e84a3ec5e73adcb4187b8e5541b2ad61d716026ed9863267e650300d8bea33
BLAKE2b-256 checksum
How to use checksums
f6ac96be4a536f9808fe860d22a2c3faa07b054b6ad3c83e4810736b92990602
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymongo-3.10.1-cp36-cp36m-manylinux2014_x86_64.whl

Download URL pymongo-3.10.1-cp36-cp36m-manylinux2014_x86_64.whl
Size 460.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
26e707a4eb851ec27bb969b5f1413b9b2eac28fe34271fa72329100317ea7c73
BLAKE2b-256 checksum
How to use checksums
dfa584cf94d7718a107d84ac897c39850bbdd509a924b05942cad4768031ac6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp36-cp36m-manylinux2014_s390x.whl

Download URL pymongo-3.10.1-cp36-cp36m-manylinux2014_s390x.whl
Size 461.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
19adf2848b80cb349b9891cc854581bbf24c338be9a3260e73159bdeb2264464
BLAKE2b-256 checksum
How to use checksums
387614335fe2015e4cb3fb4c07b3e9be9b280eb2f4edd39a533b1b5aca4353cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp36-cp36m-manylinux2014_ppc64le.whl

Download URL pymongo-3.10.1-cp36-cp36m-manylinux2014_ppc64le.whl
Size 467.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
619ac9aaf681434b4d4718d1b31aa2f0fce64f2b3f8435688fcbdc0c818b6c54
BLAKE2b-256 checksum
How to use checksums
66e0d4aaa8f25970a52449549d57c245bdaa68b3f19d4c3b0adeaf00d641a0b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp36-cp36m-manylinux2014_i686.whl

Download URL pymongo-3.10.1-cp36-cp36m-manylinux2014_i686.whl
Size 439.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
95f970f34b59987dee6f360d2e7d30e181d58957b85dff929eee4423739bd151
BLAKE2b-256 checksum
How to use checksums
cad1b431d19fdd7f4e614ddf6304824c7ce1e38d2ccd4dfbbd364176e11a186b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp36-cp36m-manylinux2014_aarch64.whl

Download URL pymongo-3.10.1-cp36-cp36m-manylinux2014_aarch64.whl
Size 460.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a60756d55f0887023b3899e6c2923ba5f0042fb11b1d17810b4e07395404f33e
BLAKE2b-256 checksum
How to use checksums
1249f6fe1e6ec34f10804f5dbf028254b1f2738ed5cc91fa2be6937f52aae340
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp36-cp36m-manylinux1_x86_64.whl
Size 450.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f96333f9d2517c752c20a35ff95de5fc2763ac8cdb1653df0f6f45d281620606
BLAKE2b-256 checksum
How to use checksums
49011da7d3709ea54b3b4623c32d521fb263da14822c7d9064d7fd9eeb0b492c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp36-cp36m-manylinux1_i686.whl
Size 439.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
444bf2f44264578c4085bb04493bfed0e5c1b4fe7c2704504d769f955cc78fe4
BLAKE2b-256 checksum
How to use checksums
954c876345ddf28b4e56af53b742f34be4c57c7d616989291d7c4d80fbdfbce4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL pymongo-3.10.1-cp36-cp36m-macosx_10_9_x86_64.whl
Size 346.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2a3c7ad01553b27ec553688a1e6445e7f40355fb37d925c11fcb50b504e367f8
BLAKE2b-256 checksum
How to use checksums
c078b4d1bf9d572cf283fb5a97ddaa289feb6d6bcd72faf5c4303e313c7100b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp35-cp35m-win_amd64.whl
Size 354.3 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
316f0cf543013d0c085e15a2c8abe0db70f93c9722c0f99b6f3318ff69477d70
BLAKE2b-256 checksum
How to use checksums
9c85542066affca88a0fb2728469a29e442a7f9c924e7a911bfcd6ebff58d7a4
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymongo-3.10.1-cp35-cp35m-win32.whl
Size 348.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c9ca545e93a9c2a3bdaa2e6e21f7a43267ff0813e8055adf2b591c13164c0c57
BLAKE2b-256 checksum
How to use checksums
f98e2e88eee59703fa914d821b649b896f8b21f0249264f40ed8ebaab3b501fc
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymongo-3.10.1-cp35-cp35m-manylinux2014_x86_64.whl

Download URL pymongo-3.10.1-cp35-cp35m-manylinux2014_x86_64.whl
Size 459.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a676bd2fbc2309092b9bbb0083d35718b5420af3a42135ebb1e4c3633f56604d
BLAKE2b-256 checksum
How to use checksums
121d6fe8beb704e81d3676433a7dd4c7f79938ee6c25f322112b0951b1157738
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp35-cp35m-manylinux2014_s390x.whl

Download URL pymongo-3.10.1-cp35-cp35m-manylinux2014_s390x.whl
Size 460.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
6fdc5ccb43864065d40dd838437952e9e3da9821b7eac605ba46ada77f846bdf
BLAKE2b-256 checksum
How to use checksums
398a0c89a8caf87067b1c61b654ffc4727684769c5980ac07ac3b8844c6e7965
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp35-cp35m-manylinux2014_ppc64le.whl

Download URL pymongo-3.10.1-cp35-cp35m-manylinux2014_ppc64le.whl
Size 467.1 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b070a4f064a9edb70f921bfdc270725cff7a78c22036dd37a767c51393fb956f
BLAKE2b-256 checksum
How to use checksums
d9f9851be92cc437e4a008b252cf510c32fd1c76c09a1e9cb5f71151d91f0adc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp35-cp35m-manylinux2014_i686.whl

Download URL pymongo-3.10.1-cp35-cp35m-manylinux2014_i686.whl
Size 439.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
63752a72ca4d4e1386278bd43d14232f51718b409e7ac86bcf8810826b531113
BLAKE2b-256 checksum
How to use checksums
93c5be1f1970c3cc71c104618c788b577454b527eec3cbd36149f34558f05e43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp35-cp35m-manylinux2014_aarch64.whl

Download URL pymongo-3.10.1-cp35-cp35m-manylinux2014_aarch64.whl
Size 459.3 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e2b46e092ea54b732d98c476720386ff2ccd126de1e52076b470b117bff7e409
BLAKE2b-256 checksum
How to use checksums
a43f393f248c0309009b3d9312ef903b6c08b3854100bfb39df91768fa7198a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp35-cp35m-manylinux1_x86_64.whl
Size 450.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
9c0a57390549affc2b5dda24a38de03a5c7cbc58750cd161ff5d106c3c6eec80
BLAKE2b-256 checksum
How to use checksums
5b08c0e0f1dff3a996f5ef4ba0cedf5d4c900748bbe5f1a811e78880678046d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp35-cp35m-manylinux1_i686.whl
Size 439.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7abc3a6825a346fa4621a6f63e3b662bbb9e0f6ffc32d30a459d695f20fb1a8b
BLAKE2b-256 checksum
How to use checksums
e28dca47a982d8b6abaf904c41b17d5c3628d197a0ed1d535db1f0e79ac0e39a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp35-cp35m-macosx_10_6_intel.whl
Size 385.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
47a00b22c52ee59dffc2aad02d0bbfb20c26ec5b8de8900492bf13ad6901cf35
BLAKE2b-256 checksum
How to use checksums
d51f3f7dc57ff8e38d0b05ce931872eb55902a2e32eb8d37e6cf5a8d1d6de875
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp34-cp34m-win_amd64.whl
Size 351.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7aef381bb9ae8a3821abd7f9d4d93978dbd99072b48522e181baeffcd95b56ae
BLAKE2b-256 checksum
How to use checksums
d5d8d721027cc53b576be65a7edef31c469ac6a181f490be4319a4488f1a4207
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymongo-3.10.1-cp34-cp34m-win32.whl
Size 348.0 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
2f07b27dbf303ea53f4147a7922ce91a26b34a0011131471d8aaf73151fdee9a
BLAKE2b-256 checksum
How to use checksums
5cbf94d206e2125c657474bd9a9d73596283df19d21c09200897e932d0ed6365
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymongo-3.10.1-cp34-cp34m-manylinux1_x86_64.whl
Size 451.7 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0fc5aa1b1acf7f61af46fe0414e6a4d0c234b339db4c03a63da48599acf1cbfc
BLAKE2b-256 checksum
How to use checksums
914887c781b3ed4670cbdf4652d3121f93c1411c214d9d9d2a76199cdf20460d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp34-cp34m-manylinux1_i686.whl
Size 445.0 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
da2c3220eb55c4239dd8b982e213da0b79023cac59fe54ca09365f2bc7e4ad32
BLAKE2b-256 checksum
How to use checksums
17391c7829c808de5dc4ebbbf34d6edd0fb92d6860f3233420d903479f1ceac1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp34-cp34m-macosx_10_6_intel.whl
Size 385.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
56fa55032782b7f8e0bf6956420d11e2d4e9860598dfe9c504edec53af0fc372
BLAKE2b-256 checksum
How to use checksums
09f13bad17c2a237f472de5317c1c37426c728cf7d870939652a314b166afbfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp27-cp27mu-manylinux1_x86_64.whl
Size 445.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
bbf47110765b2a999803a7de457567389253f8670f7daafb98e059c899ce9764
BLAKE2b-256 checksum
How to use checksums
589fc690c5223d8f7658852bf69cfefa308fa68a6353e11279aa199d6d28a3cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp27-cp27mu-manylinux1_i686.whl
Size 437.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a0794e987d55d2f719cc95fcf980fc62d12b80e287e6a761c4be14c60bd9fecc
BLAKE2b-256 checksum
How to use checksums
43b7e335b5fdedda04718236aaff16e42faed4ecca71aec5e453282b4d78c548
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp27-cp27m-win_amd64.whl
Size 351.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
e334c4f39a2863a239d38b5829e442a87f241a92da9941861ee6ec5d6380b7fe
BLAKE2b-256 checksum
How to use checksums
291624a30ebbce95ed5678bd902f7aefdb05e6d9b9508fd9b0f7df09020e9abd
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymongo-3.10.1-cp27-cp27m-win32.whl
Size 347.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e5c54f04ca42bbb5153aec5d4f2e3d9f81e316945220ac318abd4083308143f5
BLAKE2b-256 checksum
How to use checksums
053a9730123f08293d60c1f9565946d58ca49df5a6205910e6d4885aa8831c36
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymongo-3.10.1-cp27-cp27m-manylinux1_x86_64.whl
Size 445.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
334ef3ffd0df87ea83a0054454336159f8ad9c1b389e19c0032d9cb8410660e6
BLAKE2b-256 checksum
How to use checksums
59be5e6c607ac933b4a652ca001d937096621a86d2d0c27ed65b75f594b51a52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

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

Download URL pymongo-3.10.1-cp27-cp27m-manylinux1_i686.whl
Size 437.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
358ba4693c01022d507b96a980ded855a32dbdccc3c9331d0667be5e967f30ed
BLAKE2b-256 checksum
How to use checksums
fd7b6f2c098b39215b2b805ac6812f2b7536e926faf359c8c042801269ac6466
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release files / pymongo-3.10.1-cp27-cp27m-macosx_10_14_intel.whl

Download URL pymongo-3.10.1-cp27-cp27m-macosx_10_14_intel.whl
Size 347.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
a732838c78554c1257ff2492f5c8c4c7312d0aecd7f732149e255f3749edd5ee
BLAKE2b-256 checksum
How to use checksums
48f750a2e546c57d59dbdfe7927c651dd2eb9242c34ffedc46bdc772b82f6753
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.4

Release history Release notifications | RSS feed

4.11

45 release files

4.9.1

59 release files

4.9

59 release files

4.8.0

50 release files

4.7.1

60 release files

4.7.0

60 release files

4.6.3

82 release files

4.6.2

82 release files

4.6.1

82 release files

4.5.0

82 release files

4.4.1

74 release files

4.4.0

74 release files

4.3.3

74 release files

4.3.2

74 release files

4.2.0

67 release files

4.1.1

83 release files

4.0

83 release files

This release

3.10.1 This release

56 release files

3.9.0

31 release files

3.8.0

31 release files

3.7.2

39 release files

3.7.1

47 release files

3.7.0

44 release files

3.5.1

53 release files

3.4.0

49 release files

3.3.1

53 release files

3.3.0

44 release files

3.2.2

61 release files

3.2

61 release files

3.1.1

61 release files

3.1

61 release files

3.0.2

48 release files

3.0.1

49 release files

3.0

49 release files

2.9.5

41 release files

2.9.4

56 release files

2.9.3

67 release files

2.9.1

67 release files

2.9

63 release files

2.8.1

55 release files

2.8

55 release files

2.7.2

56 release files

2.7.1

56 release files

2.7

56 release files

2.6.3

29 release files

2.6

29 release files

2.5.1

34 release files

2.5

34 release files

2.4.2

34 release files

2.4

34 release files

2.3

28 release files

2.2

25 release files

2.1

21 release files

2.0.1

19 release files

2.0

20 release files

1.11

13 release files

1.10

13 release files

1.9

9 release files

1.8.1

8 release files

1.8

8 release files

1.7

8 release files

1.6

6 release files

1.5.2

6 release files

1.5.1

6 release files

1.5

6 release files

1.4

6 release files

1.3

6 release files

1.2.1

6 release files

1.2

6 release files

1.1.2

6 release files

1.1.1

4 release files

1.1

6 release files

1.0

6 release files

0.16

6 release files

0.15

7 release files

0.14.2

6 release files

0.14.1

5 release files

0.14

5 release files

0.13

5 release files

0.12

5 release files

0.11.3

5 release files

0.11

2 release files

0.10.3

2 release files

0.10.2

2 release files

0.10.1

2 release files

0.10

2 release files

0.9.7

2 release files

0.9.6

2 release files

0.9.5

2 release files

0.9.4

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9

2 release files

0.8.1

2 release files

0.8

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7

2 release files

0.6

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page