Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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.4.0b0

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.4.0b0
File Size Uploaded
pymongo-4.4.0b0.tar.gz 815.8 kB Details

Built distributions (wheels)

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

Release files / pymongo-4.4.0b0.tar.gz

Download URL pymongo-4.4.0b0.tar.gz
Size 815.8 kB
Tags Source
SHA-256 checksum
How to use checksums
90774f827a188e038665c72ca2b041254b456050513636edcbb9c5324b8a19f6
BLAKE2b-256 checksum
How to use checksums
10dad8399529d145b4f169e0761fcceab9f801a67caeab4fdafb26394cc991aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp311-cp311-win_amd64.whl

Download URL pymongo-4.4.0b0-cp311-cp311-win_amd64.whl
Size 384.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3ad65883a48c5231237b999e717da76b16d633222436084fedf88011c9762905
BLAKE2b-256 checksum
How to use checksums
3154d155307a49289a3233baf7d3fa6bb80a6ba7c995720652fd0418ca6e9337
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp311-cp311-win32.whl

Download URL pymongo-4.4.0b0-cp311-cp311-win32.whl
Size 381.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
15877a35cb4d848a8c91d9d28d9eee6633118da2f949b263085e7971241826a3
BLAKE2b-256 checksum
How to use checksums
83c990a6531b658fdd83fe4440dd2545620267c6825a9c68bdb911acc797bdea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 496.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2989438a0b2820bfb7a1c995988da68998ad538ca4514a0764f83e399a72fe7b
BLAKE2b-256 checksum
How to use checksums
3aea521a81ca4522d7b7808a908f9e550fd7a643c323115eaf86776bc67cb7b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 500.1 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
58b2dbbb4d56b76061f305ceded81a70d98b1549171a28ecfeb9e365ba21c0ce
BLAKE2b-256 checksum
How to use checksums
4fa6d0fee2a2c369068f26a60243c2b88be2da67db105ac65af966c6cdc4f1f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 504.6 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
30fdea481ba080bb05d9e0962861ceddeb473e444a6c6778756b169e88d5adcf
BLAKE2b-256 checksum
How to use checksums
c72016d5878dc83237d2b03ef08d2557a7ebd902069dcb2850e6f3ea8ad8161a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 497.0 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
eb3f97baa74da3d5d67a38207fa1b267998bb8eff6c4466d45dafde8c23c8f2e
BLAKE2b-256 checksum
How to use checksums
0b921579a315714d8439d9eb64290dd65772efac6112b3b2c312a5d42c51643f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

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

Download URL pymongo-4.4.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 490.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
803bb3715898e03479c7eb098a39059c403ad0c3881b2ab5979f015438fcb775
BLAKE2b-256 checksum
How to use checksums
067385cc60f73873b2dd57033f705f84c91263d3c91ffddcb0a5ea7a9ac34f7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp311-cp311-macosx_10_9_universal2.whl

Download URL pymongo-4.4.0b0-cp311-cp311-macosx_10_9_universal2.whl
Size 415.5 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e5ae8d95e806c4c8b9a8cfc452052512e6f06ccab9e6ee0602f2457a2f207d45
BLAKE2b-256 checksum
How to use checksums
99607cc92187999a09d64d7a63a2fa84566ab8fbd6e6d90c13e9fdeda57b3fee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-win_amd64.whl

Download URL pymongo-4.4.0b0-cp310-cp310-win_amd64.whl
Size 384.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
a2f3bb0a832c82e0984c25ecd14449fdf1d8cba40c57541685862857272e9f9f
BLAKE2b-256 checksum
How to use checksums
0e646f97d904877a1fbc3bdde09a6dcc44ec5a53a570ec86f655bb28f8494952
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-win32.whl

