Skip to main content
File added late

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

Info:

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

Documentation:

Available at pymongo.readthedocs.io

Author:

The MongoDB Python Team

About

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

PyMongo supports MongoDB 3.6, 4.0, 4.2, 4.4, 5.0, 6.0, and 7.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 StackOverflow (using a “mongodb” tag).

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:

$ pip 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 or run tests) tox

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.

Documentation can be generated by running tox -m doc. Generated documentation can be found in the doc/build/html/ directory.

Learning Resources

MongoDB Learn - Python courses. Python Articles on Developer Center.

Testing

The easiest way to run the tests is to run tox -m 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.6.0

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

File added late

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

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

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for pymongo 4.6.0
File Size Uploaded
pymongo-4.6.0.tar.gz 1.4 MB Details

Built distributions (wheels)

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

Total release size: 53.5 MB

Release files / pymongo-4.6.0.tar.gz

Download URL pymongo-4.6.0.tar.gz
Size 1.4 MB
Tags Source
SHA-256 checksum
How to use checksums
fb1c56d891f9e34303c451998ef62ba52659648bb0d75b03c5e4ac223a3342c2
BLAKE2b-256 checksum
How to use checksums
b45e11fad226acae56ef8cfee205bf491f4d50f9c12c5bf3294680006d04de54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-win_amd64.whl

Download URL pymongo-4.6.0-cp312-cp312-win_amd64.whl
Size 472.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
014e7049dd019a6663747ca7dae328943e14f7261f7c1381045dfc26a04fa330
BLAKE2b-256 checksum
How to use checksums
c56a7a356bbe85aceee14299af5fa8947bfb8c55fb131476220c3627891a6258
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-win32.whl

Download URL pymongo-4.6.0-cp312-cp312-win32.whl
Size 467.6 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
47aa128be2e66abd9d1a9b0437c62499d812d291f17b55185cb4aa33a5f710a4
BLAKE2b-256 checksum
How to use checksums
e2e744f649615355878067f33453a594a4193518349d47e0e990abb0d506d564
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 691.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2d2be5c9c3488fa8a70f83ed925940f488eac2837a996708d98a0e54a861f212
BLAKE2b-256 checksum
How to use checksums
8381e08a170fcf20ba6f2d21865f247d368c717d070f508963517a56c798a3ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-4.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 701.0 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ecd9e1fa97aa11bf67472220285775fa15e896da108f425e55d23d7540a712ce
BLAKE2b-256 checksum
How to use checksums
bb9152a1b0a5b203aa7651c92dc62a561432bde2fef7db28c9c0f8155e11bbb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-4.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 704.1 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
49f2af6cf82509b15093ce3569229e0d53c90ad8ae2eef940652d4cf1f81e045
BLAKE2b-256 checksum
How to use checksums
371abcf9bcf8191f913a845e7dea211d00a614bc263300c88e49c5d5389b04e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-4.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 694.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
79f41576b3022c2fe9780ae3e44202b2438128a25284a8ddfa038f0785d87019
BLAKE2b-256 checksum
How to use checksums
f600631bed6b95bf666173d454a201e808c178eabd13085cba02e0bea67daf67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-4.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 681.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8ab6bcc8e424e07c1d4ba6df96f7fb963bcb48f590b9456de9ebd03b88084fe8
BLAKE2b-256 checksum
How to use checksums
62eb4feb857b0ae14db129dc4b5f5fc5b9571f555652a272cec8d69fd310b495
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp312-cp312-macosx_10_9_universal2.whl

