Skip to main content

PyMongo

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, 5.0, and 6.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+.

Required dependencies:

Support for mongodb+srv:// URIs requires dnspython

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

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 and pymongo-auth-aws:

$ 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,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.3.3

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 4.3.3
File Size Uploaded
pymongo-4.3.3.tar.gz 814.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 4.3.3
File
pymongo-4.3.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pymongo-4.3.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pymongo-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pymongo-4.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
pymongo-4.3.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pymongo-4.3.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pymongo-4.3.3-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.3.3-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.3.3-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.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-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.3.3-cp310-cp310-manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pymongo-4.3.3-cp310-cp310-manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.3.3-cp310-cp310-manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.3.3-cp310-cp310-manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pymongo-4.3.3-cp310-cp310-manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-cp310-cp310-manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
pymongo-4.3.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pymongo-4.3.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pymongo-4.3.3-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.3.3-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.3.3-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.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-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.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pymongo-4.3.3-cp39-cp39-manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pymongo-4.3.3-cp39-cp39-manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.3.3-cp39-cp39-manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.3.3-cp39-cp39-manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pymongo-4.3.3-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
pymongo-4.3.3-cp39-cp39-manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
pymongo-4.3.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pymongo-4.3.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pymongo-4.3.3-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.3.3-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.3.3-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.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-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.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-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.3.3-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pymongo-4.3.3-cp38-cp38-manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
pymongo-4.3.3-cp38-cp38-manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.3.3-cp38-cp38-manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pymongo-4.3.3-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
pymongo-4.3.3-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pymongo-4.3.3-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymongo-4.3.3-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymongo-4.3.3-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.3.3-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.3.3-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.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-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.3.3-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.3.3-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.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-cp37-cp37m-manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-4.3.3-cp37-cp37m-manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-4.3.3-cp37-cp37m-manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-4.3.3-cp37-cp37m-manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-4.3.3-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-4.3.3-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-4.3.3-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-4.3.3-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: 35.7 MB

Release files / pymongo-4.3.3.tar.gz

Download URL pymongo-4.3.3.tar.gz
Size 814.2 kB
Tags Source
SHA-256 checksum
How to use checksums
34e95ffb0a68bffbc3b437f2d1f25fc916fef3df5cdeed0992da5f42fae9b807
BLAKE2b-256 checksum
How to use checksums
9a31482f7401e7bbbeb66ab6b4ac263e2b50435f4329cce1e72378972d48f6b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-win_amd64.whl

Download URL pymongo-4.3.3-cp311-cp311-win_amd64.whl
Size 382.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
b8a03af1ce79b902a43f5f694c4ca8d92c2a4195db0966f08f266549e2fc49bc
BLAKE2b-256 checksum
How to use checksums
a3c6ff88fce93529c9418c80854ecaf013254ab0b1d59f8f4fa2702419352d18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-win32.whl

Download URL pymongo-4.3.3-cp311-cp311-win32.whl
Size 379.3 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
524d78673518dcd352a91541ecd2839c65af92dc883321c2109ef6e5cd22ef23
BLAKE2b-256 checksum
How to use checksums
c4b5e2d246016d15c949736c9a4b4da4ec8e2045b661504be4b749c34188c2a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 494.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d3a51901066696c4af38c6c63a1f0aeffd5e282367ff475de8c191ec9609b56d
BLAKE2b-256 checksum
How to use checksums
4eca6c1cb5c69715c13312852d91cb62c175e7da58c91c428447db1a2364c646
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 498.3 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e7fac06a539daef4fcf5d8288d0d21b412f9b750454cd5a3cf90484665db442a
BLAKE2b-256 checksum
How to use checksums
40e3dda96a2280058e08bc0dabeddf86bd3513e601f579134f2107680585636b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 502.8 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
341221e2f2866a5960e6f8610f4cbac0bb13097f3b1a289aa55aba984fc0d969
BLAKE2b-256 checksum
How to use checksums
d658a39537805ca205b4b65503765ca110224a409e777c1825fd6c8108ec9fd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 495.1 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c0640b4e9d008e13956b004d1971a23377b3d45491f87082161c92efb1e6c0d6
BLAKE2b-256 checksum
How to use checksums
4bcec6c6875dc14410952d3ff2e7960fb0498b1d9e70c483e5ce788c01fad54e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-4.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 488.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f3055510fdfdb1775bc8baa359783022f70bb553f2d46e153c094dfcb08578ff
BLAKE2b-256 checksum
How to use checksums
2ff033804cfc9113e0405063f0a777d213d9c006512cb06681a258ae559b3a8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp311-cp311-macosx_10_9_universal2.whl