Download URL pymongo-4.4.0b0-cp310-cp310-win32.whl
Size 381.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
ab4cb1b975825793628e5d20906bdb2073e25454f3e5b51f13bc5679b7fd8e55
BLAKE2b-256 checksum
How to use checksums
ac97fff1772bdd17553916fb0880eb4073d8a042f56c263de57d1648c88934a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 494.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e4363e8822b0894aa3696b2864ddd8f93e12fb0937faf31458cf0900ac191464
BLAKE2b-256 checksum
How to use checksums
79e01e83b2ddadfd31880342dc3d7b046f207ff73eba986edccf9c283a156a09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 498.1 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
208611e6389201003504a79202e782bad2834019d28d03263465b607172583cd
BLAKE2b-256 checksum
How to use checksums
c86fdd22498372d69f8c50fda4b0b1492c1df2143f4d9ae0f5e7736e2187f7e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 502.8 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
586fb0b22e5e4f0ffe6085ccc25142286bb522a83a717277d923ff3247283fb9
BLAKE2b-256 checksum
How to use checksums
1a22c0c7b84d835d393d5879f6066ee82b085e247390c7e4687d90e4a6c0ce1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 495.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
75c8082a7b0fae44f9e9e06ba1bf464e78616617c0e4df81b1367bf93c74efbe
BLAKE2b-256 checksum
How to use checksums
cc7e7275bd0e44321b4d7e1c4b72ddaadab47d3600ee91a3dddb000792daaccc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

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

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 488.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c80026705c83dd6932fffc141c0b552ae705b9b293e7d5d85ca160d260cb49e5
BLAKE2b-256 checksum
How to use checksums
ea4d4e061f65b0c4459fea32ee0def5d35e69eb765a4dffbc286fee240e584ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux2014_x86_64.whl
Size 511.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a0aebd920c82f14fe2116c81a0766489c5a7853976650be76c7c4074f9c2ab9e
BLAKE2b-256 checksum
How to use checksums
3bb3b746b482377b767cbfe5c39c3c042c6079c1852682280540cb7ad0d8595b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux2014_s390x.whl
Size 513.9 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1346b8094724dfe1cc51edf72a9ea2e7a8dcd0a567e8d8093033aacacaa42332
BLAKE2b-256 checksum
How to use checksums
baaf297954f86260754c9a44fa69ed9767192022c06889256f20c800dc41cb7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux2014_ppc64le.whl
Size 518.3 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
af5fbcb547abcfd099bae96c8574e64e220101929bb27b35723cc9ead44580d9
BLAKE2b-256 checksum
How to use checksums
6874c261cdbca4bebb8b3a78c0dfc180fe681321621ff0da79cb318a5dc42285
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux2014_i686.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux2014_i686.whl
Size 507.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ee5abd401025d94302468d1c5224347a302ce97acd97e85b73f27ee0e3b349db
BLAKE2b-256 checksum
How to use checksums
cb36b08e69c2b36bcfe2037d02f55e39ebead3dd7f31ab5f96d5e1263750f0e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux2014_aarch64.whl
Size 511.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ba427d31cc1d5c106ac2ad75a901630d5b31410bc3574e1f95b15d2422d77174
BLAKE2b-256 checksum
How to use checksums
a92c5edf0e4acfdc7ee87d95df1e5a055b2dffb6a9f06d30c6c3d5887d734f5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-manylinux1_i686.whl

Download URL pymongo-4.4.0b0-cp310-cp310-manylinux1_i686.whl
Size 507.1 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
bb26c82c8069020d81d4eb59db642b87251c32d58a1ba76774a255578765fcf6
BLAKE2b-256 checksum
How to use checksums
20047c7ff213aae80d25f9b1582bc154e908d526b13e9389f7eef44bcb7db3a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp310-cp310-macosx_10_9_universal2.whl

Download URL pymongo-4.4.0b0-cp310-cp310-macosx_10_9_universal2.whl
Size 415.6 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
7c7a6bf5fe7dcef7f50d279f71e03a059a1c9bc4476cb53f628760362cc1f6f3
BLAKE2b-256 checksum
How to use checksums
c2969f636147c964a854097395c605505bec475a535bb4a3b0b52e2d7833666b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-win_amd64.whl

