Skip to main content
Info:

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

Documentation:

Available at pymongo.readthedocs.io

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, 4.2, and 4.4.

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 Community Forums.

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]

MONGODB-AWS authentication requires pymongo-auth-aws:

$ python -m pip install pymongo[aws]

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]

OCSP (Online Certificate Status Protocol) requires PyOpenSSL, requests and service_identity:

$ python -m pip install pymongo[ocsp]

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]

Client-Side Field Level Encryption requires pymongocrypt:

$ python -m pip install pymongo[encryption]

You can install all dependencies automatically with the following command:

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

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

Documentation is available at pymongo.readthedocs.io.

To build the documentation, you will need to install sphinx. 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.11.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.11.1
File Size Uploaded
pymongo-3.11.1.tar.gz 769.2 kB Details

Built distributions (wheels)

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

Release files / pymongo-3.11.1.tar.gz

Download URL pymongo-3.11.1.tar.gz
Size 769.2 kB
Tags Source
SHA-256 checksum
How to use checksums
a9c1a2538cd120283e7137ac97ce27ebdfcb675730c5055d6332b0043f4e5a55
BLAKE2b-256 checksum
How to use checksums
15dcbc9f2692cd9ece34236950db1c27573ab28a2a5d1d651af57c67839aa593
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-py2.7-macosx-10.14-intel.egg
Size 773.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
3cf7726216a8792d147ba44433fddc19ed149531fb23899ce82d24a0a90ec2fd
BLAKE2b-256 checksum
How to use checksums
87494c93777a3f40fd6fa1bfe5895b04f55531521c4e5a366820c5563c642703
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-win_amd64.whl

Download URL pymongo-3.11.1-cp39-cp39-win_amd64.whl
Size 383.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
82bc20e554fe9175e6ae53db74c3f094c4d752a55e3b363b93ff93d87a868cb7
BLAKE2b-256 checksum
How to use checksums
674320844082cb4ad39d94e4f515a46d3e78af360be14e0365d6915bd4800940
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-win32.whl

Download URL pymongo-3.11.1-cp39-cp39-win32.whl
Size 377.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
613d30623bd1f9418d5a6999f73066b01831bf7c7789bc3fe2bf44b5fe5dc67d
BLAKE2b-256 checksum
How to use checksums
130ba341872ba8a7bf27a469d1f43f7d729b318e604fa0be4ad692feede74af5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-manylinux2014_x86_64.whl

Download URL pymongo-3.11.1-cp39-cp39-manylinux2014_x86_64.whl
Size 517.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4266ebb14bed0206c73e2f626949679c23a6f935ea4b60529d7c3551f2f3051a
BLAKE2b-256 checksum
How to use checksums
0fc619ae011df5735a3316e096ed864851b6f997fe342a3e8c641f3c04188c0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-manylinux2014_s390x.whl

Download URL pymongo-3.11.1-cp39-cp39-manylinux2014_s390x.whl
Size 520.6 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
251acfa87e07e47044ed7f6157fc63a95020bb4ee9d705fb2faf3b67e6a3574e
BLAKE2b-256 checksum
How to use checksums
6898fee116566399873687e308ea2c40c01664e2a09db1b4d7893c8d0911b945
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-manylinux2014_ppc64le.whl

Download URL pymongo-3.11.1-cp39-cp39-manylinux2014_ppc64le.whl
Size 525.6 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
078e74cffb4955a454dd0955c3fa38327185a41447ac4e368f81c2f0c07e6559
BLAKE2b-256 checksum
How to use checksums
d42dddcb7129f39c52eb96d989010d4447759f290e7ebfd3964d5c181435f7f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-manylinux2014_i686.whl

Download URL pymongo-3.11.1-cp39-cp39-manylinux2014_i686.whl
Size 510.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
56bbbccf22fd91ae88b2dffe56dceb84d80fa808065e6bcbedb86ec7e0f84b3b
BLAKE2b-256 checksum
How to use checksums
90061b770b072931dd637566354a2ee0579cc8af9efbff099f1878928b1012ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-manylinux2014_aarch64.whl

Download URL pymongo-3.11.1-cp39-cp39-manylinux2014_aarch64.whl
Size 517.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
342248b25c193ab20e1145989455d614d4d553334576a72be600ee371fa5de41
BLAKE2b-256 checksum
How to use checksums
44fcdc448143d8e40fd62beff451d4078f55d1486cae9d6eebef94cb6aff3286
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-manylinux1_x86_64.whl

