Skip to main content
File added late

1 file was added to this release more than 14 days after its initial publication. Inspect the release files before installing.

Info:

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

Documentation:

Available at pymongo.readthedocs.io

Author:

The MongoDB Python Team

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

Support / Feedback

For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you’re more likely to get an answer on the MongoDB 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 3.7+ and PyPy3.7+.

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]"

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

$ 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]"

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
'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), 'test'), '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()
{'x': 10, '_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
'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 4.2.0

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

File added late

1 file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for pymongo 4.2.0
File Size Uploaded
pymongo-4.2.0.tar.gz 792.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 4.2.0
File
pymongo-4.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pymongo-4.2.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pymongo-4.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp310-cp310-manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp310-cp310-manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp310-cp310-manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp310-cp310-manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pymongo-4.2.0-cp310-cp310-manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp310-cp310-manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp310-cp310-macosx_10_15_universal2.whl CPython 3.10 CPython 3.10 macOS 10.15+ universal2 (ARM64, x86-64) Details
pymongo-4.2.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
pymongo-4.2.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pymongo-4.2.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pymongo-4.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
pymongo-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp39-cp39-manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp39-cp39-manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp39-cp39-manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp39-cp39-manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pymongo-4.2.0-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
pymongo-4.2.0-cp39-cp39-manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pymongo-4.2.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pymongo-4.2.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pymongo-4.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
pymongo-4.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pymongo-4.2.0-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp38-cp38-manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp38-cp38-manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp38-cp38-manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pymongo-4.2.0-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
pymongo-4.2.0-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pymongo-4.2.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymongo-4.2.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymongo-4.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-4.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pymongo-4.2.0-cp37-cp37m-manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-4.2.0-cp37-cp37m-manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-4.2.0-cp37-cp37m-manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.2.0-cp37-cp37m-manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-4.2.0-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-4.2.0-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-4.2.0-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-4.2.0-cp37-cp37m-macosx_10_6_intel.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386) Details

Total release size: 31.5 MB

Release files / pymongo-4.2.0.tar.gz

Download URL pymongo-4.2.0.tar.gz
Size 792.9 kB
Tags Source
SHA-256 checksum
How to use checksums
72f338f6aabd37d343bd9d1fdd3de921104d395766bcc5cdc4039e4c2dd97766
BLAKE2b-256 checksum
How to use checksums
165cdef5ee5112e834ce41a86feb37d076b586e51f5ff7acce072073fc616147
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-win_amd64.whl

Download URL pymongo-4.2.0-cp310-cp310-win_amd64.whl
Size 374.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
8c223aea52c359cc8fdee5bd3475532590755c269ec4d4fe581acd47a44e9952
BLAKE2b-256 checksum
How to use checksums
6bbdc3b27e2ac7f595155beb48a31c92e9dd1c817dfecc2a55fb3ce76ec6a766
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-win32.whl