Download URL pymongo-4.4.0b0-cp39-cp39-win_amd64.whl
Size 384.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
3e1fa5fb0b5137dca5a52b525fbc6e2aa40e471138d341059e9f15c2abcf225c
BLAKE2b-256 checksum
How to use checksums
65aacda30afb3f90c1f7bbcc916328863fc257f3a3d82d1d1bd4cbf6860a51e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-win32.whl

Download URL pymongo-4.4.0b0-cp39-cp39-win32.whl
Size 381.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
d7629a83be9591fcbaf2388f263bef8ce6f3d9d3e0bf0f0bb2a4ff2da76a9945
BLAKE2b-256 checksum
How to use checksums
d5a912835a4822ff0411d1685587553d80b7d148da07cea39cc25392a1862323
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 493.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
86826f2df5a5102bd33fe2627bbc64b09f21ec4c69fd42e5a35f4c37f66d629f
BLAKE2b-256 checksum
How to use checksums
723680afb729e3bcd13e905e70cb371bbdf11d1270de720c7106b35430e307f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 497.5 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
7e8912fada0beca4fdad611270248b5cc8ff466eb1deb933a4ac0367462c05f0
BLAKE2b-256 checksum
How to use checksums
32b4f23882cbeee9c81f7089ebdcaaf0acd3ce8b58c795703ad708bc8f27cf5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 502.0 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0f6325627c2e34a81abe31dac0bacf445b5e5da5692844e6114655f33887f311
BLAKE2b-256 checksum
How to use checksums
67e00fc5c86baab1bdf7d90ef44048453da3e8e557f56f925b4c5cde6ec5fe54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 494.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d93463f4a2d00625b4d61d2c71140fbae8047b9d4cafdf6806babcb1f39c9048
BLAKE2b-256 checksum
How to use checksums
30d7c744366f9940270d3375b5945b794067b33536e3ed239f0cc018dfd5d939
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 498.0 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
37a03f39516bd5f1386ab62bad2ad1f8e9c3806fefb97f5690351458aaf75a82
BLAKE2b-256 checksum
How to use checksums
612e720a42ab3ea06cdf7cf0ee3dbfeccd5f6dbebb709db978f1906ffdab683f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 491.6 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
82ffac1308c9b470294feff550025af8a36a28002934334b7058e6caa28c6d36
BLAKE2b-256 checksum
How to use checksums
7f24cc7cebe36d6e3c44e4f51374cad2a57e503f491975739d6fc3362581bd3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

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

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 487.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9dd4b66df41dce0ee43c0c8ede40665f2d099ebc3f614dc8cb7fb53051889b72
BLAKE2b-256 checksum
How to use checksums
01db6a0244c046210b930eaf67c491804dafffa741e7f3ec683467be8a3021df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux2014_x86_64.whl
Size 510.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a94c27b251d24356177217cfbf285d0eb389305c67c9e04fc48b1e22fb9c2210
BLAKE2b-256 checksum
How to use checksums
f56b2de172188631ac25717054b81c8a6ed192166ba514fc2c3ad3a04fafe3ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux2014_s390x.whl
Size 513.2 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
889e93c0a73a54806f10193cade0ccc7d7dc78b794df1f56600fe4e23150eefd
BLAKE2b-256 checksum
How to use checksums
5b99db22e0e9020d2f1836e9cfb7af0d626ee82a27d78f8e570c1015f2868198
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux2014_ppc64le.whl
Size 517.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c8e50f532186344e66762fccc4335779ace9bb182c6288cf5abd8195e1c1022f
BLAKE2b-256 checksum
How to use checksums
4a99d88da36eafeb8fbacefc16a31660c56e4fab6ed1114734d4fb01a5f86726
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux2014_i686.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux2014_i686.whl
Size 506.3 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
cf4f79c4dbf1f7a929629cb7f38dc8ad957413488212c276a470804e8cebdcf0
BLAKE2b-256 checksum
How to use checksums
0c53e45be4e9a66c5f88531876b55f430f5098914861a0c5ef3a346fef5214b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux2014_aarch64.whl
Size 510.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
320c5151d5747419d01b49ccc4069962c328cbdb880fd85d60c65d69ee881157
BLAKE2b-256 checksum
How to use checksums
59de1d98033436bdce51e1dd3792de037c4e2be8752aee95a22a5593dd819e0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux1_x86_64.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux1_x86_64.whl
Size 497.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
afc8c4f1c93163eb721245ac4076ba24c714e972300b28893598758f5312d29a
BLAKE2b-256 checksum
How to use checksums
7796bfe2ea3a153900409f974789329ec0cfbe683a7e9f80fde97050f45458c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-manylinux1_i686.whl