Download URL pymongo-3.11.1-cp39-cp39-manylinux1_x86_64.whl
Size 499.7 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cb81aa36a171ed1c28d615577ab5feae8e0b8e48818833663b446dd2bb8b53cd
BLAKE2b-256 checksum
How to use checksums
470058740af1103d87f8d8adb096f96152667f13317b38aba72315488074db67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-manylinux1_i686.whl

Download URL pymongo-3.11.1-cp39-cp39-manylinux1_i686.whl
Size 510.9 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
00f6c32f86a5bd1cbefcc0a27ea06565628de3bb2e6786d3f0dce0330e70c958
BLAKE2b-256 checksum
How to use checksums
f40b811195d0ba124dfe3af55c2335a869b97b9ae8573f5d94d340a62d1a9abb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pymongo-3.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 379.9 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a122c9e30e49bbd8c5c423e3ea2bcff5deb8a2c504d88cbfc3c21b036295bbf3
BLAKE2b-256 checksum
How to use checksums
ea9d313ea8c168e9f26358218151e98209f3dc3120e919f6de0c05f11ea56ab6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-win_amd64.whl
Size 383.1 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
c66de369d459f081a1860c58c6218da5e30a4c5d07277526f66f6c0b0efe742f
BLAKE2b-256 checksum
How to use checksums
84421f3d4113d738f898514a6e12b2bffe8d083996987ce43a8373230ef43262
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-win32.whl
Size 377.5 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
ebf21c07353d313421212e8ac0b21b6161c81aa71a12471b58629e38c784a751
BLAKE2b-256 checksum
How to use checksums
172e7cada682e46a3b6eefb2b7f063b149632b357f3be35d2bf10f2b24374adc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-manylinux2014_x86_64.whl
Size 531.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4f0023db6168f052ffeec435ca0608ffe8abac17a36b8084bdc348c978e08a23
BLAKE2b-256 checksum
How to use checksums
a2a349865fca57c1c1fd1380b9487576ed6cb4de7eed1e999ad24ddc93fadbad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-manylinux2014_s390x.whl
Size 533.8 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5a07a9983e0bc51ad61a16c228d1b60d1f98f7df5f225f435b41f8921d335e06
BLAKE2b-256 checksum
How to use checksums
2c9d32e55d490e189c074ff3b3f13bbc67631230e1a170dcd12bf0ba393c4740
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-manylinux2014_ppc64le.whl
Size 539.2 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
220216da1d4fb10f941ff5e408f2958896fe534283bb3b1c1c17d4b0ac5d8b45
BLAKE2b-256 checksum
How to use checksums
1db181ce839f5b48f08e79ce3463b537cf108721c3d9d89e6e6d910e802c40cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-manylinux2014_i686.whl
Size 520.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
2c0b0d201182bfbbfb2c679af3118ca53926a31d8c0c21e9b7943f8264ec0052
BLAKE2b-256 checksum
How to use checksums
95efb5226856b849f1549cced86f8f8fca9b4c92df666feaaf6497f302d9d3e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-manylinux2014_aarch64.whl
Size 529.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
903396921ad52c63c423683a141391e28edb8b6dfbd2388a6848b052a9e23863
BLAKE2b-256 checksum
How to use checksums
d95290e4ae8f64e124ecbf547ce2034fd7edb92e3476adf642a0a8c2caf08952
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-manylinux1_x86_64.whl
Size 510.5 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a08c60335a4b1c6348d5be176f379f7b69f2021d1ebaafb11586007f6268a423
BLAKE2b-256 checksum
How to use checksums
3c461fff59a5ca89b967ea35ac04ad1f00e9c4388b34642d484fe6fd2e9f82bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-manylinux1_i686.whl
Size 520.8 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
fd09c310c54c6861e1488fcd30ceffa5dcd6c2dfe9f8409f47a8266fdc698547
BLAKE2b-256 checksum
How to use checksums
468a105b018b7fca905bbe9c107fead3f694962b6943c58704b92cd82c2709f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 380.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c756d00b728f0d5ec65519d9005389fea519b2ad3aef0896c49ce80e6da8b547
BLAKE2b-256 checksum
How to use checksums
0b00675527fa96fbd13e7468136d5e68be216fb95ce4c21abac125eb787856cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-win_amd64.whl
Size 382.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ae0403befca6a9088be702c1d94fc1b17c333cd84a43328c973d223991c41936
BLAKE2b-256 checksum
How to use checksums
8652125ac054bc6b363c5e0147baee8b3e8686d94f743b49bc1c302b2c74445c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-win32.whl
Size 376.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
0dd8c0367639cd5cf84be91af6b733076119745aea6e53fdf9e581819d911eac
BLAKE2b-256 checksum
How to use checksums
07a50727d702f8bfc056cbeac6d52ae312a1837122db1035ebc0e848e1b01091
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-manylinux2014_x86_64.whl
Size 512.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2bcbde25342fa0991b0c144c8eafadc77e605e7940bf462922f6d550f88d6777
BLAKE2b-256 checksum
How to use checksums
890594b5b9c1d24297b6067e89d70de705d0d2d05049f3a481fd035a6a7b9ed8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-manylinux2014_s390x.whl
Size 513.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c7953352bc27ac5fbf79d43ef7bf576ad06fa06c0ae0d6ad7c36b14cd596d565
BLAKE2b-256 checksum
How to use checksums
3cce3c451c882af49d087558c2489715baa6891b1807a369abb50c8930ef2a52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-manylinux2014_ppc64le.whl
Size 520.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6e7b2b589a600f467e9159df907638c2d08aca46b0f74d88ceeaa185abd9069b
BLAKE2b-256 checksum
How to use checksums
36bbe19fd8a7fa9181c8e8d6278edf11273f3debda969ff0940c3f70ac51c6e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-manylinux2014_i686.whl
Size 500.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e5b4ba4939c2ab6550ecef1ccd7b00537de7a7e18a8f03bce0fc4786111b4d47
BLAKE2b-256 checksum
How to use checksums
483e963cc55b358afa46d40809bb65f2fac3b9fb83d41817a84b4280fe1a5e02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-manylinux2014_aarch64.whl
Size 511.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9a5667eb4bc9ed805d1a06ca8b5ff7ee25df666b05cbb8f58f9ac16cac243d0b
BLAKE2b-256 checksum
How to use checksums
6713392c996d26fdf3507a64e1f1ee9d7bd3c3527c3f74a76f6b748128876f00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-manylinux1_x86_64.whl
Size 493.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8becbccb58b7b37ce2aa5f387f298914ec520747f11edfbc31347bd2ba7e3481
BLAKE2b-256 checksum
How to use checksums
19ed7e680b30d8760688b5f7cb23487823420c7638c193f8d8e98c149f74e381
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp37-cp37m-manylinux1_i686.whl
Size 500.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1f5fabe75c9b7eb5a42dac9717f952a879ab3705bcf7e9ef744cdbdfd37bcf3d
BLAKE2b-256 checksum
How to use checksums
2f73d033f46e336b62af1575889fd40c2b751be5c3c3ba0abc788a3bb4ab4275
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp37-cp37m-macosx_10_6_intel.whl