Download URL pymongo-4.2.0-cp310-cp310-win32.whl
Size 371.3 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
ecdcb0d4e9b08b739035f57a09330efc6f464bd7f942b63897395d996ca6ebd5
BLAKE2b-256 checksum
How to use checksums
3682249fb3d449c4491202dab1bb1be466a3187446721f29faae7889e2b754fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 479.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d94f535df9f539615bc3dbbef185ded3b609373bb44ca1afffcabac70202678a
BLAKE2b-256 checksum
How to use checksums
b911d2bd15814409ed357b8ec277361e7b703cc4f99351b2ce992975b17fd037
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 483.0 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4cadaaa5c19ad23fc84559e90284f2eb003c36958ebb2c06f286b678f441285f
BLAKE2b-256 checksum
How to use checksums
8d0d3c8c542b59724c94064ab3092f779ea55c76162a9437069ceb72ed84c5ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 486.8 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f47d5f10922cf7f7dfcd1406bd0926cef6d866a75953c3745502dffd7ac197dd
BLAKE2b-256 checksum
How to use checksums
f6eee84033e85f282d5992055b3e8ac8a575e87b82ada9df2a288d69d4e04d2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 481.2 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
07564178ecc203a84f63e72972691af6c0c82d2dc0c9da66ba711695276089ba
BLAKE2b-256 checksum
How to use checksums
7b1a85bcfd662d7602133ae13b199df37de6eb5228a8ffb26b3cfe29350fce0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 473.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
147a23cd96feb67606ac957744d8d25b013426cdc3c7164a4f99bd8253f649e3
BLAKE2b-256 checksum
How to use checksums
596ce77a01538a5177b8cdb940acc81bdde5b86808b06f6efa388ec0dbc49e47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux2014_x86_64.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux2014_x86_64.whl
Size 497.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c69ef5906dcd6ec565d4d887ba97ceb2a84f3b614307ee3b4780cb1ea40b1867
BLAKE2b-256 checksum
How to use checksums
bb69ecefcbbfebd8a4300ce06ad5460fa0c3ac8f499531bc95f3699de4ad3cb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux2014_s390x.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux2014_s390x.whl
Size 498.6 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
902e2c9030cb042c49750bc70d72d830d42c64ea0df5ff8630c171e065c93dd7
BLAKE2b-256 checksum
How to use checksums
3acfdd6cde4edf6ccbd7a24050c458ebdab6ee0b0a54baac9e1585db539399b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux2014_ppc64le.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux2014_ppc64le.whl
Size 503.3 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
314b556afd72eb21a6a10bd1f45ef252509f014f80207db59c97372103c88237
BLAKE2b-256 checksum
How to use checksums
4283e43ad2b75ec5798a6292a752576cbbb6cea2a9c93ffe7b620ef81a6fbf20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux2014_i686.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux2014_i686.whl
Size 492.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8a86e8c2ac2ec87141e1c6cb00bdb18a4560f06e5f96769abcd1dda24dc0e764
BLAKE2b-256 checksum
How to use checksums
67c9298ceae532a8ecd47b6eec88209546ba8dff3778efd3570f21ae554059c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux2014_aarch64.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux2014_aarch64.whl
Size 497.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
70216ec4c248213ae95ea499b6314c385ce01a5946c448fb22f6c8395806e740
BLAKE2b-256 checksum
How to use checksums
35adc85dc31c207acff8e369b379c33b9a4d01bebf54538665582dde8d69c90a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-manylinux1_i686.whl

Download URL pymongo-4.2.0-cp310-cp310-manylinux1_i686.whl
Size 492.1 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c549bb519456ee230e92f415c5b4d962094caac0fdbcc4ed22b576f66169764e
BLAKE2b-256 checksum
How to use checksums
360416ab8b3116a8e71690eadebe937d9bd37c47fd5c576914804414eb90912e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp310-cp310-macosx_10_15_universal2.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pymongo-4.2.0-cp310-cp310-macosx_10_15_universal2.whl
Size 404.2 kB
Tags CPython 3.10 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b9e4981a65f8500a3a46bb3a1e81b9feb45cf0b2115ad9c4f8d517326d026940
BLAKE2b-256 checksum
How to use checksums
4d513d1c827a3099dcd942dabf8c289a5ceabc2f166cf5142ec6ac83153f9d07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.6

