Skip to main content
Info:

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

Documentation:

Available at pymongo.readthedocs.io

Author:

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.2

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.6.2
File Size Uploaded
pymongo-4.6.2.tar.gz 1.4 MB Details

Built distributions (wheels)

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

Release files / pymongo-4.6.2.tar.gz

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

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

Download URL pymongo-4.6.2-cp312-cp312-win_amd64.whl
Size 473.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f673b64a0884edcc56073bda0b363428dc1bf4eb1b5e7d0b689f7ec6173edad6
BLAKE2b-256 checksum
How to use checksums
fecca5a169f45c9a2f80b60b8f41365f06e15ed7c93778a17e69225ecb01b1eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp312-cp312-win32.whl
Size 467.7 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
311794ef3ccae374aaef95792c36b0e5c06e8d5cf04a1bdb1b2bf14619ac881f
BLAKE2b-256 checksum
How to use checksums
1bf5b669a7a27c5301da4e31112f90c39a0b0db99b709c72cb2dab50b6b19a13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 691.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1f251f287e6d42daa3654b686ce1fcb6d74bf13b3907c3ae25954978c70f2cd4
BLAKE2b-256 checksum
How to use checksums
43bf4beabf56f38c1c4ab958b5c25cc0b2657809335f645f873c3adc5d939e67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 701.1 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2160d9c8cd20ce1f76a893f0daf7c0d38af093f36f1b5c9f3dcf3e08f7142814
BLAKE2b-256 checksum
How to use checksums
2557c5eaa7dcc3d196cf9c8c4ccf7b20ca7e84639c20d36d07f21e0f3ce670a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 704.2 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2b65433c90e07dc252b4a55dfd885ca0df94b1cf77c5b8709953ec1983aadc03
BLAKE2b-256 checksum
How to use checksums
61dd6e959f35918943009549a8754bfadc95a94019cb95e0837234c834576df5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 694.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ba052446a14bd714ec83ca4e77d0d97904f33cd046d7bb60712a6be25eb31dbb
BLAKE2b-256 checksum
How to use checksums
d4dfa91f9f3f0162456bdf10c0b30dc582f2a1d26f447889eee688375483d17c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 681.4 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d7d227a60b00925dd3aeae4675575af89c661a8e89a1f7d1677e57eba4a3693c
BLAKE2b-256 checksum
How to use checksums
14a86ebf605cb5bb0809bc7280c46f9db9c0dfcf1cf9a9191d48e3afa65ad0da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

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

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