Download URL pymongo-3.11.1-cp37-cp37m-macosx_10_6_intel.whl
Size 414.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
b3b939780963164086fc256436c1bf9301d4c5c99026e2c281b21237234aaa2c
BLAKE2b-256 checksum
How to use checksums
315c35ff9d5b4f6edf96a4f6ead705f7560982d3f8818995ee6bca33793dcf1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-win_amd64.whl
Size 382.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
aacc9b646e142e7d32b88f0dccc6ab28f669ecf3ccc7212a274b99c83e228ef1
BLAKE2b-256 checksum
How to use checksums
74293e0d6da4b30d892f7ac00ea343f066034812e92036fef577e3bf987426c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-win32.whl
Size 376.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
cc375f5cea8635597c21ff6bc61486ebe5dca5e662982c9e2b58a9106f92b56e
BLAKE2b-256 checksum
How to use checksums
892527108684649e7988a0c6442c2c13b81d029d309adef2cc1d0d88a95a4e92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-manylinux2014_x86_64.whl
Size 509.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e9d7af8f668d2880fff8539188694e75e0b91d37174672a59dc5c5a0fea9f60d
BLAKE2b-256 checksum
How to use checksums
564c2e4d6fab8b2abf4c0d203b2131745d98071316a246a06ec756030a4fadff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-manylinux2014_s390x.whl
Size 510.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1529b23a51ef8613712b3e19225690564955250932d58487af6c060413ce0f1f
BLAKE2b-256 checksum
How to use checksums
352cce1bf8116fe4937ccc42f1edf57b9d453a12c48cb32a5950df5d470a2479
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-manylinux2014_ppc64le.whl
Size 517.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2542b21b08dc30bf0a69de55a42225f25b0af0dea7852edf2011952abb50e7b4
BLAKE2b-256 checksum
How to use checksums
9580b23f4b6a22167f71de51269d0025dfb791696138a7b9216aa2521b5e9c7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-manylinux2014_i686.whl
Size 499.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
f648d58915eb339329741296599fb25bc2a76474e64bdfeae4423ae83b312fb8
BLAKE2b-256 checksum
How to use checksums
e8d4876d37ed26959a8069a73c6d596a0dcdf092618d4d6a51fb72c991c7e491
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-manylinux2014_aarch64.whl
Size 508.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5fc04e445e58103bfddb601822ab355ffb8fb760142593e2b0f20c3940859352
BLAKE2b-256 checksum
How to use checksums
22a0b00ee0e7aa1057d87a333b6c3e8a963c578ec2ae5533b530dd36d9759ec1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-manylinux1_x86_64.whl
Size 492.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b6282855f9193f4e7ae07c2d138b583d487d0e66add62eda7013365815188ce9
BLAKE2b-256 checksum
How to use checksums
dd976bbc28cc5bb48731f30e368421b5a8120db31028b01de1239642d72328de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp36-cp36m-manylinux1_i686.whl
Size 499.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3b8076ff801dca0920f1b5c76a0e062dc26bb76de7e79efcf347c3a5ff776127
BLAKE2b-256 checksum
How to use checksums
5d8cd26c058defa2e892d5918ae1be60d67d1466c3873eab8718bb5c60e9ab66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