Release files / pymongo-4.2.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL pymongo-4.2.0-cp310-cp310-macosx_10_9_universal2.whl
Size 373.4 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1c81414b706627f15e921e29ae2403aab52e33e36ed92ed989c602888d7c3b90
BLAKE2b-256 checksum
How to use checksums
59d7e2c5fac2ffe8131fa1bde3360b14e6b4c11a0ddecd88a42d6bf78bd18efb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-win_amd64.whl
Size 374.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
44b36ccb90aac5ea50be23c1a6e8f24fbfc78afabdef114af16c6e0a80981364
BLAKE2b-256 checksum
How to use checksums
f22cd8f477d24c064b5558c58a220cdfc7a2c5f34ab8138fab92ec20c7ab2cb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-win32.whl
Size 371.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
a25c0eb2d610b20e276e684be61c337396813b636b69373c17314283cb1a3b14
BLAKE2b-256 checksum
How to use checksums
48bfcb5dec7273ef0c8279608e1b887ec272077d8c478c8bbf09ba29ad1dc81e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 479.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
773467d25c293f8e981b092361dab5fd800e1ba318403b7959d35004c67faedc
BLAKE2b-256 checksum
How to use checksums
76ac010631a31e3099a51b65653196b061c9b6fa537a8cbf4fe3c9997606dc67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 482.4 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
124d0e880b66f9b0778613198e89984984fdd37a3030a9007e5f459a42dfa2d3
BLAKE2b-256 checksum
How to use checksums
142a5e6469580f987eb18d407751b7913d83651c0b600b0f460e9682fa5e8abc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 486.1 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
76892bbce743eb9f90360b3626ea92f13d338010a1004b4488e79e555b339921
BLAKE2b-256 checksum
How to use checksums
3bf4a158a718fb0dd4256a65173a4c261afd12f2194771f2e2d5c9cfbe2b2e37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 480.3 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d98d2a8283c9928a9e5adf2f3c0181e095579e9732e1613aaa55d386e2bcb6c5
BLAKE2b-256 checksum
How to use checksums
0fd394bcb1b2c483d40d7ff2a5045fde701760b4791707b94752da376aff3e58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-4.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 473.1 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
01721da74558f2f64a9f162ee063df403ed656b7d84229268d8e4ae99cfba59c
BLAKE2b-256 checksum
How to use checksums
362446c2625c828f392a78ca20d8facfc91c3c75e2f63e8ab9e34096337a682b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 476.2 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
153b8f8705970756226dfeeb7bb9637e0ad54a4d79b480b4c8244e34e16e1662
BLAKE2b-256 checksum
How to use checksums
3ac1e2e255444ea04eb2a5cbe6847edb7d1142838a2e65e48210eba21494fccd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-4.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 472.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6673ab3fbf3135cc1a8c0f70d480db5b2378c3a70af8d602f73f76b8338bdf97
BLAKE2b-256 checksum
How to use checksums
3faf766243b4b6c5deb9ab0f17fe53e0c83d2d543887619c921d7aff674ec4cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-manylinux2014_x86_64.whl
Size 496.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b537dd282de1b53d9ae7cf9f3df36420c8618390f2da92100391f3ba8f3c141a
BLAKE2b-256 checksum
How to use checksums
f74ed61fc588b9867a03cf052ccbbde1d65496a551b7cd5157fc5b8899aff4cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-manylinux2014_s390x.whl
Size 498.1 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e7dcb73f683c155885a3488646fcead3a895765fed16e93c9b80000bc69e96cb
BLAKE2b-256 checksum
How to use checksums
490439af374dea5356233987a284b7bf6dadc009cc88ff4d00909ca20df3c826
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-manylinux2014_ppc64le.whl
Size 502.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b0be613d926c5dbb0d3fc6b58e4f2be4979f80ae76fda6e47309f011b388fe0c
BLAKE2b-256 checksum
How to use checksums
c6a3d4b6ac97022e8e5c4731564bee3371896e98abea71afc0a18fca02267d95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-manylinux2014_i686.whl
Size 491.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a7eb5b06744b911b6668b427c8abc71b6d624e72d3dfffed00988fa1b4340f97
BLAKE2b-256 checksum
How to use checksums
d37488068361c14599366cf83da8d09e0d568d1aa0c4ca1e3e84475b367e262f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-manylinux2014_aarch64.whl
Size 496.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a3efdf154844244e0dabe902cf1827fdced55fa5b144adec2a86e5ce50a99b97
BLAKE2b-256 checksum
How to use checksums
c150fdfcd2a206b85df17bce229f5ad1bccfd2e21d6bb3cad333737d4e73da68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-manylinux1_x86_64.whl
Size 472.6 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
3be53e9888e759c49ae35d747ff77a04ff82b894dd64601e0f3a5a159b406245
BLAKE2b-256 checksum
How to use checksums
28ec1bdf4a307cfe8545333f64d7afc87524b38628aeb57f01d8d8342739477c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-manylinux1_i686.whl
Size 491.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d8bb745321716e7a11220a67c88212ecedde4021e1de4802e563baef9df921d2
BLAKE2b-256 checksum
How to use checksums
cb3e7c0a79b5e0e4fd5680f3c16ffb2cc87bef74ebb94f9ba66a8b54db3d719c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 373.4 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a6bf01b9237f794fa3bdad5089474067d28be7e199b356a18d3f247a45775f26
BLAKE2b-256 checksum
How to use checksums
7cd7909c6124b3ae60571c1f57b7a961bfd4bd5c582c1940ffcddd5a723da0a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-win_amd64.whl
Size 374.1 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
10f09c4f09757c2e2a707ad7304f5d69cb8fdf7cbfb644dbacfe5bbe8afe311b
BLAKE2b-256 checksum
How to use checksums
feff38ad4c8dc6f619c8118d4c13f565fd63e02dae4b0929470a3bf52301ed53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-win32.whl
Size 371.2 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
766acb5b1a19eae0f7467bcd3398748f110ea5309cdfc59faa5185dcc7fd4dca
BLAKE2b-256 checksum
How to use checksums
c4c5ff00b494fa8801be0b901d68e2fd0fef124588635ac9e71e7b72c6b39d71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 488.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
83cc3c35aeeceb67143914db67f685206e1aa37ea837d872f4bc28d7f80917c9
BLAKE2b-256 checksum
How to use checksums
4ebb7583c54689a5c7eac7ee02583ccab639a7171e81b01121bd85679a301383
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 491.7 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f1c23527f8e13f526fededbb96f2e7888f179fe27c51d41c2724f7059b75b2fa
BLAKE2b-256 checksum
How to use checksums
caf79f3e31dd29ae3aabf6c902937c72a028d7dca782a159b4d66fada0ec3b7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 495.7 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c8b4a782aac43948308087b962c9ecb030ba98886ce6dee3ad7aafe8c5e1ce80
BLAKE2b-256 checksum
How to use checksums
6cf3e0e6b7909ed9a52dd11bfd146f79904a38b2bcc1455d6e75694de05ffd87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 489.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cc7ebc37b03956a070260665079665eae69e5e96007694214f3a2107af96816a
BLAKE2b-256 checksum
How to use checksums
6a21ef9461def0063d54ec4e0aecc454e8c95befe3f7c5f5fb2e50e8ddbf986d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-4.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 489.9 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
21238b19243a42f9a34a6d39e7580ceebc6da6d2f3cf729c1cff9023cb61a5f1
BLAKE2b-256 checksum
How to use checksums
7473430755a09fe29c690bc66c316709583f4a68dd885e76c07fc4b91e3cb44c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-4.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 481.9 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0f53253f4777cbccc426e669a2af875f26c95bd090d88593287b9a0a8ac7fa25
BLAKE2b-256 checksum
How to use checksums
0b928b5a44c9b3e7f045f5824d630b0e96fc31e417067f52f856e1aa91917863
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-4.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 480.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e09cdf5aad507c8faa30d97884cc42932ed3a9c2b7f22cc3ccc607bae03981b3
BLAKE2b-256 checksum
How to use checksums
f6a625bde851510325fe5cd99f917d79bf56d6d5125d79c5c88dd9d3c7c086fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-manylinux2014_x86_64.whl
Size 506.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ccfdc7722df445c49dc6b5d514c3544cad99b53189165f7546793933050ac7fb
BLAKE2b-256 checksum
How to use checksums
85834868c2884d5a75812169300ca5a938d29a3324e112f8e0a988ad7afb66f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-manylinux2014_s390x.whl
Size 508.3 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
31c50da4a080166bc29403aa91f4c76e0889b4f24928d1b60508a37c1bf87f9a
BLAKE2b-256 checksum
How to use checksums
df7853879067fd69e3270e4f34a1dc3a3aa0d88afada5727c76f42d67c91c72d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-manylinux2014_ppc64le.whl
Size 512.7 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ff66014687598823b6b23751884b4aa67eb934445406d95894dfc60cb7bfcc18
BLAKE2b-256 checksum
How to use checksums
e03b24742b48f6a08466f892043ae44a767b2c8bd0908a20e4e51fa148ad9539
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-manylinux2014_i686.whl
Size 498.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
2bfe6b59f431f40fa545547616f4acf0c0c4b64518b1f951083e3bad06eb368b
BLAKE2b-256 checksum
How to use checksums
d32a40f6c718bf6685500320a9deb2c71e425733f8c47e05f9af552a34434d1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-manylinux2014_aarch64.whl
Size 507.0 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8cbb868e88c4eee1c53364bb343d226a3c0e959e791e6828030cb78f46cfcbe3
BLAKE2b-256 checksum
How to use checksums
69170e5e99205f7c91a48af1830f54cdb1a53cbc405b5dae9bf8bab2188b280b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-manylinux1_x86_64.whl
Size 489.6 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8a9bc4dcfc2bda69ee88cdb7a89b03f2b8eca668519b704384a264dea2db4209
BLAKE2b-256 checksum
How to use checksums
321d65011170d26e75273cd629cfef3ed4ecfad5caca6560627192baa8d5220f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-manylinux1_i686.whl
Size 498.9 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e152c26ffc30331e9d57591fc4c05453c209aa20ba299d1deb7173f7d1958c22
BLAKE2b-256 checksum
How to use checksums
6e86ff52523b0b5e10f34bcf6b7667cc273c48064f2b5d48652e8e4a5a5a8196
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 373.6 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
193cc97d44b1e6d2253ea94e30c6f94f994efb7166e2452af4df55825266e88b
BLAKE2b-256 checksum
How to use checksums
2800e03d15a855dd59651eb5d6cafd75d0dff24dcf519124cec022d7f4fa77e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-win_amd64.whl
Size 374.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
dc24737d24ce0de762bee9c2a884639819485f679bbac8ab5be9c161ef6f9b2c
BLAKE2b-256 checksum
How to use checksums
dcf55a9c75fe6e0050f4c44afb23fdb67121226130c2cad5c0218bffa166fd97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-win32.whl
Size 370.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
6bd5888997ea3eae9830c6cc7964b61dcfbc50eb3a5a6ce56ad5f86d5579b11c
BLAKE2b-256 checksum
How to use checksums
f9f9b32092f2128ec395e066b40d45cd2eec09f0795d54edb69b5b73b22fdf05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 471.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
69d0180bca594e81cdb4a2af328bdb4046f59e10aaeef7619496fe64f2ec918c
BLAKE2b-256 checksum
How to use checksums
08dc8a71c84fce1a33c5672b28ef83174e1f2ebd46b470284640bc7d590ce7ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 475.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
83168126ae2457d1a19b2af665cafa7ef78c2dcff192d7d7b5dad6b36c73ae24
BLAKE2b-256 checksum
How to use checksums
5a54933d7c9a43e52db718ec51973a772f6752017e2cbd253833eb8c09c111fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 479.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e64442aba81ed4df1ca494b87bf818569a1280acaa73071c68014f7a884e83f1
BLAKE2b-256 checksum
How to use checksums
ba867f1d0fb79a0dcefec013439bfe8051a63991994465421b96b60c17b0db20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 472.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
764fc15418d94bce5c2f8ebdbf66544f96f42efb1364b61e715e5b33281b388d
BLAKE2b-256 checksum
How to use checksums
de9c72c2c48c40c4eb5d914e2b6ba6e53500c17c36752c3957d77a4b9586cd15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-4.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 474.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
1a957cdc2b26eeed4d8f1889a40c6023dd1bd94672dd0f5ce327314f2caaefd4
BLAKE2b-256 checksum
How to use checksums
59e88ec3ac2f982fe7f7fda6fe6cf12b4dac2228aacd0d69198a60bb23543a58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-4.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 466.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e1b8f5e2f9637492b0da4d51f78ecb17786e61d6c461ead8542c944750faf4f9
BLAKE2b-256 checksum
How to use checksums
ec502607caf93ab34efe2e91c2e408f6383cfc210e5da3915fd6cfe073fef5ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