Download URL pymongo-4.6.2-cp311-cp311-win_amd64.whl
Size 472.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
e78af59fd0eb262c2a5f7c7d7e3b95e8596a75480d31087ca5f02f2d4c6acd19
BLAKE2b-256 checksum
How to use checksums
9d10f01efcd8f34cce0adb59c9feebdd092bd7305d35e77400e9999557112ade
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp311-cp311-win32.whl
Size 467.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
ac20dd0c7b42555837c86f5ea46505f35af20a08b9cf5770cd1834288d8bd1b4
BLAKE2b-256 checksum
How to use checksums
2aafe737cadca2eff6773c57d12befd9ef7e1c29d0c95157494b463ff61f4f76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 680.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0d002ae456a15b1d790a78bb84f87af21af1cb716a63efb2c446ab6bcbbc48ca
BLAKE2b-256 checksum
How to use checksums
7529b86329e8333ecc93e105e2ee89941ab8be002087a491ab5c26289925bc53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 686.6 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
18c422e6b08fa370ed9d8670c67e78d01f50d6517cec4522aa8627014dfa38b6
BLAKE2b-256 checksum
How to use checksums
27ca65a69f561582b3acacdcda58f95864aea294e9d2ed5a9bfde984a1b52284
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 692.5 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1f706c1a644ed33eaea91df0a8fb687ce572b53eeb4ff9b89270cb0247e5d0e1
BLAKE2b-256 checksum
How to use checksums
028544440a198745b7e290c846d434357b0f16c08cc7bc0a9506dd398f36c504
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 680.4 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9aebddb2ec2128d5fc2fe3aee6319afef8697e0374f8a1fcca3449d6f625e7b4
BLAKE2b-256 checksum
How to use checksums
f98d23c4c6efecbfdeab8bad4e822a7bfc882400b45e6ace8d5f50a45f41ef37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 669.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9f86ba0c781b497a3c9c886765d7b6402a0e3ae079dd517365044c89cd7abb06
BLAKE2b-256 checksum
How to use checksums
c7d9c67ffaf62986a1dde877c41a6026027d991a375c93da8f5a606ca5f9035c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp311-cp311-macosx_10_9_universal2.whl
Size 534.5 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
84593447a5c5fe7a59ba86b72c2c89d813fbac71c07757acdf162fbfd5d005b9
BLAKE2b-256 checksum
How to use checksums
20c9b3a660db648788e7741a5f42eb97fa6854854ba5857d619adf5b489371a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-win_amd64.whl
Size 472.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
94637941fe343000f728e28d3fe04f1f52aec6376b67b85583026ff8dab2a0e0
BLAKE2b-256 checksum
How to use checksums
0076f130e155c4f5e6e9b51c9f3258053cf61860e77b0adb68f6ab36f7227d22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-win32.whl
Size 467.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
991e406db5da4d89fb220a94d8caaf974ffe14ce6b095957bae9273c609784a0
BLAKE2b-256 checksum
How to use checksums
0255a3dc286cbc0246825ed3055906e8ea447d9ba66c4d54c9d02d5e130f028a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 677.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
397949a9cc85e4a1452f80b7f7f2175d557237177120954eff00bf79553e89d3
BLAKE2b-256 checksum
How to use checksums
849aa12ee3bb39aec5e59942dc86bc593bb1f6f3519dc9433704c5d31be9adf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 682.7 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4522ad69a4ab0e1b46a8367d62ad3865b8cd54cf77518c157631dac1fdc97584
BLAKE2b-256 checksum
How to use checksums
6ff46cd31a16eb0e0bba06d94624c6b5b2e07ecf1435297680afc4b9b73a86dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 689.5 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fa0bbbfbd1f8ebbd5facaa10f9f333b20027b240af012748555148943616fdf3
BLAKE2b-256 checksum
How to use checksums
75b1538a98161e4f60292c25c472d14718cd5e370294e9847338e74da067f97d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 676.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1849fd6f1917b4dc5dbf744b2f18e41e0538d08dd8e9ba9efa811c5149d665a3
BLAKE2b-256 checksum
How to use checksums
1d4a0a41291a6db5b26379d3c2c5e391108a284548e51c2ae7740de287a5f6f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 665.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9d511db310f43222bc58d811037b176b4b88dc2b4617478c5ef01fea404f8601
BLAKE2b-256 checksum
How to use checksums
dd83be399e6f0f4cd1ef5f1f8dd590e400ea04c0cc35e1b6eb6dacc527a1cb56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux2014_x86_64.whl
Size 696.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e0b208ebec3b47ee78a5c836e2e885e8c1e10f8ffd101aaec3d63997a4bdcd04
BLAKE2b-256 checksum
How to use checksums
dfbc2162f7b5e9fee09558949b00c37f0e48b4869290e934951dffd7606c987a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux2014_s390x.whl
Size 700.9 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
097791d5a8d44e2444e0c8c4d6e14570ac11e22bcb833808885a5db081c3dc2a
BLAKE2b-256 checksum
How to use checksums
cc472469d7901d6ae64ca145cc36000ba37f4f38314e21bc13666f68b53cb7f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux2014_ppc64le.whl
Size 709.1 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0fbdbf2fba1b4f5f1522e9f11e21c306e095b59a83340a69e908f8ed9b450070
BLAKE2b-256 checksum
How to use checksums
0d5cb075cd253a8bddbd813d4e11d6c06fc3b15742f243aa21e1f14b50e89dc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux2014_i686.whl
Size 692.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
91ddf95cedca12f115fbc5f442b841e81197d85aa3cc30b82aee3635a5208af2
BLAKE2b-256 checksum
How to use checksums
b23a99163b8ee0c840f46cee7609c209e9fd3fc6a96ae211bb644e1621fcc61f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux2014_aarch64.whl
Size 695.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c43205e85cbcbdf03cff62ad8f50426dd9d20134a915cfb626d805bab89a1844
BLAKE2b-256 checksum
How to use checksums
13e62c0e33e6ba469b3c14036666bdb3d94757b211f7c7b177a5e8d8e003ad0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-manylinux1_i686.whl
Size 692.5 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4e2129ec8f72806751b621470ac5d26aaa18fae4194796621508fa0e6068278a
BLAKE2b-256 checksum
How to use checksums
8a1a3512d8c73dad9cb31cc6359a7aac32e7675d77243601564343e5e8c17657
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp310-cp310-macosx_10_9_universal2.whl
Size 534.6 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
7640d176ee5b0afec76a1bda3684995cb731b2af7fcfd7c7ef8dc271c5d689af
BLAKE2b-256 checksum
How to use checksums
354151eab604bec03a9625a3d6ee34c0973efa7aaae4445a018d1ff61ef4f125
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-win_amd64.whl
Size 472.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
3e03c732cb64b96849310e1d8688fb70d75e2571385485bf2f1e7ad1d309fa53
BLAKE2b-256 checksum
How to use checksums
b8a246046af525aeeb3bdeb92e82715bf6db9b83696766de9c3495a7cd3f0116
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-win32.whl
Size 467.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
8caa73fb19070008e851a589b744aaa38edd1366e2487284c61158c77fdf72af
BLAKE2b-256 checksum
How to use checksums
6d6b555f9c6a1d13094df1488f0060822c353e1bb93c0dfb33dff4d8e5a54cc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

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

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 682.2 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
707d28a822b918acf941cff590affaddb42a5d640614d71367c8956623a80cbc
BLAKE2b-256 checksum
How to use checksums
7c1132016c68eb887396f70bbcefd0d4abf31332f4e5cbf3c973dda540cf416f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 688.9 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
68109c13176749fbbbbbdb94dd4a58dcc604db6ea43ee300b2602154aebdd55f
BLAKE2b-256 checksum
How to use checksums
2f924db048624812755fa294cad64de1cf9db5dcf0be7656f0e6e503dbde612f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 675.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
658f6c028edaeb02761ebcaca8d44d519c22594b2a51dcbc9bd2432aa93319e3
BLAKE2b-256 checksum
How to use checksums
05a3b9e45ee76402f18e694fc759ddc896b633cc6e03205a92aaebfb17541948
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 685.0 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ca5877754f3fa6e4fe5aacf5c404575f04c2d9efc8d22ed39576ed9098d555c8
BLAKE2b-256 checksum
How to use checksums
136a35f0bc2d0312a13a51e025955650caa3f25147e29b33e64dc47bdb4fefaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 654.6 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2b575fbe6396bbf21e4d0e5fd2e3cdb656dc90c930b6c5532192e9a89814f72d
BLAKE2b-256 checksum
How to use checksums
536d21323018712cc644c4e2b2905ea1e5a0431fa3c102ea0745209dd09fd9f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 663.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
57c05f2e310701fc17ae358caafd99b1830014e316f0242d13ab6c01db0ab1c2
BLAKE2b-256 checksum
How to use checksums
c699410d2020f59fa4d983f6d3a46c7710d85985f3b6b6651d4993f0c295ff58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux2014_x86_64.whl
Size 696.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4993593de44c741d1e9f230f221fe623179f500765f9855936e4ff6f33571bad
BLAKE2b-256 checksum
How to use checksums
88154be3ad9ab64846b06e95a45dea9cf0309f56929f02eefbf8ecac1a6f3efa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux2014_s390x.whl
Size 700.0 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
b2dd8c874927a27995f64a3b44c890e8a944c98dec1ba79eab50e07f1e3f801b
BLAKE2b-256 checksum
How to use checksums
80444915d0b781b38b73b3a054aacffb7b48c6c7f2d224dcdb8ec88d252965c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux2014_ppc64le.whl
Size 708.2 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4d982c6db1da7cf3018183891883660ad085de97f21490d314385373f775915b
BLAKE2b-256 checksum
How to use checksums
1faf6415d5164020913283c57a4c248b51b7eb4a8f2bcbdd40fcab5b3b165ea1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux2014_i686.whl
Size 690.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
fb24abcd50501b25d33a074c1790a1389b6460d2509e4b240d03fd2e5c79f463
BLAKE2b-256 checksum
How to use checksums
f21c619904c162529e870d1d6e134ada477cafc76732b44df01eb284bcf61dce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux2014_aarch64.whl
Size 694.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5c2f258489de12a65b81e1b803a531ee8cf633fa416ae84de65cd5f82d2ceb37
BLAKE2b-256 checksum
How to use checksums
cb44bfb147eac1eec9d28aad7b26dbab833822630a4efce66f24fde5d773c1c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux1_x86_64.whl
Size 684.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d788cb5cc947d78934be26eef1623c78cec3729dc93a30c23f049b361aa6d835
BLAKE2b-256 checksum
How to use checksums
fe324029c96ff01cbdfbe0d0c121cfea17b080be03576662678bb1c4906ba502
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp39-cp39-manylinux1_i686.whl
Size 690.9 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f1febca6f79e91feafc572906871805bd9c271b6a2d98a8bb5499b6ace0befed
BLAKE2b-256 checksum
How to use checksums
89a47bf99fd82cfa82a1dc62bb108c2f24d2a87c72046a4476b44e87fcbbde91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

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

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