Release files / pymongo-3.11.1-cp36-cp36m-macosx_10_6_intel.whl

Download URL pymongo-3.11.1-cp36-cp36m-macosx_10_6_intel.whl
Size 411.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
78d4142116d6d910f1c195f3253b6209f21bb1b06fb6c6ebf90cbf80518c4071
BLAKE2b-256 checksum
How to use checksums
96615876fe3af662746950836f0f3ed767b0b98d0ea4e58a05a8a921715dccb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-win_amd64.whl
Size 382.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
079a30c21d3c334ee65581a8cac5380e94521970423996c5b18a7c550230d94c
BLAKE2b-256 checksum
How to use checksums
92d442a75fe046ec9e29cc88e773146bbd8925f35b43e7c24ee46022a3acdfee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-win32.whl
Size 376.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
a6bf56c1f6d13b0e22db604c73fba6feca088fe7f6aa978cc215f83e2005d765
BLAKE2b-256 checksum
How to use checksums
deae9f074ec9b395493b7265fce962b33dd5d630a50f6c84adfae5153d875df6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-manylinux2014_x86_64.whl
Size 508.2 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e6d72517fa7370841981770c3802e7a8ca7e94ead1fba9981349fbe8e539f7eb
BLAKE2b-256 checksum
How to use checksums
d3fa3741695290aabebb569dbc52d6dc18fd3f1a06655fc30fbb71d28e6e5a65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-manylinux2014_s390x.whl
Size 509.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
74b6e8e240e53518a701f4cd56a518c8de2631d6019e93295499db15cf46d973
BLAKE2b-256 checksum
How to use checksums
72cdfb6720ecfc2864da6ce8df55127e2f9483f2292dccaf494a53bb5978c953
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-manylinux2014_ppc64le.whl
Size 516.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5012342f457a544818254a89f7e7a4ecd05c4eaa89ed68ae58727039c92ff0f7
BLAKE2b-256 checksum
How to use checksums
746dbc10ef5edba4a1b4cd565fe8a75ab724eef1ad4a389a4271e7d7d4905a81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-manylinux2014_i686.whl
Size 498.2 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
17a3b2148b9e0914dc5f0d6a5c636f81dc4b428b80ea45576f79cfe619844c6d
BLAKE2b-256 checksum
How to use checksums
3bac8f8c90fbe76771452190de46797229aafbd3f8426c6b5c9fbec6f7bc4ef9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-manylinux2014_aarch64.whl
Size 507.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
eebe522043450e8cf83ab7be2fc0268dfe702de586970d752cb012d6ce72309f
BLAKE2b-256 checksum
How to use checksums
4a4ed4d5d4a3f946fcda44eb879f26357ce1c4dac701d0289dec6c03714c9949
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-manylinux1_x86_64.whl
Size 492.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
319f1b5a8373e280026905093aaacf4cca858a9ae653e456b9f9f9ad5f308088
BLAKE2b-256 checksum
How to use checksums
d63c5a9d0e9f7567c0caa1d58d79925595d554b19a440c714e8d3cef7a058b3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-manylinux1_i686.whl
Size 498.2 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
bb3f19af1949cbf93b17021c8c61e14e697c3f5c8923134b085dcef9d271b699
BLAKE2b-256 checksum
How to use checksums
64d5f3653fe3fd01db552017ac6e58f55d62ba903b1c95b0ff3ed1e568104cea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp35-cp35m-macosx_10_6_intel.whl
Size 411.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
4cc8cf971ee53ad65e53b80a6f611070dbe55640b447ae9b2b98329aebd21155
BLAKE2b-256 checksum
How to use checksums
078c4528fbeda98e0138f23060a20446f4490b766400bdfdd943ac7a70524ce5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp34-cp34m-win_amd64.whl
Size 378.2 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
dbc23ece1b111a10eb6d2475a7726b70418303d2e05078d223e7f97b286745a7
BLAKE2b-256 checksum
How to use checksums
16ff13188008b830cb0ffb6e082e995399d765e68c4faf3d7a11e4652041dd5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp34-cp34m-win32.whl
Size 375.0 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e83d61f9a247344c701147934f203117c3064c982d35396565a6ca8356bc0ea9
BLAKE2b-256 checksum
How to use checksums
6b0d9fa4cb7396205f9a072a74b0291d8a345a5c05a477c185fd5961c365498e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp34-cp34m-manylinux1_x86_64.whl
Size 488.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5a88fad3dcfaa222383ceb53af9a030a841ad998636648a748d79515c8afb6b4
BLAKE2b-256 checksum
How to use checksums
f571c77fa16b94ee929d26cd736751dde5f7e2670ef6679665ab1fc3040341f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp34-cp34m-manylinux1_i686.whl
Size 479.9 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e6e6089393646c1ef865484c27871d52ead69641dce5b53cbae2096cec615151
BLAKE2b-256 checksum
How to use checksums
69cf509b0cbf1c32df71ead3f913dafb26de2f1a074c7379ae2b48af104343b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp34-cp34m-macosx_10_6_intel.whl
Size 411.2 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
d349cfc776f8859c2f99ff916e307555f5615ffabfbd6162f3822f21aa1e22ed
BLAKE2b-256 checksum
How to use checksums
3996649cbc5da41b2ff6bcaccf76216bb833b15a9a886d36df31e99e91d78366
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp27-cp27mu-manylinux1_x86_64.whl
Size 487.7 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e3158d2824391c52020d67e629d2586af774b543a75dc9f64eb830991ac2776e
BLAKE2b-256 checksum
How to use checksums
f1c98db9f9201ed578abcd5b04768cf4af32c704093de06b797bbb4f3b1ebcab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp27-cp27mu-manylinux1_i686.whl
Size 479.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4da19b5c555cf1d8b8a0b980d9c97b1b0f27e05bcf278bf64cc6c30b697a59f9
BLAKE2b-256 checksum
How to use checksums
ce720d27f0496c45569d9e2056be61ffa920bb723acb2ece0fb53ddd7f45e5a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp27-cp27m-win_amd64.whl
Size 378.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
be124527bfc30869e8a17915e1e960150757553d58c98e56c598fbb85697e32e
BLAKE2b-256 checksum
How to use checksums
6887ee498d32113625d9b5c0b25f2fad0c2cc0a16d272d7648ee1666a30d0440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp27-cp27m-win32.whl
Size 374.7 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
9f672a8b5972a2db3284f8c0324dcaaeceedead9b4e5c836e93092b599f2dbf0
BLAKE2b-256 checksum
How to use checksums
58cf3df6daffc966a85cc7c35371feccdc43a14200a4b951b66bf656abb542c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp27-cp27m-manylinux1_x86_64.whl
Size 487.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0b5aa85a04efcf22c176de25e3fce675510d7700f523728fa9485d576db41358
BLAKE2b-256 checksum
How to use checksums
31ea59d9f1436a43354bde8f214930204007822ee099a2c8f9c0cab3c01f373d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp27-cp27m-manylinux1_i686.whl
Size 479.7 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f1ee136a8648cd76b44afdff99096823e68be90d02188d30e2ccd00b58e9b353
BLAKE2b-256 checksum
How to use checksums
31668eece51d68f6454399987a81e5816d8ad5ed3b2b2c8d470ece1c08946910
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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

Download URL pymongo-3.11.1-cp27-cp27m-macosx_10_14_intel.whl
Size 375.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
016e8162b57e2a45cb8d2356f39795ccff2ee65fd79fe078de4f9aa78ef1994b
BLAKE2b-256 checksum
How to use checksums
352e87fca5db488da0b40a5149e96f49cd00d4aea62a964ae7c680138ea5ad46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

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.11.1 This release

64 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