Download URL pymongo-4.6.0-cp312-cp312-macosx_10_9_universal2.whl
Size 533.4 kB
Tags CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
d603edea1ff7408638b2504905c032193b7dcee7af269802dbb35bc8c3310ed5
BLAKE2b-256 checksum
How to use checksums
ccd38e1475d40c0fa939b367eb2c8099479227dcc6d28f308f56d9033df65804
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-win_amd64.whl
Size 472.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6695d7136a435c1305b261a9ddb9b3ecec9863e05aab3935b96038145fd3a977
BLAKE2b-256 checksum
How to use checksums
5016d5b3e2d5d23e81bfd0a1bc04a038f7075992ebffa361f789880a155a2c61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-win32.whl
Size 466.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
7fc2bb8a74dcfcdd32f89528e38dcbf70a3a6594963d60dc9595e3b35b66e414
BLAKE2b-256 checksum
How to use checksums
c6c1da0920b6bb4791300ab9e88cfcfa9dcb3f8062fff808bb2d12b514dec817
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 680.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3ec6c20385c5a58e16b1ea60c5e4993ea060540671d7d12664f385f2fb32fe79
BLAKE2b-256 checksum
How to use checksums
24cbc1824d7c5946c7750a4ce3e2b118b03b88975915f1d060f1f3ec5d9f49d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 686.4 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1ec71ac633b126c0775ed4604ca8f56c3540f5c21a1220639f299e7a544b55f9
BLAKE2b-256 checksum
How to use checksums
35e4da05c4f7546b6ecfb0e304e5c415b912f43adc4b9d3a55e51f4b4d044c37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 692.3 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
af425f323fce1b07755edd783581e7283557296946212f5b1a934441718e7528
BLAKE2b-256 checksum
How to use checksums
3474e7dcb3ebe651a7da357124f8d21103a99f443531fb932ceb16fc52d3f49a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 680.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2973f113e079fb98515722cd728e1820282721ec9fd52830e4b73cabdbf1eb28
BLAKE2b-256 checksum
How to use checksums
7eb2630ec44e106fd3bc8ca3f67449aa1dac6b779797859562f8f996ab4f4b4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 669.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
85f2cdc400ee87f5952ebf2a117488f2525a3fb2e23863a8efe3e4ee9e54e4d1
BLAKE2b-256 checksum
How to use checksums
77a177118a49d6e7be68e7aafe8701d8c1e0001b474a826e34edd381cea7f0d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp311-cp311-macosx_10_9_universal2.whl
Size 534.3 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ba51129fcc510824b6ca6e2ce1c27e3e4d048b6e35d3ae6f7e517bed1b8b25ce
BLAKE2b-256 checksum
How to use checksums
a73c9f1ad55fbaccf111fc2c3c7309c67035c4dbaed47af92dec3a78d16fe17d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-win_amd64.whl
Size 472.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
8adf014f2779992eba3b513e060d06f075f0ab2fb3ad956f413a102312f65cdf
BLAKE2b-256 checksum
How to use checksums
5a89d70748baeb316eeb2cd464ee33354b9ce4346787388eb9e23b284daf6500
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-win32.whl
Size 466.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
b14dd73f595199f4275bed4fb509277470d9b9059310537e3b3daba12b30c157
BLAKE2b-256 checksum
How to use checksums
696e29b29aa6db66183eea3450a4c06b1854af08d04acb1776a5e4798f6dc158
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 677.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d3077a31633beef77d057c6523f5de7271ddef7bde5e019285b00c0cc9cac1e3
BLAKE2b-256 checksum
How to use checksums
5e976fc527b749f4af354042c43b7032d0734923be2dad6c8ffdd28b469b8e93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 682.5 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
128b1485753106c54af481789cdfea12b90a228afca0b11fb3828309a907e10e
BLAKE2b-256 checksum
How to use checksums
f1608ee2501067426f611279c8267359f16fc6f28b890eea48c7b3cb308c383f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 689.3 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a8f7f9feecae53fa18d6a3ea7c75f9e9a1d4d20e5c3f9ce3fba83f07bcc4eee2
BLAKE2b-256 checksum
How to use checksums
03d5a525dbb69daf78239c19ad5415a27f67994a2700aaf936201b88bdbbf704
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 676.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5717a308a703dda2886a5796a07489c698b442f5e409cf7dc2ac93de8d61d764
BLAKE2b-256 checksum
How to use checksums
289b998101ee984a63a5ba973eeecb5e9a013fd03c2f0c82220eba2754dd7426
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 665.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ebf02c32afa6b67e5861a27183dd98ed88419a94a2ab843cc145fb0bafcc5b28
BLAKE2b-256 checksum
How to use checksums
89a80d32e276c755c4de66c965b1b1db9cfea1bde5dfe70fca0204c284e2381f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux2014_x86_64.whl
Size 696.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b4ad70d7cac4ca0c7b31444a0148bd3af01a2662fa12b1ad6f57cd4a04e21766
BLAKE2b-256 checksum
How to use checksums
55355193729f4fbc4f31207f39994e86d448349f9c76f4888b396545285f7f1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux2014_s390x.whl
Size 700.7 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
256c503a75bd71cf7fb9ebf889e7e222d49c6036a48aad5a619f98a0adf0e0d7
BLAKE2b-256 checksum
How to use checksums
7f49a50718f3fa8ae8b55c29dc34470c001b50f81ded95209ff6649b880b3536
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux2014_ppc64le.whl
Size 709.0 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9b0f98481ad5dc4cb430a60bbb8869f05505283b9ae1c62bdb65eb5e020ee8e3
BLAKE2b-256 checksum
How to use checksums
6c741a93fd93ce20f3692925e3726331bb4407d27ad191989940d67b21bff661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux2014_i686.whl
Size 692.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a0be99b599da95b7a90a918dd927b20c434bea5e1c9b3efc6a3c6cd67c23f813
BLAKE2b-256 checksum
How to use checksums
0ba2fac08405fa1e1251876ba0930200136fa6ea64ad523ed06aaf6f3d53e8f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux2014_aarch64.whl
Size 695.2 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2972dd1f1285866aba027eff2f4a2bbf8aa98563c2ced14cb34ee5602b36afdf
BLAKE2b-256 checksum
How to use checksums
b9bce9f5851974753698fb9c157a5bf96ef1320463d42d005fcdae3c63e9bce3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-manylinux1_i686.whl
Size 692.4 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5e63146dbdb1eac207464f6e0cfcdb640c9c5ff0f57b754fa96fe252314a1dc6
BLAKE2b-256 checksum
How to use checksums
e9a4af20aabc70d0c290ce95fea0e27f1ce9046961b243ccbc1e45ddb1e131bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp310-cp310-macosx_10_9_universal2.whl
Size 534.5 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c011bd5ad03cc096f99ffcfdd18a1817354132c1331bed7a837a25226659845f
BLAKE2b-256 checksum
How to use checksums
9556a2099d9a0fe2bcbc678a435c924de2ccfc4169528893fccf782abe8fd341
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-win_amd64.whl
Size 472.7 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
107a234dc55affc5802acb3b6d83cbb8c87355b38a9457fcd8806bdeb8bce161
BLAKE2b-256 checksum
How to use checksums
601494e45dd53d5e23b5f06f960e8eb9d2821bd66d73aef032c40193a23f13c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-win32.whl
Size 466.9 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
a09bfb51953930e7e838972ddf646c5d5f984992a66d79da6ba7f6a8d8a890cd
BLAKE2b-256 checksum
How to use checksums
f03d2955238d8250779c4bf3621cbdcb82517fb23ec9a2baf24b9c810c487006
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 676.3 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ef67fedd863ffffd4adfd46d9d992b0f929c7f61a8307366d664d93517f2c78e
BLAKE2b-256 checksum
How to use checksums
decfe9ce043417f309cdb82d84dda363111aa252e32ec0e7c28f93ee532b0363
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 682.0 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
d16a534da0e39785687b7295e2fcf9a339f4a20689024983d11afaa4657f8507
BLAKE2b-256 checksum
How to use checksums
c52cc90b4b82bec2e871c2e887ab983df9c149a1e93e0e026c1d8ee45bef7b27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 688.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f28ae33dc5a0b9cee06e95fd420e42155d83271ab75964baf747ce959cac5f52
BLAKE2b-256 checksum
How to use checksums
7cadc71273f95550d8b59b1d6aa9c31a968bb9b128bb66e785f5e1ca1ee5007a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 675.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6bafea6061d63059d8bc2ffc545e2f049221c8a4457d236c5cd6a66678673eab
BLAKE2b-256 checksum
How to use checksums
b47b14e55c74694b0abb4fdc9f18104cc79512172292dc4e80bbb5ab0a84d668
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 684.8 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e5e193f89f4f8c1fe273f9a6e6df915092c9f2af6db2d1afb8bd53855025c11f
BLAKE2b-256 checksum
How to use checksums
4dd01e668020cb21f5c15ad3c6ae9755eb20ef7336e526f76a81a7a89c63fe0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 654.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1c63e3a2e8fb815c4b1f738c284a4579897e37c3cfd95fdb199229a1ccfb638a
BLAKE2b-256 checksum
How to use checksums
08df724a51039810e7e437f8ae9d3fb484977d8513483fbf2215b05ed47437b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 663.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
05c30fd35cc97f14f354916b45feea535d59060ef867446b5c3c7f9b609dd5dc
BLAKE2b-256 checksum
How to use checksums
e17da19ec2c7d1bb9090c1052062e7de90508031026123aa4275ae3fea0d8754
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux2014_x86_64.whl
Size 696.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2703a9f8f5767986b4f51c259ff452cc837c5a83c8ed5f5361f6e49933743b2f
BLAKE2b-256 checksum
How to use checksums
e3522e73dc8c26f89a9a24a51b7e700252f302a499aa4e83a00ecc8934e6e7e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux2014_s390x.whl
Size 699.8 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ad4f66fbb893b55f96f03020e67dcab49ffde0177c6565ccf9dec4fdf974eb61
BLAKE2b-256 checksum
How to use checksums
11e85bc11eb7c32328deb010ca3b5fa3cbdff44c9a220f92f8a8d0d900c02a87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux2014_ppc64le.whl
Size 708.1 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0634994b026336195778e5693583c060418d4ab453eff21530422690a97e1ee8
BLAKE2b-256 checksum
How to use checksums
06dd6127762f0e1a32f411daf7219352b0cc14968224c99f41d72b0228597f71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux2014_i686.whl
Size 690.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
21812453354b151200034750cd30b0140e82ec2a01fd4357390f67714a1bfbde
BLAKE2b-256 checksum
How to use checksums
d13b4513e077aea0114f2548942295655722ddc14fe5d743def62e7c2d6f6c82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux2014_aarch64.whl
Size 694.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cc94f9fea17a5af8cf1a343597711a26b0117c0b812550d99934acb89d526ed2
BLAKE2b-256 checksum
How to use checksums
47ebd9a32f59e26b4146e29c8134f305c7eae3c7b51f5c8525f427fddb97980c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux1_x86_64.whl
Size 684.4 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
325701ae7b56daa5b0692305b7cb505ca50f80a1288abb32ff420a8a209b01ca
BLAKE2b-256 checksum
How to use checksums
501099e99377b08273b6e26de3998312cca019ed9a2e9215c0d600796c060d81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-manylinux1_i686.whl
Size 690.7 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e16ade71c93f6814d095d25cd6d28a90d63511ea396bd96e9ffcb886b278baaa
BLAKE2b-256 checksum
How to use checksums
33ec1d9d930429f1515c4af041526384e5a7656d035f34a4bda1811bd4beebf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp39-cp39-macosx_10_9_universal2.whl
Size 534.5 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a8273e1abbcff1d7d29cbbb1ea7e57d38be72f1af3c597c854168508b91516c2
BLAKE2b-256 checksum
How to use checksums
b23c9877560f57a7d1839cd74a06f0ecb5ab2812283b8f88339bffc4e2b116a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-win_amd64.whl
Size 472.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
1394c4737b325166a65ae7c145af1ebdb9fb153ebedd37cf91d676313e4a67b8
BLAKE2b-256 checksum
How to use checksums
a6fdf7214e5d751ed1fffa668acb1d4b74139cc5c6d282e42b3f3ea8a5331754
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-win32.whl
Size 466.3 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
806e094e9e85d8badc978af8c95b69c556077f11844655cb8cd2d1758769e521
BLAKE2b-256 checksum
How to use checksums
5c81d812def5735185178ef675a9178830bee19eb215f427cacf810b3eeb1304
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 693.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e3db7d833a7c38c317dc95b54e27f1d27012e031b45a7c24e360b53197d5f6e7
BLAKE2b-256 checksum
How to use checksums
37d82a36ae6e5a2ca6ee0ab1c259860807c1b0046fb09f127c7f855eaa217623
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 699.8 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
eb438a8bf6b695bf50d57e6a059ff09652a07968b2041178b3744ea785fcef9b
BLAKE2b-256 checksum
How to use checksums
062446f1fe8a86ea57edc959fada9d451a622f0ea6f0c2028a0550993c1b3e21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 705.3 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b80a4ee19b3442c57c38afa978adca546521a8822d663310b63ae2a7d7b13f3a
BLAKE2b-256 checksum
How to use checksums
89ee4f091e6459dd1744cce7d31a787716dbc1f92adb09f69268a7658adb097d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 692.6 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
518c90bdd6e842c446d01a766b9136fec5ec6cc94f3b8c3f8b4a332786ee6b64
BLAKE2b-256 checksum
How to use checksums
9ca35332137c391e4c290a49d764a17af12e1b6dce1f050baa6e5b82a4624c61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 701.6 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7b0e6361754ac596cd16bfc6ed49f69ffcd9b60b7bc4bcd3ea65c6a83475e4ff
BLAKE2b-256 checksum
How to use checksums
5b65574534f1d89f9500cb30f338ad4f18f3fb6a9e488d910a308948887346f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 688.3 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
39a1cd5d383b37285641d5a7a86be85274466ae336a61b51117155936529f9b3
BLAKE2b-256 checksum
How to use checksums
0fcf47df0eef18ecb6e1ac426e6b7a273d77236f166afacc5d8c36b34705fb31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 678.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3729b8db02063da50eeb3db88a27670d85953afb9a7f14c213ac9e3dca93034b
BLAKE2b-256 checksum
How to use checksums
7c71aca165b8096ab26d0ed7be53d7c59b6e942c0a778949540216c5d5561542
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux2014_x86_64.whl
Size 716.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ddef295aaf80cefb0c1606f1995899efcb17edc6b327eb6589e234e614b87756
BLAKE2b-256 checksum
How to use checksums
f01f39e7616a07f682e39a144fa31e59dbe6291a88bbe4d2f6324af5a1ea515e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux2014_s390x.whl
Size 720.8 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a4dc1319d0c162919ee7f4ee6face076becae2abbd351cc14f1fe70af5fb20d9
BLAKE2b-256 checksum
How to use checksums
2cf7fadb03eb3e27346f88221374696339d07f899f44f44a855d23e0510e7cc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux2014_ppc64le.whl
Size 730.0 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
10a379fb60f1b2406ae57b8899bacfe20567918c8e9d2d545e1b93628fcf2050
BLAKE2b-256 checksum
How to use checksums
e3ad08558895e438483aa5e61ff534dc8a215ddfe2c2c8e43146fdc3d50f83f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux2014_i686.whl
Size 702.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
2ca0ba501898b2ec31e6c3acf90c31910944f01d454ad8e489213a156ccf1bda
BLAKE2b-256 checksum
How to use checksums
ff2620a80e477a8ecb8f8dea622c87a0b1c17b2bd9398bfb24250efd36128fab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux2014_aarch64.whl
Size 714.5 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fe03bf25fae4b95d8afe40004a321df644400fdcba4c8e5e1a19c1085b740888
BLAKE2b-256 checksum
How to use checksums
475ccf9d4bce29272bf6829be17972124a36eae3efe2a8bd82916167ba9b60e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux1_x86_64.whl
Size 701.1 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ccd785fafa1c931deff6a7116e9a0d402d59fabe51644b0d0c268295ff847b25
BLAKE2b-256 checksum
How to use checksums
b8e4cd6e15e1bb5b3044d77cfe4fe61f4f17d6b364fabbda5d0cbe9f618b66e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp38-cp38-manylinux1_i686.whl
Size 702.7 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5802acc012bbb4bce4dff92973dff76482f30ef35dd4cb8ab5b0e06aa8f08c80
BLAKE2b-256 checksum
How to use checksums
fbc834293fc9f36918e1e37cf74027ae4b3e3ed3d7685f9d9fe635c7d00921ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp38-cp38-macosx_11_0_universal2.whl