Download URL pymongo-4.4.0b0-cp39-cp39-manylinux1_i686.whl
Size 506.3 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ad132956d7bb3ac472ac5fe1ca98a544750f75a6aed830f85c450c66008f38a6
BLAKE2b-256 checksum
How to use checksums
0fa2bb6724a9bf34c9680218ddaa69826ccfaf664f72613c14c197edb8cd523c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp39-cp39-macosx_10_9_universal2.whl

Download URL pymongo-4.4.0b0-cp39-cp39-macosx_10_9_universal2.whl
Size 415.6 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
88ec3fe14c6ff36b5f0f839773cfcda4ed057ae93cf64ff9db3381b8143ed11d
BLAKE2b-256 checksum
How to use checksums
452c9c789f517bcdaed4c2e8d2a0619f144a011a2055ee8366a30ed1ae3ff3e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-win_amd64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-win_amd64.whl
Size 384.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
3db8a264c7f1712d7ad3ce2c1084bd01e46ff231c8ece131227042402b4e2e0a
BLAKE2b-256 checksum
How to use checksums
427adf9880803f109eb41bdc7d4246bad477739f6789e570530aa9b7867e0b8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-win32.whl

Download URL pymongo-4.4.0b0-cp38-cp38-win32.whl
Size 380.9 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
f020064fe1e6b0bb79578ea81620e5ece01095d661c498a5857099313322cd3e
BLAKE2b-256 checksum
How to use checksums
2cd5cb2252e6a5bf5cbe4376893532737ece39e4fd7203434ace57f092421a76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 503.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4070c44f0ec95a06e90b159f39acce0060d26bb90cd337cf9dd2f77f5bf6485b
BLAKE2b-256 checksum
How to use checksums
088aa60f9468b48ffebed850fd8133b60aadb1f2b0f056dfc061999506d641c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 507.1 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ba3f0fbe1ab690e4d6c2d7398bffda9c4bad915c8e5fb40b758770e88cd7a71a
BLAKE2b-256 checksum
How to use checksums
c1953e63a95bbaa8fd7cf8d0ca88e7ba763cfb9c492e72d8fce6a15d30215b54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 511.6 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d623016d7e71f81578d7220462d096f426b23baf0c42eec11e41b3ab93ec4966
BLAKE2b-256 checksum
How to use checksums
f92c64c123094656631545e8e698513bc151b41f44e56e6adeb441fcd4b59800
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 503.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e0667241a6ad9599538b835981c39f53c8732e04259272d7f0e6cb56a27d849a
BLAKE2b-256 checksum
How to use checksums
4c27357d4322cbce2ec550a6342578c1022a189e6763c0a2e4df5c109f8ac9a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 507.2 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fa12d2fd2841d6ef7ef4baad609eaddeee30ff6a273a63a1500dac8fc8abc680
BLAKE2b-256 checksum
How to use checksums
07ebf4a960f1449eba1a47752d5f52dbd10d157690f9db02357513fd1fcf2168
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 498.6 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4e4650a359ab5f1bb95618f788c42c64e2495aba3d6ff93b0959f8ae46710855
BLAKE2b-256 checksum
How to use checksums
8c8112d97be020e739c8f83aea6746e00075443101ced8c24d67f1b37f270980
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

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

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 495.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b018854676f1c7429a26c538268933e31b9a27839a2639e92982ff880723f7e2
BLAKE2b-256 checksum
How to use checksums
b69f703037813d833e17c3c94613f7ca682f6f89e24162d831d808f035238855
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux2014_x86_64.whl
Size 521.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
70d269d309a9996aab2f06132fca58274e7705691a9ce5d3ea6d59a8ccd2fe10
BLAKE2b-256 checksum
How to use checksums
f9d115a7853a7084042f77c02e37be5da63a30ac46116d5d7842340cc95dc47b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux2014_s390x.whl
Size 523.8 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
d3aebf5291ea541d1c4eebe36135f9928f97506f3ec6d9f3396f84acf439432b
BLAKE2b-256 checksum
How to use checksums
f54579d73b99b4a0dba8781c06f806af3cbd7824da574621c9e6941563100f3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux2014_ppc64le.whl
Size 528.2 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3add7993249fa6c55f42cc48638ced5ead74dd68c6a0bedde39749b322cf4d05
BLAKE2b-256 checksum
How to use checksums
fd4836f00616416afbdafbf237f9c623b0bcfa259ab2c84c39fe31397034aae9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux2014_i686.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux2014_i686.whl
Size 514.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
3c59e815ee7439f25bda23e9933abd9f464aefcfbf85eb4b021e7344f1297c02
BLAKE2b-256 checksum
How to use checksums
3c340d47f6be1223d9d202150da77b8670e037469a640d1c7c25e102c6124708
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux2014_aarch64.whl
Size 520.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
43a010b68d08f38bddf92f1193a9d72154eec0276fde0e12b6ed3464473dd4f7
BLAKE2b-256 checksum
How to use checksums
57d78bfdac66ed37b58c6ab09cf79e99638a7832819b9867dc25c175a2095fe7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux1_x86_64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux1_x86_64.whl
Size 506.9 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6225c2a44ed890598a4e430994a9eca869f54a4267d7908614694128800a93d1
BLAKE2b-256 checksum
How to use checksums
0f6c6b1938c180553023c2bb071730baa6ff2ac6b1ad91d608b3a2a82778e445
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-manylinux1_i686.whl