Download URL pymongo-4.6.2-cp38-cp38-win_amd64.whl
Size 472.7 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
64ec3e2dcab9af61bdbfcb1dd863c70d1b0c220b8e8ac11df8b57f80ee0402b3
BLAKE2b-256 checksum
How to use checksums
0fa6e21ae3f4131208afdecd553ee90c1a7bd5f43e672560e4c10ed28f8fe67b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-win32.whl
Size 466.5 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
df813f0c2c02281720ccce225edf39dc37855bf72cdfde6f789a1d1cf32ffb4b
BLAKE2b-256 checksum
How to use checksums
1e2c023697bcabda96ca1a25f6ff8c66992a9888b31d3e9572e438108c9d6456
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

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

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 700.0 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
fbafe3a1df21eeadb003c38fc02c1abf567648b6477ec50c4a3c042dca205371
BLAKE2b-256 checksum
How to use checksums
716fda4dda3de389f729f224dc9d29fad1f14a74a87ea6a16a5ccdd114e68e72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 705.5 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d0257e0eebb50f242ca28a92ef195889a6ad03dcdde5bf1c7ab9f38b7e810801
BLAKE2b-256 checksum
How to use checksums
9abd6816b6792a282389ee28f23e6130521050429f499b7d43005bc54df12696
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 692.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f3bae553ca39ed52db099d76acd5e8566096064dc7614c34c9359bb239ec4081
BLAKE2b-256 checksum
How to use checksums
a54e54a53bd2203d1fab9d70741d83ff406ec61f923bbafafcea511dbb33031b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 701.8 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8110b78fc4b37dced85081d56795ecbee6a7937966e918e05e33a3900e8ea07d
BLAKE2b-256 checksum
How to use checksums
7d1071886fc1d77a702873535a275962df06e199c55df774b206cc9bcc817520
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 688.5 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2f7b98f8d2cf3eeebde738d080ae9b4276d7250912d9751046a9ac1efc9b1ce2
BLAKE2b-256 checksum
How to use checksums
dad245186db56b2f27d62f26d6250941db08b974c0d5f88dd2fa35b9cd200be1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 678.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e942945e9112075a84d2e2d6e0d0c98833cdcdfe48eb8952b917f996025c7ffa
BLAKE2b-256 checksum
How to use checksums
0af4f1d02b484570ead6a45f1a6b17817b4492fd4935a80a8502f8344afb2c02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux2014_x86_64.whl
Size 716.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
579508536113dbd4c56e4738955a18847e8a6c41bf3c0b4ab18b51d81a6b7be8
BLAKE2b-256 checksum
How to use checksums
0362898295d1b3ac95582a6aa250d6801b2f13fbcdede1437db02fe20711dff2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux2014_s390x.whl
Size 720.9 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5379ca6fd325387a34cda440aec2bd031b5ef0b0aa2e23b4981945cff1dab84c
BLAKE2b-256 checksum
How to use checksums
0fa7ef8ad21d0be4e48de8c01a3347d8382d81f1655c69227ed21d8783708f8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux2014_ppc64le.whl
Size 730.1 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9eec7140cf7513aa770ea51505d312000c7416626a828de24318fdcc9ac3214c
BLAKE2b-256 checksum
How to use checksums
b654c11df33c46d4dd1a37bc0f583f4213971c10edf5583d94f8f6e470289e97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux2014_i686.whl
Size 702.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
5db133d6ec7a4f7fc7e2bd098e4df23d7ad949f7be47b27b515c9fb9301c61e4
BLAKE2b-256 checksum
How to use checksums
5671c22e8c299f45efe391efff714429a4e4ee875200ff94bdc834bc093110d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux2014_aarch64.whl
Size 714.6 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b2d445f1cf147331947cc35ec10342f898329f29dd1947a3f8aeaf7e0e6878d1
BLAKE2b-256 checksum
How to use checksums
9a518deb35053611c0b941b4a3397d3c3e931cf48a5677222644a3cd07a0485f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux1_x86_64.whl
Size 701.2 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
bea62f03a50f363265a7a651b4e2a4429b4f138c1864b2d83d4bf6f9851994be
BLAKE2b-256 checksum
How to use checksums
42ba9ef9ed45e2f65c4a992025ed044aa6026f60d2af9755d658ce1c63efea1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-manylinux1_i686.whl
Size 702.8 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4fa30494601a6271a8b416554bd7cde7b2a848230f0ec03e3f08d84565b4bf8c
BLAKE2b-256 checksum
How to use checksums
12f87bbeabff8c3bea0e7ef7703e44490d29e3c1e2de48cc8c7f07f1b3ecd135
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp38-cp38-macosx_11_0_universal2.whl
Size 535.6 kB
Tags CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
5f6bcd2d012d82d25191a911a239fd05a8a72e8c5a7d81d056c0f3520cad14d1
BLAKE2b-256 checksum
How to use checksums
58c26ccafb015eca5de2e7fe02fd2596d238037e664d7a80fc4f7859ad9d5cb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-win_amd64.whl
Size 472.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
3a5280f496297537301e78bde250c96fadf4945e7b2c397d8bb8921861dd236d
BLAKE2b-256 checksum
How to use checksums
2ecd6191c0fbf16a76bd6dc17d316846a8d507f6e729c14261c0d810351407ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-win32.whl
Size 465.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
3e9f6e2f3da0a6af854a3e959a6962b5f8b43bbb8113cd0bff0421c5059b3106
BLAKE2b-256 checksum
How to use checksums
2ecb884f6af1114400a84f04502cc94e90adbde8eec650963039e521c5887f16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 659.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ed694c0d1977cb54281cb808bc2b247c17fb64b678a6352d3b77eb678ebe1bd9
BLAKE2b-256 checksum
How to use checksums
8320452aeec372bb6ec41569e2718fd7606c484a2af38b6e011fb8bef28e9df0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 665.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
97d81d357e1a2a248b3494d52ebc8bf15d223ee89d59ee63becc434e07438a24
BLAKE2b-256 checksum
How to use checksums
0d77f0f60acbd424a3e93fb586613f3b659deb38185eed33412cdf29a7e235b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 670.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c3797e0a628534e07a36544d2bfa69e251a578c6d013e975e9e3ed2ac41f2d95
BLAKE2b-256 checksum
How to use checksums
1440c2523bdfbc47eb47fab3b230bcbbf655e62a29ee5146bdcd8e0ea67c46c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

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

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

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

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

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

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

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

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux2014_x86_64.whl
Size 679.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
477914e13501bb1d4608339ee5bb618be056d2d0e7267727623516cfa902e652
BLAKE2b-256 checksum
How to use checksums
10fc4f7d4024fba4ac5472cddc1217ebc4a58c7d3a1ea9e5b181e7ce3e83f6f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux2014_s390x.whl
Size 682.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ee30a9d4c27a88042d0636aca0275788af09cc237ae365cd6ebb34524bddb9cc
BLAKE2b-256 checksum
How to use checksums
364d50e98e9ec058eeb08ebc8d83bfad25aac52c86beca6e08692f3dab0baff6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux2014_ppc64le.whl
Size 689.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
362a5adf6f3f938a8ff220a4c4aaa93e84ef932a409abecd837c617d17a5990f
BLAKE2b-256 checksum
How to use checksums
e34a12b7e286becb1d199761af1a49bf3b3c9873ec6edaaf5414ae0a581959dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux2014_i686.whl
Size 669.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a509db602462eb736666989739215b4b7d8f4bb8ac31d0bffd4be9eae96c63ef
BLAKE2b-256 checksum
How to use checksums
da80b81896076de9ddc3da8b1ee4a35b14c97bdcd49694183dce2a829bf3c1d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux2014_aarch64.whl
Size 678.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c68bf4a399e37798f1b5aa4f6c02886188ef465f4ac0b305a607b7579413e366
BLAKE2b-256 checksum
How to use checksums
168daf86296b9ed6bf1d5cec2456d678c979f691482b89860d12d0c133d87a36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux1_x86_64.whl
Size 671.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c9519c9d341983f3a1bd19628fecb1d72a48d8666cf344549879f2e63f54463b
BLAKE2b-256 checksum
How to use checksums
26d7e28e9c38c3d7b4521a07894de1205ecb7583421a36c027a7409b6339caff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-manylinux1_i686.whl
Size 669.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1f5f4cd2969197e25b67e24d5b8aa2452d381861d2791d06c493eaa0b9c9fcfe
BLAKE2b-256 checksum
How to use checksums
1cb01a70f32958070ded5550d0c7ab62c3e0c3ff794dc4234eae4a8b5767f3f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

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

Download URL pymongo-4.6.2-cp37-cp37m-macosx_10_6_intel.whl
Size 534.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
fe010154dfa9e428bd2fb3e9325eff2216ab20a69ccbd6b5cac6785ca2989161
BLAKE2b-256 checksum
How to use checksums
62e22807ab144fa566f26d6e5bf720f90a28fcc9df23d29342d8d5ee609e2426
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release history Release notifications | RSS feed

4.11

45 release files

4.9.1

59 release files

4.9

59 release files

4.8.0

50 release files

4.7.1

60 release files

4.7.0

60 release files

4.6.3

82 release files

This release

4.6.2 This release

82 release files

4.6.1

82 release files

4.5.0

82 release files

4.4.1

74 release files

4.4.0

74 release files

4.3.3

74 release files

4.3.2

74 release files

4.2.0

67 release files

4.1.1

83 release files

4.0

83 release files

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