Download URL pymongo-4.6.0-cp38-cp38-macosx_11_0_universal2.whl
Size 535.4 kB
Tags CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2f8c04277d879146eacda920476e93d520eff8bec6c022ac108cfa6280d84348
BLAKE2b-256 checksum
How to use checksums
6d191de1148cafca6f224c82a8203eaacddef9688faef6253c92f2608727039d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-win_amd64.whl
Size 472.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
81dd1308bd5630d2bb5980f00aa163b986b133f1e9ed66c66ce2a5bc3572e891
BLAKE2b-256 checksum
How to use checksums
784eda01b5c5a50cb811118c369fa070e8fdd248281b336fe3e209c12741a0a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-win32.whl
Size 465.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
09c7de516b08c57647176b9fc21d929d628e35bcebc7422220c89ae40b62126a
BLAKE2b-256 checksum
How to use checksums
1ebbcd6dbac7ae8361b47660fd5509589f22d92fb2c5af65548f4a8211ad467e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 658.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4a0269811661ba93c472c8a60ea82640e838c2eb148d252720a09b5123f2c2fe
BLAKE2b-256 checksum
How to use checksums
1fb5bdef4f9b1918519112eed664e8a481ab144222dbba18bbbbf9c8eae44b58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 665.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
9bea9138b0fc6e2218147e9c6ce1ff76ff8e29dc00bb1b64842bd1ca107aee9f
BLAKE2b-256 checksum
How to use checksums
f9027d226bc35a465df902dfb1bf46784a02f630bcaeade981aae77e944e4d42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 670.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1e4ed21029d80c4f62605ab16398fe1ce093fff4b5f22d114055e7d9fbc4adb0
BLAKE2b-256 checksum
How to use checksums
a293ca259196c7fbb05f87dde3a68da99a874f590ebcb560c85ea6be5e08f133
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 658.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
db082f728160369d9a6ed2e722438291558fc15ce06d0a7d696a8dad735c236b
BLAKE2b-256 checksum
How to use checksums
75ab42ac7cb402fda2b10d1cacb36be26678aa6ea451c53e0ef81aecc400f160
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 671.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a49aca4d961823b2846b739380c847e8964ff7ae0f0a683992b9d926054f0d6d
BLAKE2b-256 checksum
How to use checksums
6d10a0b23244507d2f3569cf3ba31e3fa22a88fa0984c74a7409f77909183e34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 658.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7e3b0127b260d4abae7b62203c4c7ef0874c901b55155692353db19de4b18bc4
BLAKE2b-256 checksum
How to use checksums
f098c036233e9babc2bf87461ac7b2989d3557bb600996855c8d61e045a9875d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 647.0 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
6d6a1b1361f118e7fefa17ae3114e77f10ee1b228b20d50c47c9f351346180c8
BLAKE2b-256 checksum
How to use checksums
29bd659454b2a1a78ba94fc47b3e7d5e5ba74e1896a602d2d3b9ce1c38da3917
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux2014_x86_64.whl
Size 679.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3919708594b86d0f5cdc713eb6fccd3f9b9532af09ea7a5d843c933825ef56c4
BLAKE2b-256 checksum
How to use checksums
873cd97623ef457d56a06625dd625395321a741f78aecb7874d28f4f82d6a237
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux2014_s390x.whl
Size 682.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
680fa0fc719e1a3dcb81130858368f51d83667d431924d0bcf249644bce8f303
BLAKE2b-256 checksum
How to use checksums
a8d0a83a48fe8b4007361b4f01a031617c4d234c8f7ba2eff1d6c2c25fff5c60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux2014_ppc64le.whl
Size 689.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6b18276f14b4b6d92e707ab6db19b938e112bd2f1dc3f9f1a628df58e4fd3f0d
BLAKE2b-256 checksum
How to use checksums
24b8b896d967982da551a4d43847c2ad850c1b62bb83e7ee8e6c9e03e88a2f74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux2014_i686.whl
Size 669.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
82e620842e12e8cb4050d2643a81c8149361cd82c0a920fa5a15dc4ca8a4000f
BLAKE2b-256 checksum
How to use checksums
1ad21f81709e0694fce984312e9aff7d39f04433940ac1630c2d83666ce03863
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux2014_aarch64.whl
Size 678.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
055f5c266e2767a88bb585d01137d9c7f778b0195d3dbf4a487ef0638be9b651
BLAKE2b-256 checksum
How to use checksums
680914608ee0ddf47841127845b1ee20a0fbde2e743f42014be43c74c9a70325
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux1_x86_64.whl
Size 671.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
747c84f4e690fbe6999c90ac97246c95d31460d890510e4a3fa61b7d2b87aa34
BLAKE2b-256 checksum
How to use checksums
b0be97c0863129bb03d7af86075e9d8f3240c0a45a29b982f7e8c6262c2d6c2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

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

Download URL pymongo-4.6.0-cp37-cp37m-manylinux1_i686.whl
Size 669.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
288c21ab9531b037f7efa4e467b33176bc73a0c27223c141b822ab4a0e66ff2a
BLAKE2b-256 checksum
How to use checksums
f3d357a810740e6c7480ea29c7aa3989c2beda34aed399667290698a53cb0ae0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.3

Release files / pymongo-4.6.0-cp37-cp37m-macosx_10_9_x86_64.whl

File added late

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

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

We recommend inspecting the release file before installing.

Download URL pymongo-4.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Size 475.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e24025625bad66895b1bc3ae1647f48f0a92dd014108fb1be404c77f0b69ca67
BLAKE2b-256 checksum
How to use checksums
0fbe0ae20cf2bdd013d640b3945237981e618118ec9e4f50a33f9f8f7f70642d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.9

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

This release

4.6.0 This release

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

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