Download URL pymongo-4.4.0b0-cp38-cp38-manylinux1_i686.whl
Size 514.2 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
59cec5922a1aeee5a9b4aa6c8bfa1a6417f16e773bbf83cf9ce994980b84a2a5
BLAKE2b-256 checksum
How to use checksums
0c9ac229286af63c5e2e6272b9df3a58731897828d972beb2126769a3413b3c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pymongo-4.4.0b0-cp38-cp38-macosx_10_9_x86_64.whl
Size 383.6 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c5cf40cbc924bc6c92cf2ce0b2fe6919475c5789636a4b8d93af548695f78d45
BLAKE2b-256 checksum
How to use checksums
b5f4847f613ef5579cb0dc024a3e9d6341e8e47947f45c9128d20c621c64af8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-win_amd64.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-win_amd64.whl
Size 384.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
cbdd70438f60050e6a437d18316db1d4de2ce0b3e09f4b43bc1bcd9fed468a73
BLAKE2b-256 checksum
How to use checksums
5ec935b68be3c7fb1db979105704467e55abf917a7270719a293e84b8242959d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-win32.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-win32.whl
Size 380.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
f96bd4772a8a0e6d3b9735ab69cc32cfdd5df3f13670a8775db54ddcd7fe9d6d
BLAKE2b-256 checksum
How to use checksums
d6d046ef56cad9ca9de811b0ddc183083530759fd3a0d8587f463f2e1c902bf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 486.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0464971123280fd4e6af498908e73551e5af6561560f5de9aa40efec79bbf05e
BLAKE2b-256 checksum
How to use checksums
df4cecdd0d2204f54b4c4ed6f4e02eb4de641fc3316cb0bfddb7e23625c47981
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 489.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
062a4da93e12ef834f1f02c6820eb583a2bf92ad18c66dce04e7205a177d358d
BLAKE2b-256 checksum
How to use checksums
60a80ea4797bcadfa8067be6901f856f1ae7951b61207ecff6461378974bc7ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 493.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
854ffeb867c1f2565dfe494541857ab60f53887f12f811324be4dc4e19b8aa0e
BLAKE2b-256 checksum
How to use checksums
700594476487837fd209ba21678e72c0471aa1c1bc796272a2addfa196c9de4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 486.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cd99baf051a923d1d969ba9bb4f82936c002a00c3c2b385f1bb99f6d01f9d120
BLAKE2b-256 checksum
How to use checksums
951d9aadc15c601a011026ae3568d3e111be2fc9bd9e915a7c1572f724bf94b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 488.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
13a52b1e206b5d0a81e17118fe0e1edca27e7a057eb2677decf00f71a9f841a5
BLAKE2b-256 checksum
How to use checksums
a52136dd525faa09f9b4d8529562e49b5e5507ff41ecc3fc55136f545fce63af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 480.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f32d7aae856e0d39a640490ebd5cdf41c10e29382d24fde53800ec64799226f0
BLAKE2b-256 checksum
How to use checksums
9e151a9377e3a4643dc9268a820608cac050b4b89602b5065344ff47878f00a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

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

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 479.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
cc50a2e35a251edca354e0652109162648fc9576ececa3f69045f98bd3e14e90
BLAKE2b-256 checksum
How to use checksums
343c08c68ab45b1f6c1510f87ae2d158c3f2f6da5dedb289f9210478c059b1a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux2014_x86_64.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux2014_x86_64.whl
Size 503.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2aefa1be66af6295aa0e91d9654007950c24f68e727c41300ba2cabff442a9ec
BLAKE2b-256 checksum
How to use checksums
1b08ed8daee388b444196d0a54a3989d945aada58470eb35bd0555d87d9bc265
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux2014_s390x.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux2014_s390x.whl
Size 505.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
7502baebc289b4105887fbc13354431765350349dc7b3941dcfaff68751bb249
BLAKE2b-256 checksum
How to use checksums
295320a52ba298fe02ac58bed3928bd2e6000fbbda4a443197823b77a2ac081a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux2014_ppc64le.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux2014_ppc64le.whl
Size 510.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
32fce0afc49a5aaf09bfa428ebf8463c6e01a602a0bc2f93efa628219d7ef5ab
BLAKE2b-256 checksum
How to use checksums
ec8258e33cba5ee4351ac12db177bd7fc2f3e83deac29c993a1042ecb884f83b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux2014_i686.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux2014_i686.whl
Size 497.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
030c5bf8f785bd74b12f68b5a628c3b989c15ebae02a77d54f6274b04270120f
BLAKE2b-256 checksum
How to use checksums
1ca648b336535b1f61a84b2f3aa7d3e0f2839a046588addfd7312cf29345d481
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux2014_aarch64.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux2014_aarch64.whl
Size 503.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a8675a184d4a490eb011f4410612dd499eefd440fd2a8211462ae537807f5593
BLAKE2b-256 checksum
How to use checksums
e05a02905766f95990ec846e1f4e4aedf031f9f279a8e35f7de2937b7cc5f7b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux1_x86_64.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux1_x86_64.whl
Size 488.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f0249f6d29ce4b3b33801b489fee3ef5e48f1a1adcb1598992042a497fe55f56
BLAKE2b-256 checksum
How to use checksums
c097dadb251943ce988e7099d7969eb34ac43688e21447acc40b84d88fa83cfc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-manylinux1_i686.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-manylinux1_i686.whl
Size 497.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d5e7fb0ff2722de616a14a1f7c5847c464fcffe71173711720491c505430ab4e
BLAKE2b-256 checksum
How to use checksums
55f824518abf60f91f8c01979ad1e539454659730fce07ac0336665b64e8eea0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / pymongo-4.4.0b0-cp37-cp37m-macosx_10_6_intel.whl

Download URL pymongo-4.4.0b0-cp37-cp37m-macosx_10_6_intel.whl
Size 413.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
6d178b47be5562c9b66862c9f599f09c26f917f94b27d880e3e399b0aa5de449
BLAKE2b-256 checksum
How to use checksums
78968b75fb4f8d3701349bd352cb84cb9e126bd72265ec9d4214cb40b7a8a88f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

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.4.0b0 This release

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

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