Release files / pymongo-4.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-4.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 465.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
80cbf0b043061451660099fff9001a7faacb2c9c983842b4819526e2f944dc6c
BLAKE2b-256 checksum
How to use checksums
9d8f154081259fa4b325c4fc619d1245dbf125d4e9186fb0f43beba0512c716e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-manylinux2014_x86_64.whl
Size 489.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
68e1e49a5675748233f7b05330f092582cd52f2850b4244939fd75ba640593ed
BLAKE2b-256 checksum
How to use checksums
029a6faefa2c66c7a4effd38b25244d3eb2dbd00fe348018e8bbf7ddd11f2753
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-manylinux2014_s390x.whl
Size 490.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ed90a9de4431cbfb2f3b2ef0c5fd356e61c85117b2be4db3eae28cb409f6e2d5
BLAKE2b-256 checksum
How to use checksums
e3bd630ff2135f10a2addaf4e3a8261caa740206b7212fe881052b6a3f2cf5c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-manylinux2014_ppc64le.whl
Size 496.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b211e161b6cc2790e0d640ad38e0429d06c944e5da23410f4dc61809dba25095
BLAKE2b-256 checksum
How to use checksums
7762e3bc2e9297bc1d1b05393289471777e75be5d65d1ec7a6ebe8462f1f0272
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-manylinux2014_i686.whl
Size 483.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
60c470a58c5b62b1b12a5f5458f8e2f2f67b94e198d03dc5352f854d9230c394
BLAKE2b-256 checksum
How to use checksums
d316550b5449a5bf8582f38d5c04a6a22cc74882070c9eb25575bd40ca5e882a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-manylinux2014_aarch64.whl
Size 488.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e08fe1731f5429435b8dea1db9663f9ed1812915ff803fc9991c7c4841ed62ad
BLAKE2b-256 checksum
How to use checksums
225269067becfe5893928268a9f01dedffdc26649715b11769aef8c48f90e7a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-manylinux1_x86_64.whl
Size 473.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
701d331060dae72bf3ebdb82924405d14136a69282ccb00c89fc69dee21340b4
BLAKE2b-256 checksum
How to use checksums
feb443eaf85d01d0e9d7e5e80c71e1aff5f9a8a1ee4ae7c6083e0bf1392cc635
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-manylinux1_i686.whl
Size 483.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e39cacee70a98758f9b2da53ee175378f07c60113b1fa4fae40cbaee5583181e
BLAKE2b-256 checksum
How to use checksums
7ce9d82ad51ef3a0c481ed1e0946ef78fc5b475b551fefaf4d6c59f2c027d827
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

Download URL pymongo-4.2.0-cp37-cp37m-macosx_10_6_intel.whl
Size 402.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
fe0820d169635e41c14a5d21514282e0b93347878666ec9d5d3bf0eed0649948
BLAKE2b-256 checksum
How to use checksums
65509c42d2d30d588dd1c3f1fdb88394334319b937405e273d7a71b24de417dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.0

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

This release

4.2.0 This release

67 release files

4.1.1

83 release files

4.0

83 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