Download URL pymongo-4.3.3-cp311-cp311-macosx_10_9_universal2.whl
Size 413.7 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
599d3f6fbef31933b96e2d906b0f169b3371ff79ea6aaf6ecd76c947a3508a3d
BLAKE2b-256 checksum
How to use checksums
8b8f93649909ec1ba88fee224884884b4e10ac26c0ca00c58f1781036476d30d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-win_amd64.whl
Size 382.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
cafa52873ae12baa512a8721afc20de67a36886baae6a5f394ddef0ce9391f91
BLAKE2b-256 checksum
How to use checksums
48b3048d832794acb914cf8cf396089a29301ee79417e18f068f38a1eace9408
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-win32.whl
Size 379.3 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
dc0cff74cd36d7e1edba91baa09622c35a8a57025f2f2b7a41e3f83b1db73186
BLAKE2b-256 checksum
How to use checksums
0517185c96a98d3d91ad3cdfbc9bc91ad8bea697cfaf1b3ca314f52006f71d2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 496.2 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a966d5304b7d90c45c404914e06bbf02c5bf7e99685c6c12f0047ef2aa837142
BLAKE2b-256 checksum
How to use checksums
fa6abf5391534a10cfb4a2b4a9e6697f17115fc460da8041ec67835c23d2ff59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 493.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cdb87309de97c63cb9a69132e1cb16be470e58cffdfbad68fdd1dc292b22a840
BLAKE2b-256 checksum
How to use checksums
11a38f7b87dbb9fd496f14c596bb02487fdb44dbb58e3c39da3f0eb0199b1523
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 486.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
55b6163dac53ef1e5d834297810c178050bd0548a4136cd4e0f56402185916ca
BLAKE2b-256 checksum
How to use checksums
3c303d7e6336cfc795655a7193d77853972c5b502f58e1992205ad1b9bd28128
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux2014_x86_64.whl
Size 509.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
01f7cbe88d22440b6594c955e37312d932fd632ffed1a86d0c361503ca82cc9d
BLAKE2b-256 checksum
How to use checksums
f8efbd801e889305bc48ca3210569ea613d66a52c717578a465ac2792cec709a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux2014_s390x.whl
Size 512.1 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
943f208840777f34312c103a2d1caab02d780c4e9be26b3714acf6c4715ba7e1
BLAKE2b-256 checksum
How to use checksums
747a140e4c739319c3ee1163aa65bc91414ddf5b3c6376af19375e2dead1fbb5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux2014_ppc64le.whl
Size 516.4 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ffcc8394123ea8d43fff8e5d000095fe7741ce3f8988366c5c919c4f5eb179d3
BLAKE2b-256 checksum
How to use checksums
637451b2ec1b760169cbb19637913b86b6851dd9a57f95fe67adb7b0d1037469
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux2014_i686.whl
Size 505.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
695939036a320f4329ccf1627edefbbb67cc7892b8222d297b0dd2313742bfee
BLAKE2b-256 checksum
How to use checksums
f387f2ccd99ea5184d9a9013acca92f3060e29253038df8003148b1a643e6165
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux2014_aarch64.whl
Size 509.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9b87b23570565a6ddaa9244d87811c2ee9cffb02a753c8a2da9c077283d85845
BLAKE2b-256 checksum
How to use checksums
49de9005f70242f651fe4758a162eedbda13c9e55713083c345574c17cf8aa8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-manylinux1_i686.whl
Size 505.2 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
66413c50d510e5bcb0afc79880d1693a2185bcea003600ed898ada31338c004e
BLAKE2b-256 checksum
How to use checksums
f24a68ab4706a992fd7b01ec53a9e2138733972895b260578e544221845770dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp310-cp310-macosx_10_9_universal2.whl
Size 413.2 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
74731c9e423c93cbe791f60c27030b6af6a948cef67deca079da6cd1bb583a8e
BLAKE2b-256 checksum
How to use checksums
452f70f2e110a77dcb5490fe000aa380397968a09b8528f878aa1eadc0b11920
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-win_amd64.whl
Size 382.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
fc28e8d85d392a06434e9a934908d97e2cf453d69488d2bcd0bfb881497fd975
BLAKE2b-256 checksum
How to use checksums
a053f8b2099b2d8dcec0e4070455b6b7a9ea5088ee07a745b0c6a711d55a5357
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-win32.whl
Size 379.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
dc24d245026a72d9b4953729d31813edd4bd4e5c13622d96e27c284942d33f24
BLAKE2b-256 checksum
How to use checksums
69d49cd99a5d98353b6c10595ec969c087d63a93ce60741b52463a9fcb2114ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 492.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1074f1a6f23e28b983c96142f2d45be03ec55d93035b471c26889a7ad2365db3
BLAKE2b-256 checksum
How to use checksums
3868928d7ce22719cfa255fb973b34aed6f04ac3ea89049ce69e3b092c30a60f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 495.7 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
704d939656e21b073bfcddd7228b29e0e8a93dd27b54240eaafc0b9a631629a6
BLAKE2b-256 checksum
How to use checksums
39973a04c850755723d64555ae29fdec2d4eafe9f2a12c22d4dc5e41e846423d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 500.2 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
08fc250b5552ee97ceeae0f52d8b04f360291285fc7437f13daa516ce38fdbc6
BLAKE2b-256 checksum
How to use checksums
221868b8a63f289df40df27623c99779acd9eb6c007a4546700e676e07d7c2d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 492.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
eac0a143ef4f28f49670bf89cb15847eb80b375d55eba401ca2f777cd425f338
BLAKE2b-256 checksum
How to use checksums
293f230c83a6be6e037f4558c9b7a2b8dc6de55ebc68662b0a13f9ff800614f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 496.1 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fd7bb378d82b88387dc10227cfd964f6273eb083e05299e9b97cbe075da12d11
BLAKE2b-256 checksum
How to use checksums
892452d65bbb0cf038d73b49c9d1f6b251500d807ed2579aaa55cf5d788513be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 489.8 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7761cacb8745093062695b11574effea69db636c2fd0a9269a1f0183712927b4
BLAKE2b-256 checksum
How to use checksums
984d4423858f2587a3c15c9b40a70e3672e0902667874f24e77e5388d848715d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 485.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7b16250238de8dafca225647608dddc7bbb5dce3dd53b4d8e63c1cc287394c2f
BLAKE2b-256 checksum
How to use checksums
979f0156a752e50cfbc767a182c80a7e94174a772a94cb72a52f2660fc373c77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux2014_x86_64.whl
Size 509.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6c2216d8b6a6d019c6f4b1ad55f890e5e77eb089309ffc05b6911c09349e7474
BLAKE2b-256 checksum
How to use checksums
81f15d56b0ffdda842298334135ac181032ee4624bc57101a538d67ba8958695
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux2014_s390x.whl
Size 511.4 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8a06a0c02f5606330e8f2e2f3b7949877ca7e4024fa2bff5a4506bec66c49ec7
BLAKE2b-256 checksum
How to use checksums
7d33aa74d9e5067bdd7b68cbe54ea5cad427883131d100c20d6a31ff0625a214
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux2014_i686.whl
Size 504.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
b38a96b3eed8edc515b38257f03216f382c4389d022a8834667e2bc63c0c0c31
BLAKE2b-256 checksum
How to use checksums
8137c5c765526adb3f452ea4033d5d4e960514d53857b32c85fc2dfcac7aad86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux2014_aarch64.whl
Size 508.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e2961b05f9c04a53da8bfc72f1910b6aec7205fcf3ac9c036d24619979bbee4b
BLAKE2b-256 checksum
How to use checksums
0e8f1009913e8ad51390966811e0163ed6df2dfa43a6f632ac35f53e51b2321b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux1_x86_64.whl
Size 495.6 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8fd6e191b92a10310f5a6cfe10d6f839d79d192fb02480bda325286bd1c7b385
BLAKE2b-256 checksum
How to use checksums
602f6b18e099cfabf8fbe86ec201f53afa73a8b80e2e9dcbdef52429492d236e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp39-cp39-manylinux1_i686.whl
Size 504.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
016c412118e1c23fef3a1eada4f83ae6e8844fd91986b2e066fc1b0013cdd9ae
BLAKE2b-256 checksum
How to use checksums
3922e5acdce322f6aed2c6b06b8afae19c0fdf01031db1f7dbaeb34df60396c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / pymongo-4.3.3-cp39-cp39-macosx_10_9_universal2.whl

