Skip to main content
Info:

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

Documentation:

Available at pymongo.readthedocs.io

Author:

Mike Dirolf

Maintainer:

Bernie Hackett <bernie@mongodb.com>

About

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

PyMongo supports MongoDB 2.6, 3.0, 3.2, 3.4, 3.6, 4.0, 4.2, and 4.4.

Support / Feedback

For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you’re more likely to get an answer on the MongoDB Community Forums.

Bugs / Feature Requests

Think you’ve found a bug? Want to see a new feature in PyMongo? Please open a case in our issue management tool, JIRA:

Bug reports in JIRA for all driver projects (i.e. PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.

How To Ask For Help

Please include all of the following information when opening an issue:

  • Detailed steps to reproduce the problem, including full traceback, if possible.

  • The exact python version used, with patch level:

    $ python -c "import sys; print(sys.version)"
  • The exact version of PyMongo used, with patch level:

    $ python -c "import pymongo; print(pymongo.version); print(pymongo.has_c())"
  • The operating system and version (e.g. Windows 7, OSX 10.8, …)

  • Web framework or asynchronous network library used, if any, with version (e.g. Django 1.7, mod_wsgi 4.3.0, gevent 1.0.1, Tornado 4.0.2, …)

Security Vulnerabilities

If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.

Installation

PyMongo can be installed with pip:

$ python -m pip install pymongo

Or easy_install from setuptools:

$ python -m easy_install pymongo

You can also download the project source and do:

$ python setup.py install

Do not install the “bson” package from pypi. PyMongo comes with its own bson package; doing “easy_install bson” installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 2.7, 3.4+, PyPy, and PyPy3.5+.

Optional dependencies:

GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:

$ python -m pip install pymongo[gssapi]

MONGODB-AWS authentication requires pymongo-auth-aws:

$ python -m pip install pymongo[aws]

Support for mongodb+srv:// URIs requires dnspython:

$ python -m pip install pymongo[srv]

TLS / SSL support may require ipaddress and certifi or wincertstore depending on the Python version in use. The necessary dependencies can be installed along with PyMongo:

$ python -m pip install pymongo[tls]

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

$ python -m pip install pymongo[ocsp]

Wire protocol compression with snappy requires python-snappy:

$ python -m pip install pymongo[snappy]

Wire protocol compression with zstandard requires zstandard:

$ python -m pip install pymongo[zstd]

Client-Side Field Level Encryption requires pymongocrypt:

$ python -m pip install pymongo[encryption]

You can install all dependencies automatically with the following command:

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

Other optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1 and SCRAM-SHA-256. It especially improves performance on Python versions older than 2.7.8.

  • monotonic adds support for a monotonic clock, which improves reliability in environments where clock adjustments are frequent. Not needed in Python 3.

Additional dependencies are:

  • (to generate documentation) sphinx

Examples

Here’s a basic example (for more see the examples section of the docs):

>>> import pymongo
>>> client = pymongo.MongoClient("localhost", 27017)
>>> db = client.test
>>> db.name
u'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), u'test'), u'my_collection')
>>> db.my_collection.insert_one({"x": 10}).inserted_id
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.insert_one({"x": 8}).inserted_id
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.insert_one({"x": 11}).inserted_id
ObjectId('4aba160ee23f6b543e000002')
>>> db.my_collection.find_one()
{u'x': 10, u'_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
u'x_1'
>>> for item in db.my_collection.find().sort("x", pymongo.ASCENDING):
...     print(item["x"])
...
8
10
11
>>> [item["x"] for item in db.my_collection.find().limit(2).skip(1)]
[8, 11]

Documentation

Documentation is available at pymongo.readthedocs.io.

To build the documentation, you will need to install sphinx. Documentation can be generated by running python setup.py doc. Generated documentation can be found in the doc/build/html/ directory.

Testing

The easiest way to run the tests is to run python setup.py test in the root of the distribution.

To verify that PyMongo works with Gevent’s monkey-patching:

$ python green_framework_test.py gevent

Or with Eventlet’s:

$ python green_framework_test.py eventlet

Release files for pymongo 3.11.4

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

Source distribution (sdist)

Source distribution for pymongo 3.11.4
File Size Uploaded
pymongo-3.11.4.tar.gz 783.1 kB Details

Built distributions (wheels)

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

Total release size: 30.5 MB

Release files / pymongo-3.11.4.tar.gz

Download URL pymongo-3.11.4.tar.gz
Size 783.1 kB
Tags Source
SHA-256 checksum
How to use checksums
539d4cb1b16b57026999c53e5aab857fe706e70ae5310cc8c232479923f932e6
BLAKE2b-256 checksum
How to use checksums
c42f79e933655adcf6dbd00738b556cecae5f8ec709301ac10df6f488d83bb53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-py2.7-macosx-10.14-intel.egg
Size 775.2 kB
Tags Egg
SHA-256 checksum
How to use checksums
506a6dab4c7ffdcacdf0b8e70bd20eb2e77fa994519547c9d88d676400fcad58
BLAKE2b-256 checksum
How to use checksums
7aa8217d1e31e49f564a37720ace0494121974b649b3b9050a25ee62e89c1738
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-win_amd64.whl
Size 383.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
3491c7de09e44eded16824cb58cf9b5cc1dc6f066a0bb7aa69929d02aa53b828
BLAKE2b-256 checksum
How to use checksums
d9b44ea3b1ce9c84ae86accb138fa2a4b77d6fe14e8b0770a1058fb868811c88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-win32.whl
Size 378.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
5e606846c049ed40940524057bfdf1105af6066688c0e6a1a3ce2038589bae70
BLAKE2b-256 checksum
How to use checksums
bbb9756edb0f480d753bfe12aa1d33a088c177210ba5c28aae1262743a54743c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-manylinux2014_x86_64.whl
Size 518.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ad31f184dcd3271de26ab1f9c51574afb99e1b0e484ab1da3641256b723e4994
BLAKE2b-256 checksum
How to use checksums
36c45abc0ace7110f04812ff27a1ffd1daf9b1273ad8d12c40b949f2523c2ba8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-manylinux2014_s390x.whl
Size 521.0 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
78f07961f4f214ea8e80be63cffd5cc158eb06cd922ffbf6c7155b11728f28f9
BLAKE2b-256 checksum
How to use checksums
9ca3a7b20a2dfc4315dcdbdf0366b30a2c35b2f8a17c1206c3743b003177e3de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-manylinux2014_ppc64le.whl
Size 525.9 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
161fcd3281c42f644aa8dec7753cca2af03ce654e17d76da4f0dab34a12480ca
BLAKE2b-256 checksum
How to use checksums
b65baa571864e0505c104aec70d84ba4163c60f56eba5756e4b8ec89d6552ae6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-manylinux2014_i686.whl
Size 511.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1a994a42f49dab5b6287e499be7d3d2751776486229980d8857ad53b8333d469
BLAKE2b-256 checksum
How to use checksums
484544928c26b316dafc81e402c115090025f8199315a315b51d61504299f1e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-manylinux2014_aarch64.whl
Size 518.1 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
08bda7b2c522ff9f1e554570da16298271ebb0c56ab9699446aacba249008988
BLAKE2b-256 checksum
How to use checksums
ba58d20159ab9e1ba9674db589f8dd0b20083726f2842427199c25474f999e78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-manylinux1_x86_64.whl
Size 500.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0aaf4d44f1f819360f9432df538d54bbf850f18152f34e20337c01b828479171
BLAKE2b-256 checksum
How to use checksums
d2f17587cb631a403a8d89665cdf6e0227926a38b4d73335272924ca4e5b58b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-manylinux1_i686.whl
Size 511.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d360e5d5dd3d55bf5d1776964625018d85b937d1032bae1926dd52253decd0db
BLAKE2b-256 checksum
How to use checksums
d972e974e6a47a21a79a0857fc6b0404fd0064dce870a7580c1d9c4c08b1ee7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp39-cp39-macosx_10_9_x86_64.whl
Size 380.4 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
13acf6164ead81c9fc2afa0e1ea6d6134352973ce2bb35496834fee057063c04
BLAKE2b-256 checksum
How to use checksums
494c9c3b39f941c3d351930305a3eeaa62038313e19941a9864bd79fd70db4a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-win_amd64.whl
Size 383.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
fffff7bfb6799a763d3742c59c6ee7ffadda21abed557637bc44ed1080876484
BLAKE2b-256 checksum
How to use checksums
678cd01a056eba52708504abd787aef9a80c16a034661bcb6ef001a6364e8c33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-win32.whl
Size 378.0 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
eb4d176394c37a76e8b0afe54b12d58614a67a60a7f8c0dd3a5afbb013c01092
BLAKE2b-256 checksum
How to use checksums
e274fa59c59e904b06d4f7c05b941753d1240e6f49783e8d7a50ea190b28f65c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-manylinux2014_x86_64.whl
Size 531.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fe4189846448df013cd9df11bba38ddf78043f8c290a9f06430732a7a8601cce
BLAKE2b-256 checksum
How to use checksums
8717b15596bc492ca608c41ad54b718f83e6840da46f71fab4f14eb4d2572de7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-manylinux2014_s390x.whl
Size 534.3 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
0cabfc297f4cf921f15bc789a8fbfd7115eb9f813d3f47a74b609894bc66ab0d
BLAKE2b-256 checksum
How to use checksums
e06ed78623568d676eafebdddcab2358ec5ec336b7ac38b05711268b65d033cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-manylinux2014_ppc64le.whl
Size 539.6 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
421d13523d11c57f57f257152bc4a6bb463aadf7a3918e9c96fefdd6be8dbfb8
BLAKE2b-256 checksum
How to use checksums
8021c04e1f3e2ca6968a38af25a9ed79104f8541c39fb03a4e2ac188b9ee6d7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-manylinux2014_i686.whl
Size 521.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
474e21d0e07cd09679e357d1dac76e570dab86665e79a9d3354b10a279ac6fb3
BLAKE2b-256 checksum
How to use checksums
ee64ef9c62ad51fc9d9f88c6b9970556fa715e1528b2c306907ceeeb0fad8906
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-manylinux2014_aarch64.whl
Size 530.1 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e4b631688dfbdd61b5610e20b64b99d25771c6d52d9da73349342d2a0f11c46a
BLAKE2b-256 checksum
How to use checksums
266af49f0dab60256a824312a8fc72f59b122b1d09cf612848045dce4294c7ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-manylinux1_x86_64.whl
Size 511.1 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b8f94acd52e530a38f25e4d5bf7ddfdd4bea9193e718f58419def0d4406b58d3
BLAKE2b-256 checksum
How to use checksums
38872a8018470b364e5522be408d2d3cd232247347c33f998e57215c381aa858
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-manylinux1_i686.whl
Size 521.2 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3bfc7689a1bacb9bcd2f2d5185d99507aa29f667a58dd8adaa43b5a348139e46
BLAKE2b-256 checksum
How to use checksums
bc1542d4470faf381464880998d8bfd7a93bdbce21c92b76c136441effa44373
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp38-cp38-macosx_10_9_x86_64.whl
Size 380.6 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f3d851af3852f16ad4adc7ee054fd9c90a7a5063de94d815b7f6a88477b9f4c6
BLAKE2b-256 checksum
How to use checksums
f657603acacddaf930dcdf9b8f7216e09de47ab110b1dc6ea89c8e1a25f4fbe8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-win_amd64.whl
Size 382.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
a08c8b322b671857c81f4c30cd3c8df2895fd3c0e9358714f39e0ef8fb327702
BLAKE2b-256 checksum
How to use checksums
61f13dc7b0579b22bd7e91992dfcbd96f93e5a3e5715f3c7a1fed8a4d6f77a68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-win32.whl
Size 377.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
7c97554ea521f898753d9773891d0347ebfaddcc1dee2ad94850b163171bf1f1
BLAKE2b-256 checksum
How to use checksums
4a547b00c8b6943d44c90a98427859d0b5c71f366370a0aca79c854f697a5ec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-manylinux2014_x86_64.whl
Size 512.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3135dd574ef1286189f3f04a36c8b7a256376914f8cbbce66b94f13125ded858
BLAKE2b-256 checksum
How to use checksums
b129c0c8791ba972456f8aa3f027af33206499bc9f52a948e0d9c10909339b3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-manylinux2014_s390x.whl
Size 514.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
20d75ea11527331a2980ab04762a9d960bcfea9475c54bbeab777af880de61cd
BLAKE2b-256 checksum
How to use checksums
8d9d3f9c1a1503165f55a85fb3c05bd98278ab16313a79add323052a026d1314
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-manylinux2014_ppc64le.whl
Size 521.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
73326b211e7410c8bd6a74500b1e3f392f39cf10862e243d00937e924f112c01
BLAKE2b-256 checksum
How to use checksums
6bc48ec7fa02d0c9a535106029cb7a8007639d9bd8374c86a166b60632986a14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-manylinux2014_i686.whl
Size 501.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6060794aac9f7b0644b299f46a9c6cbc0bc470bd01572f4134df140afd41ded6
BLAKE2b-256 checksum
How to use checksums
a4ec41b159f34e7565a4663bc121660ec2cd5a308ba7e78f62fcfbedd6e3ede5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-manylinux2014_aarch64.whl
Size 512.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
03be7ad107d252bb7325d4af6309fdd2c025d08854d35f0e7abc8bf048f4245e
BLAKE2b-256 checksum
How to use checksums
3360d9e1d710987dd25520c80ed6fbd1cc0e2cc3f34f82eb91cfc264a4c128bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-manylinux1_x86_64.whl
Size 494.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
aff3656af2add93f290731a6b8930b23b35c0c09569150130a58192b3ec6fc61
BLAKE2b-256 checksum
How to use checksums
4ba21ed95a3669c162a47ed5848ac7c3840e64e27c3e6f3bbf796eea2a41b0bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-manylinux1_i686.whl
Size 501.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
38a7b5140a48fc91681cdb5cb95b7cd64640b43d19259fdd707fa9d5a715f2b2
BLAKE2b-256 checksum
How to use checksums
812df8371d66b16c332d2a3b8721640f93751bd1ad83336a029bbfdf7e4359e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp37-cp37m-macosx_10_6_intel.whl
Size 414.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
4c7e8c8e1e1918dcf6a652ac4b9d87164587c26fd2ce5dd81e73a5ab3b3d492f
BLAKE2b-256 checksum
How to use checksums
134435114eb7b96671b0dac7f2c8e6db809fcf3635f18fc3f1d8670b50190575
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-win_amd64.whl
Size 382.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
d4e62417e89b717a7bcd8576ac3108cd063225942cc91c5b37ff5465fdccd386
BLAKE2b-256 checksum
How to use checksums
9439dacdff73468411e52fdbb304684797ccc7463b5c6cc505c2685c7203a93c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-win32.whl
Size 377.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
fea5cb1c63efe1399f0812532c7cf65458d38fd011be350bc5021dfcac39fba8
BLAKE2b-256 checksum
How to use checksums
8793bcb295752d183a1ccf061de1c75520523d30d7d4fd0a1e0b9a82aac9b99e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-manylinux2014_x86_64.whl
Size 509.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5db59223ed1e634d842a053325f85f908359c6dac9c8ddce8ef145061fae7df8
BLAKE2b-256 checksum
How to use checksums
0a76252fe8d9d11ede6677500cb35b417d1ec9d3021d0cd1cff787db20d23df9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-manylinux2014_s390x.whl
Size 511.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3551912f5c34d8dd7c32c6bb00ae04192af47f7b9f653608f107d19c1a21a194
BLAKE2b-256 checksum
How to use checksums
75e8038c8ad0f87b89425b5218a26cece22f5363c3ae2ce20c45d3b261837125
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-manylinux2014_ppc64le.whl
Size 518.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
424799c71ff435094e5fb823c40eebb4500f0e048133311e9c026467e8ccebac
BLAKE2b-256 checksum
How to use checksums
83acfc30f35651df0b56357ce0f3e03a16972c0f0a52a8ffc74c206bc5d7146c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-manylinux2014_i686.whl
Size 499.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
62c29bc36a6d9be68fe7b5aaf1e120b4aa66a958d1e146601fcd583eb12cae7b
BLAKE2b-256 checksum
How to use checksums
28208c3af7ba6ccf89fda82fc52587f1f4eb95c9e5eb93794c126d6341a750be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-manylinux2014_aarch64.whl
Size 508.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8898f6699f740ca93a0879ed07d8e6db02d68af889d0ebb3d13ab017e6b1af1e
BLAKE2b-256 checksum
How to use checksums
d57684f80bd87950ca4c8550fed648bf8ca135a9bdc5baee5075c3081e8f533c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-manylinux1_x86_64.whl
Size 493.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e02beaab433fd1104b2804f909e694cfbdb6578020740a9051597adc1cd4e19f
BLAKE2b-256 checksum
How to use checksums
883e9931f53179f34da3059951a4ad8aa2b3f6b6d2a4aeb2d0db0a6b163f7452
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-manylinux1_i686.whl
Size 499.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b2f41261b648cf5dee425f37ff14f4ad151c2f24b827052b402637158fd056ef
BLAKE2b-256 checksum
How to use checksums
35b8aef7b2077099b3fac8bb5c9d2b9bd5af5544467f9a74ed0b8c996adcfc20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp36-cp36m-macosx_10_6_intel.whl
Size 412.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
9b9298964389c180a063a9e8bac8a80ed42de11d04166b20249bfa0a489e0e0f
BLAKE2b-256 checksum
How to use checksums
b03d5438a23d60260bfdc16d99040b4a8719812d15a7cca5a1f8090280c4ec49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-win_amd64.whl
Size 382.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
d0a70151d7de8a3194cdc906bcc1a42e14594787c64b0c1c9c975e5a2af3e251
BLAKE2b-256 checksum
How to use checksums
9495760bc3174f095a3e78f301c0b2efcdd074a0715cd1f859ad1f73e5304418
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-win32.whl
Size 377.3 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
5c36428cc4f7fae56354db7f46677fd21222fc3cb1e8829549b851172033e043
BLAKE2b-256 checksum
How to use checksums
ce98ae0c413fb62a87e3f5407d1868478e3cc0f4118997fb84b840efb169581b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-manylinux2014_x86_64.whl
Size 508.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f664ed7613b8b18f0ce5696b146776266a038c19c5cd6efffa08ecc189b01b73
BLAKE2b-256 checksum
How to use checksums
b4ab53061c92039413b0eb52ce7b2dbc681af9f72c5eae3c512f880b2e95e469
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-manylinux2014_s390x.whl
Size 510.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8a41fdc751dc4707a4fafb111c442411816a7c225ebb5cadb57599534b5d5372
BLAKE2b-256 checksum
How to use checksums
f06dc20ed40ac38bdc61a797b201800523c2f561697afd628d35718050c45bdb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-manylinux2014_ppc64le.whl
Size 517.2 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
08b8723248730599c9803ae4c97b8f3f76c55219104303c88cb962a31e3bb5ee
BLAKE2b-256 checksum
How to use checksums
7e4f0c5f9fb1dde8da2b26ecdc67cc027322749fd734ada3d47c9dfd3463f1e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-manylinux2014_i686.whl
Size 498.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
b413117210fa6d92664c3d860571e8e8727c3e8f2ff197276c5d0cb365abd3ad
BLAKE2b-256 checksum
How to use checksums
d8ac7a8dd9acbc4ac4786802b01f1f33f9cf00937a1d1b8238c91a63e9bf56b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-manylinux2014_aarch64.whl
Size 507.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f4ba58157e8ae33ee86fadf9062c506e535afd904f07f9be32731f4410a23b7f
BLAKE2b-256 checksum
How to use checksums
f2932a5e362af7d9bd7b5e0e401c6941d25bf395947264090170b9700efc3cdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-manylinux1_x86_64.whl
Size 492.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
071552b065e809d24c5653fcc14968cfd6fde4e279408640d5ac58e3353a3c5f
BLAKE2b-256 checksum
How to use checksums
78a5817c5ff41842b83b7d481e2e431a22d1515764516f93d934f00786a65874
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-manylinux1_i686.whl
Size 498.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
510cd3bfabb63a07405b7b79fae63127e34c118b7531a2cbbafc7a24fd878594
BLAKE2b-256 checksum
How to use checksums
278695f5be498a049b2f2e67a3a06eb4082d4331239d120065f80f57fb9a7c3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp35-cp35m-macosx_10_6_intel.whl
Size 412.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
977b1d4f868986b4ba5d03c317fde4d3b66e687d74473130cd598e3103db34fa
BLAKE2b-256 checksum
How to use checksums
b7aae298217a089c17a746ae71559f629557beaeb4e1a1e9ee6c766ac7fae107
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp34-cp34m-win_amd64.whl
Size 378.7 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f08665d3cc5abc2f770f472a9b5f720a9b3ab0b8b3bb97c7c1487515e5653d39
BLAKE2b-256 checksum
How to use checksums
43ba3780b6a186642c0d1c0e72bc6319dd3a5a3ad292dd89e4620d0389260254
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp34-cp34m-win32.whl
Size 375.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
15b083d1b789b230e5ac284442d9ecb113c93f3785a6824f748befaab803b812
BLAKE2b-256 checksum
How to use checksums
f289c46842cd2578604572aa6fc01c8c475189f6557be137ea9e611cbecb7c50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp34-cp34m-manylinux1_x86_64.whl
Size 488.8 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d65bac5f6724d9ea6f0b5a0f0e4952fbbf209adcf6b5583b54c54bd2fcd74dc0
BLAKE2b-256 checksum
How to use checksums
2c1f24942f0133315f922ee8c27633d4ad3b4313c8d9a93c0af1c7464110768e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp34-cp34m-manylinux1_i686.whl
Size 480.3 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9a4f6e0b01df820ba9ed0b4e618ca83a1c089e48d4f268d0e00dcd49893d4549
BLAKE2b-256 checksum
How to use checksums
fc055be9104acae18ee376c1da939b196ee40fd871ae7883f798aa688f778966
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp34-cp34m-macosx_10_6_intel.whl
Size 411.7 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
3a3498a8326111221560e930f198b495ea6926937e249f475052ffc6893a6680
BLAKE2b-256 checksum
How to use checksums
0d24ac9bf7a6a3c3d7e440bc7c6bd0266a8987900341305d24a1b6a7d08a8940
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp27-cp27mu-manylinux1_x86_64.whl
Size 488.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f947b359cc4769af8b49be7e37af01f05fcf15b401da2528021148e4a54426d1
BLAKE2b-256 checksum
How to use checksums
1a6762f25bcaac57b67489c42880e458883559f171cbb32dc5ed5effcddc154e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp27-cp27mu-manylinux1_i686.whl
Size 480.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
fedf0dee7a412ca6d1d6d92c158fe9cbaa8ea0cae90d268f9ccc0744de7a97d0
BLAKE2b-256 checksum
How to use checksums
a03b6ada9593ee8b886a3b20e90416d8e4373dd223dbdd4e8695b887a7989747
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp27-cp27m-win_amd64.whl
Size 379.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
8e0004b0393d72d76de94b4792a006cb960c1c65c7659930fbf9a81ce4341982
BLAKE2b-256 checksum
How to use checksums
fe3639998dd221d2c1b7f7a66df5ff7d8f2d00f7cb90ce3983a62b6655914bce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp27-cp27m-win32.whl
Size 375.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e4e9db78b71db2b1684ee4ecc3e32c4600f18cdf76e6b9ae03e338e52ee4b168
BLAKE2b-256 checksum
How to use checksums
181374b70154c9fb65cda59566b3588110763697842a642c59c1f46702a6c248
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp27-cp27m-manylinux1_x86_64.whl
Size 488.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
225c61e08fe517aede7912937939e09adf086c8e6f7e40d4c85ad678c2c2aea3
BLAKE2b-256 checksum
How to use checksums
a10ba9d9aa9df30417605038e58934f1211ae36aded2054c04d5adcc3e6dfff5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp27-cp27m-manylinux1_i686.whl
Size 480.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
517ba47ca04a55b1f50ee8df9fd97f6c37df5537d118fb2718952b8623860466
BLAKE2b-256 checksum
How to use checksums
b2ada7d8c2d8218cd59a1e33a59d1931c87f561cca3af7d20ce7f7675ad3e375
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

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

Download URL pymongo-3.11.4-cp27-cp27m-macosx_10_14_intel.whl
Size 376.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
b7efc7e7049ef366777cfd35437c18a4166bb50a5606a1c840ee3b9624b54fc9
BLAKE2b-256 checksum
How to use checksums
a59bbe3100fe69601a382c8ef429d1c951dced31439b9d139d6cb01144b7f097
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.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

4.2.0

67 release files

4.1.1

83 release files

4.0

83 release files

This release

3.11.4 This release

64 release files

3.9.0

31 release files

3.8.0

31 release files

3.7.2

39 release files

3.7.1

47 release files

3.7.0

44 release files

3.5.1

53 release files

3.4.0

49 release files

3.3.1

53 release files

3.3.0

44 release files

3.2.2

61 release files

3.2

61 release files

3.1.1

61 release files

3.1

61 release files

3.0.2

48 release files

3.0.1

49 release files

3.0

49 release files

2.9.5

41 release files

2.9.4

56 release files

2.9.3

67 release files

2.9.1

67 release files

2.9

63 release files

2.8.1

55 release files

2.8

55 release files

2.7.2

56 release files

2.7.1

56 release files

2.7

56 release files

2.6.3

29 release files

2.6

29 release files

2.5.1

34 release files

2.5

34 release files

2.4.2

34 release files

2.4

34 release files

2.3

28 release files

2.2

25 release files

2.1

21 release files

2.0.1

19 release files

2.0

20 release files

1.11

13 release files

1.10

13 release files

1.9

9 release files

1.8.1

8 release files

1.8

8 release files

1.7

8 release files

1.6

6 release files

1.5.2

6 release files

1.5.1

6 release files

1.5

6 release files

1.4

6 release files

1.3

6 release files

1.2.1

6 release files

1.2

6 release files

1.1.2

6 release files

1.1.1

4 release files

1.1

6 release files

1.0

6 release files

0.16

6 release files

0.15

7 release files

0.14.2

6 release files

0.14.1

5 release files

0.14

5 release files

0.13

5 release files

0.12

5 release files

0.11.3

5 release files

0.11

2 release files

0.10.3

2 release files

0.10.2

2 release files

0.10.1

2 release files

0.10

2 release files

0.9.7

2 release files

0.9.6

2 release files

0.9.5

2 release files

0.9.4

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9

2 release files

0.8.1

2 release files

0.8

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7

2 release files

0.6

3 release files

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