Download URL pymongo-4.3.3-cp39-cp39-macosx_10_9_universal2.whl
Size 413.2 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
81d1a7303bd02ca1c5be4aacd4db73593f573ba8e0c543c04c6da6275fd7a47e
BLAKE2b-256 checksum
How to use checksums
2ed8d35fcd7fd6d9b55ab6b317182884938d34c64c91dce9ff5cf3548ca5cd30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-win_amd64.whl
Size 382.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
d5571b6978750601f783cea07fb6b666837010ca57e5cefa389c1d456f6222e2
BLAKE2b-256 checksum
How to use checksums
630eac6759051f18adf5506fe0c458bc12d03d9e94d2dc83087b21dc21888154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-win32.whl
Size 379.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
a6cd6f1db75eb07332bd3710f58f5fce4967eadbf751bad653842750a61bda62
BLAKE2b-256 checksum
How to use checksums
f4d63088b63536c74c4e9cf687916712843e7d4abfc981eca3e264ec801372af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 501.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
52896e22115c97f1c829db32aa2760b0d61839cfe08b168c2b1d82f31dbc5f55
BLAKE2b-256 checksum
How to use checksums
a98c5ae0d794ff1771dd2a298f1a7d0889455a65874a98120171a002c8cb741a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 509.7 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
316498b642c00401370b2156b5233b256f9b33799e0a8d9d0b8a7da217a20fca
BLAKE2b-256 checksum
How to use checksums
df2c572e43db59a870b8df3332b94bd29ee7246bcba8cbb071b61174ecd1c834
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 501.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ef888f48eb9203ee1e04b9fb27429017b290fb916f1e7826c2f7808c88798394
BLAKE2b-256 checksum
How to use checksums
7605de90f39846ec83fe9e2099c7993266bb1a154f3a0777e78121f56fe08ee7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 505.4 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a9c2885b4a8e6e39db5662d8b02ca6dcec796a45e48c2de12552841f061692ba
BLAKE2b-256 checksum
How to use checksums
4a929c11924649a557d95283882a4bcb67cfc32d6cb1528064a53c0bdb0540d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 496.8 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5134d33286c045393c7beb51be29754647cec5ebc051cf82799c5ce9820a2ca2
BLAKE2b-256 checksum
How to use checksums
d44dcdfde31b4545d2f0aaabae9a9acd0dda6384f3d02b4f7a4b6a483f4bf749
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 493.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7c051fe37c96b9878f37fa58906cb53ecd13dcb7341d3a85f1e2e2f6b10782d9
BLAKE2b-256 checksum
How to use checksums
96488baccdb480d0ceb2799d1b6d2da780b6f174635c64f82fa27bc8fbb9d660
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux2014_x86_64.whl
Size 519.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4ed00f96e147f40b565fe7530d1da0b0f3ab803d5dd5b683834500fa5d195ec4
BLAKE2b-256 checksum
How to use checksums
0e9fa4986f0a86fc017599bf4c8912c01005a27c536acd221041234e0cb9739a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux2014_s390x.whl
Size 522.0 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
34b040e095e1671df0c095ec0b04fc4ebb19c4c160f87c2b55c079b16b1a6b00
BLAKE2b-256 checksum
How to use checksums
c43d51e3ed544c4d4a0dbcafe197d582f9e922e73ea185bd5a19486c7c297308
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux2014_i686.whl
Size 512.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d07d06dba5b5f7d80f9cc45501456e440f759fe79f9895922ed486237ac378a8
BLAKE2b-256 checksum
How to use checksums
66b68e554ee180a28aa3f99200eb1ab60ab180fbea1a55f47166a6da2fd93299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux2014_aarch64.whl
Size 519.0 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0c466710871d0026c190fc4141e810cf9d9affbf4935e1d273fbdc7d7cda6143
BLAKE2b-256 checksum
How to use checksums
924547134bdc3d628fa02945545c9d0cca1d7b349c507734860cf3614da77cb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux1_x86_64.whl
Size 505.1 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cd6a4afb20fb3c26a7bfd4611a0bbb24d93cbd746f5eb881f114b5e38fd55501
BLAKE2b-256 checksum
How to use checksums
ee2a223a77aab2d1d9f2ca86b1db60578f25ebd2f1c0f558fcf46d05457865d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-manylinux1_i686.whl
Size 512.3 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
dca34367a4e77fcab0693e603a959878eaf2351585e7d752cac544bc6b2dee46
BLAKE2b-256 checksum
How to use checksums
c90277f30505aa009f329ec935a2e0e856889e19568c1c6c7af4dbffe894c27e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 381.9 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c184ec5be465c0319440734491e1aa4709b5f3ba75fdfc9dbbc2ae715a7f6829
BLAKE2b-256 checksum
How to use checksums
6a6c246b69b8fc3071e9ff1f42480fbc29835b95e910655604b66bef0a282e78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-win_amd64.whl
Size 382.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
54c377893f2cbbffe39abcff5ff2e917b082c364521fa079305f6f064e1a24a9
BLAKE2b-256 checksum
How to use checksums
420cd2ad12aec55acdc4099134a8c87912d8fe01e2e1e5969b5d6c3485b99284
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-win32.whl
Size 378.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
49210feb0be8051a64d71691f0acbfbedc33e149f0a5d6e271fddf6a12493fed
BLAKE2b-256 checksum
How to use checksums
dcbc1d69ee98cc0b50278f9c6044666a5dbd8b296e8bd3af733066f6bb8bc597
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 484.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2c2fdc855149efe7cdcc2a01ca02bfa24761c640203ea94df467f3baf19078be
BLAKE2b-256 checksum
How to use checksums
93dad58cdba6e4c896300d1c939119c0911948a7edd94e10cc75048142e56160
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 487.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
47f7aa217b25833cd6f0e72b0d224be55393c2692b4f5e0561cb3beeb10296e9
BLAKE2b-256 checksum
How to use checksums
815d6d34f7b3cffe3efe38cac65de60beba7f1a14b8f5b64d27354bce33b924d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 491.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
12f3621a46cdc7a9ba8080422262398a91762a581d27e0647746588d3f995c88
BLAKE2b-256 checksum
How to use checksums
2c5cab73b2fc15fd9930f07bce865c3f0d98fe90211b92889831a746d61d3830
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 486.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
bb869707d8e30645ed6766e44098600ca6cdf7989c22a3ea2b7966bb1d98d4b2
BLAKE2b-256 checksum
How to use checksums
0110e7157fcda1db4f759c858f8d9dc001112eb630136894056bb29f332137c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 478.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6dd1cf2995fdbd64fc0802313e8323f5fa18994d51af059b5b8862b73b5e53f0
BLAKE2b-256 checksum
How to use checksums
4fa932799279229f74f4d477f6c122dbbb4173f7d6d158bb9f7adf582c2ada20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 477.9 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
5effd87c7d363890259eac16c56a4e8da307286012c076223997f8cc4a8c435b
BLAKE2b-256 checksum
How to use checksums
263833270a35e265c1936ab3ea6863c02b9e3292ca013df9bd1e5ab1ed231ec7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux2014_x86_64.whl
Size 501.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c6258a3663780ae47ba73d43eb63c79c40ffddfb764e09b56df33be2f9479837
BLAKE2b-256 checksum
How to use checksums
e27ca076b118f1b7aea6c8dc548d45441801b86486bf67765589112e28ea188d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux2014_s390x.whl
Size 503.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4d00b91c77ceb064c9b0459f0d6ea5bfdbc53ea9e17cf75731e151ef25a830c7
BLAKE2b-256 checksum
How to use checksums
71c7c129dcde11ec97fe485cfc7a837284a0300bc4647a1bcb1e63f1ce050732
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux2014_i686.whl
Size 495.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c09956606c08c4a7c6178a04ba2dd9388fcc5db32002ade9c9bc865ab156ab6d
BLAKE2b-256 checksum
How to use checksums
74a8fe9d9c1f7d3a12b3d5c2b26fb267671a02f42b68ddd69d20105b6d87798b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux2014_aarch64.whl
Size 501.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3b93043b14ba7eb08c57afca19751658ece1cfa2f0b7b1fb5c7a41452fbb8482
BLAKE2b-256 checksum
How to use checksums
f0255331b822a0e2486efe75c741fa9dcb500b67ecfb0223f26179afa60f1c17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux1_x86_64.whl
Size 486.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7d43ac9c7eeda5100fb0a7152fab7099c9cf9e5abd3bb36928eb98c7d7a339c6
BLAKE2b-256 checksum
How to use checksums
fc281b934e5839bf12b022782561c803ee63149737d6c5f9627d3299cd28516f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

Download URL pymongo-4.3.3-cp37-cp37m-manylinux1_i686.whl
Size 495.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6fcfbf435eebf8a1765c6d1f46821740ebe9f54f815a05c8fc30d789ef43cb12
BLAKE2b-256 checksum
How to use checksums
1058cdf21baff3328e6ba3b960918cd48302c3973e97ea4dcfbdf6ae5bf18408
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

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

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

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

This release

4.3.3 This release

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

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