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

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

Source distribution (sdist)

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

Built distributions (wheels)

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

Total release size: 53.5 MB

Release files / pymongo-4.6.3.tar.gz

Download URL pymongo-4.6.3.tar.gz
Size 1.4 MB
Tags Source
SHA-256 checksum
How to use checksums
400074090b9a631f120b42c61b222fd743490c133a5d2f99c0208cefcccc964e
BLAKE2b-256 checksum
How to use checksums
6f5db05b09299f0b03219db9e31ea404e89c056f55a0aafbb403f6710391c44d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

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

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

Download URL pymongo-4.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 692.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
01277a7e183c59081368e4efbde2b8f577014431b257959ca98d3a4e8682dd51
BLAKE2b-256 checksum
How to use checksums
e2354b18e02232a86e7cb4ac478af78d33e3528182965e39c6d4dcac55284802
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

Download URL pymongo-4.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 704.6 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
391aea047bba928006114282f175bc8d09c53fe1b7d8920bf888325e229302fe
BLAKE2b-256 checksum
How to use checksums
e3331e9c21c045dd1a5e13ba3f7fbf2675c5c8d03abd97bac987dfa31798e897
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
994386a4d6ad39e18bcede6dc8d1d693ec3ed897b88f86b1841fbc37227406da
BLAKE2b-256 checksum
How to use checksums
e9e0282c46bb31f5a0b548153bd0f42a932765b217ac88e4b5e2f1fbad5eef07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 680.7 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d30d5d7963453b478016bf7b0d87d7089ca24d93dbdecfbc9aa32f1b4772160a
BLAKE2b-256 checksum
How to use checksums
863a39bdf2351fc3a0296157d7416b4c1f783f4b602066d54d66299862d106a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
722f2b709b63311c0efda4fa4c603661faa4bec6bad24a6cc41a3bc6d841bf09
BLAKE2b-256 checksum
How to use checksums
e32a2618a4b06f171898567afcbea35e38b3331888bdc75ed0326722974186b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp311-cp311-win_amd64.whl
Size 472.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1c2761302b6cbfd12e239ce1b8061d4cf424a361d199dcb32da534985cae9350
BLAKE2b-256 checksum
How to use checksums
6b3811db8be24e20b0885182aaa3839db2eb2be51f506a222538762e1b3723f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp311-cp311-win32.whl
Size 467.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
4670edbb5ddd71a4d555668ef99b032a5f81b59e4145d66123aa0d831eac7883
BLAKE2b-256 checksum
How to use checksums
6ffb5ff6853f16813077b4edd75b6f581e01e09f842cf92a1ce74dc662322e8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 680.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c2ad3e5bfcd345c0bfe9af69a82d720860b5b043c1657ffb513c18a0dee19c19
BLAKE2b-256 checksum
How to use checksums
00079b7612de2ac167d1dee7d18fa4e37fa830e7242c3f249f5d824931dcd26d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 686.9 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
872bad5c83f7eec9da11e1fef5f858c6a4c79fe4a83c7780e7b0fe95d560ae3f
BLAKE2b-256 checksum
How to use checksums
62ca26b035ee50570a792269653ae91514fd25a843f540cf2b1c2ed385bae8e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 692.8 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9b35f8bded43ff91475305445fedf0613f880ff7e25c75ae1028e1260a9b7a86
BLAKE2b-256 checksum
How to use checksums
e0e685a4776b85e58c6cb223bed574ff8c5f887feb31f98c1cf4aa91001d2c81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 679.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
60931b0e07448afe8866ffff764cd5bf4b1a855dc84c7dcb3974c6aa6a377a59
BLAKE2b-256 checksum
How to use checksums
a3181023fbf4882f04495faca58795d3d50bda565c1dc173b7201380af3c20e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 669.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0e208f2ab7b495eff8fd175022abfb0abce6307ac5aee3f4de51fc1a459b71c9
BLAKE2b-256 checksum
How to use checksums
3892adea29f9f09cce0ab733b01a936ba7dbe5a617f6cf07f9a92b95c5b5e92f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
138b9fa18d40401c217bc038a48bcde4160b02d36d8632015b1804971a2eaa2f
BLAKE2b-256 checksum
How to use checksums
2bf0bc30f0d9f7f1b3de1eb51ef8ed85378ff237f551c28bf4a23e71cf92aa20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-win_amd64.whl
Size 472.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6cec7279e5a1b74b257d0270a8c97943d745811066630a6bc6beb413c68c6a33
BLAKE2b-256 checksum
How to use checksums
097c6098d6f1a6a9dc32d6bfc27e1c831999f5951aa0a72cf5c458ce034d24ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-win32.whl
Size 467.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
cdbea2aac1a4caa66ee912af3601557d2bda2f9f69feec83601c78c7e53ece64
BLAKE2b-256 checksum
How to use checksums
ba4f30c2469a420673a30db91ab421e7269092f39490fe5dfbb5d52e28ec3540
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 676.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
664c64b6bdb31aceb80f0556951e5e2bf50d359270732268b4e7af00a1cf5d6c
BLAKE2b-256 checksum
How to use checksums
68b468558867e6108d90db35bbbd55610e4c8e6f0c9d1fec9a2b4e5246ec5c4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

Download URL pymongo-4.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 689.7 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8e97c138d811e9367723fcd07c4402a9211caae20479fdd6301d57762778a69f
BLAKE2b-256 checksum
How to use checksums
16646c1cfaa35fc0e3b1617f155b763d0ff3f46e8828e1c475cbe08da40bcdfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 676.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ccc15a7c7a99aed7d0831eaf78a607f1db0c7a255f96e3d18984231acd72f70c
BLAKE2b-256 checksum
How to use checksums
7c68bb521d2f027d528e38bf03365b610b6b28a13fa875b4f0e51a485f7a1e55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 665.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e4056bc421d4df2c61db4e584415f2b0f1eebb92cbf9222f7f38303467c37117
BLAKE2b-256 checksum
How to use checksums
5b0bee67d43eb5e5c6caef87fbd9bbb1201d655cb6f7eb8aa505e0b326fd37ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

Download URL pymongo-4.6.3-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
4955be64d943b30f2a7ff98d818ca530f7cb37450bc6b32c37e0e74821907ef8
BLAKE2b-256 checksum
How to use checksums
8d97545293b52ff506c10c172ea6615dcc8e3e3de46329ae247c0fadf396c29e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

Download URL pymongo-4.6.3-cp310-cp310-manylinux2014_i686.whl
Size 692.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
00e6cfce111883ca63a3c12878286e0b89871f4b840290e61fb6f88ee0e687be
BLAKE2b-256 checksum
How to use checksums
c8f8584232059efaaadeb9cb4a66a552653c64c650a8aac9f9c6871163e26f81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-manylinux2014_aarch64.whl
Size 695.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c4726e36a2f7e92f09f5b8e92ba4db7525daffe31a0dcbcf0533edc0ade8c7d8
BLAKE2b-256 checksum
How to use checksums
7a06b94ab5df85cce366f9535d0d36a716d44e1ec2647bd0774698285d426492
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-manylinux1_i686.whl
Size 692.1 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
731a92dfc4022db763bfa835c6bd160f2d2cba6ada75749c2ed500e13983414b
BLAKE2b-256 checksum
How to use checksums
6d0c6b71fc608ee1bd8191757efb61834053ccfcb260b65d5d66964ca5292cc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp310-cp310-macosx_10_9_universal2.whl
Size 534.7 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e344d0afdd7c06c1f1e66a4736593293f432defc2191e6b411fc9c82fa8c5adc
BLAKE2b-256 checksum
How to use checksums
700b94b7ac6ecab09ef1afe904292a4fda92341d5c6ab4bc74d349c5142f186a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-win_amd64.whl
Size 472.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
6d5b35da9e16cda630baed790ffc3d0d01029d269523a7cec34d2ec7e6823e75
BLAKE2b-256 checksum
How to use checksums
a21907a975963333abe9a1a8988c15636d6615411026e94b11adac16705763c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-win32.whl
Size 467.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
98877a9c4ad42df8253a12d8d17a3265781d1feb5c91c767bd153f88feb0b670
BLAKE2b-256 checksum
How to use checksums
f031a46446ddb446f3266a2e7769d38681c0e2a0b74436193701899d080768ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

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

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 689.1 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
705a9bfd619301ee7e985d6f91f68b15dfcb2f6f36b8cc225cc82d4260d2bce5
BLAKE2b-256 checksum
How to use checksums
92b646bc46551be42ce533ea2d051dc01a0397cf11b2c2df29c719f2f28c6074
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
e097f877de4d6af13a33ef938bf2a2350f424be5deabf8b857da95f5b080487a
BLAKE2b-256 checksum
How to use checksums
37be879d8bec367c2690d15b31a29461b54419481505c34f51bdfa6cae7c983a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 685.1 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
bec8e4e88984be157408f1923d25869e1b575c07711cdbdde596f66931800934
BLAKE2b-256 checksum
How to use checksums
070326b2fb17c77ce1d288fc3178f497e6fa00209fe34d5777b67dfd899ffcdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
9e51e30d67b468a2a634ade928b30cb3e420127f148a9aec60de33f39087bdc4
BLAKE2b-256 checksum
How to use checksums
87cb5f8ef497d5f87c9d2208319b137746cb0eb01c677650f7838ff96e78a2f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 663.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
17c1c143ba77d6e21fc8b48e93f0a5ed982a23447434e9ee4fbb6d633402506b
BLAKE2b-256 checksum
How to use checksums
9b8dd3da42d421463550a9e2927ed210c8d8795a2893839c3dd0deed3fdcbb0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux2014_x86_64.whl
Size 696.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ff7d1f449fcad23d9bc8e8dc2b9972be38bcd76d99ea5f7d29b2efa929c2a7ff
BLAKE2b-256 checksum
How to use checksums
343290e6c65123d5439719906c0976de1bf11098f9b69151a2f0baf54cd4e4c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux2014_s390x.whl
Size 699.9 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
becfa816545a48c8e740ac2fd624c1c121e1362072d68ffcf37a6b1be8ea187e
BLAKE2b-256 checksum
How to use checksums
8f72b57f4e117c625662b34ddb00a6c31b6d01f87afcba7c12760cdff88fd699
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux2014_ppc64le.whl
Size 708.5 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5c8a4982f5eb767c6fbfb8fb378683d09bcab7c3251ba64357eef600d43f6c23
BLAKE2b-256 checksum
How to use checksums
9c9455367f20394d32e8497458b71215c80cb0af92a50ffb71db34525b37cacd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux2014_i686.whl
Size 690.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8d0ea740a2faa56f930dc82c5976d96c017ece26b29a1cddafb58721c7aab960
BLAKE2b-256 checksum
How to use checksums
0334b5dd2079cc40840ba9730e5471d68a7a64db5c324c6a8b0344fc57a3d352
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux2014_aarch64.whl
Size 694.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0182899aafe830f25cf96c5976d724efeaaf7b6646c15424ad8dd25422b2efe1
BLAKE2b-256 checksum
How to use checksums
e1035efaff98699c33ced7924bfe62a75ab2570c2f27f295c67a29c1eadb69b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp39-cp39-manylinux1_x86_64.whl
Size 684.6 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6de33f1b2eed91b802ec7abeb92ffb981d052f3604b45588309aae9e0f6e3c02
BLAKE2b-256 checksum
How to use checksums
3afe3da29df3b50deaf3faa00591882d29dcdf2bd89c54a20072a2c6c715a638
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

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

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

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

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

Download URL pymongo-4.6.3-cp38-cp38-win32.whl
Size 466.6 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
90525454546536544307e6da9c81f331a71a1b144e2d038fec587cc9f9250285
BLAKE2b-256 checksum
How to use checksums
96ffd5ad3e79722219d422f14a106c22a2e744fdf6cf06af0dc2a7f554889b69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
aa310096450e9c461b7dfd66cbc1c41771fe36c06200440bb3e062b1d4a06b6e
BLAKE2b-256 checksum
How to use checksums
18a2029a3c80ff5d371d5d158af2066fd374fa74c7cfdfb1a86e491a4d6e0294
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 700.1 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4a0660ce32d8459b7f12dc3ca0141528fead62d3cce31b548f96f30902074cc0
BLAKE2b-256 checksum
How to use checksums
9a61f415d2a0f04bed261122f75309ed6384c241834335f7ea7c0e7d2309739c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 705.7 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
75107a386d4ccf5291e75cce8ca3898430e7907f4cc1208a17c9efad33a1ea84
BLAKE2b-256 checksum
How to use checksums
86e48ac4c48c80cc999c4e91f8452c4f79f92ecc6cc50f7097177f9d4df1f608
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
53451190b8628e1ce7d1fe105dc376c3f10705127bd3b51fe3e107b9ff1851e6
BLAKE2b-256 checksum
How to use checksums
dc9ecda4b45a2d3db76be61a63b0246fcb4202fba3be1ed4906c4c068acee739
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 701.7 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c701de8e483fb5e53874aab642235361aac6de698146b02c644389eaa8c137b6
BLAKE2b-256 checksum
How to use checksums
43b2cfae3b3a19af88b8141677dc95a6c2b3e4a7da729a6816580c93a81f0c03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
c67c19f653053ef2ebd7f1837c2978400058d6d7f66ec5760373a21eaf660158
BLAKE2b-256 checksum
How to use checksums
20cd915bb76485635e7e4892466c6518be08c90a4e45140ee29a0d8022ba104e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
5f465cca9b178e7bb782f952dd58e9e92f8ba056e585959465f2bb50feddef5f
BLAKE2b-256 checksum
How to use checksums
eb8fa86037dd355426c83435c950e41ad490298f439640c40e05c7e9a8d391e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
7df8b166d3db6cfead4cf55b481408d8f0935d8bd8d6dbf64507c49ef82c7200
BLAKE2b-256 checksum
How to use checksums
45bc376db78dfc82bb850c418a389f58a09e8f0a072549090bc76ff1735bff1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp38-cp38-manylinux2014_s390x.whl
Size 720.5 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
dde9fb6e105ce054339256a8b7a9775212ebb29596ef4e402d7bbc63b354d202
BLAKE2b-256 checksum
How to use checksums
9696b9295752c36a339c84069001c672182b9adf3721171aa71367e4dace55d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
9757602fb45c8ecc1883fe6db7c59c19d87eb3c645ec9342d28a6026837da931
BLAKE2b-256 checksum
How to use checksums
78b9952ebbf48bd37846ab5a256932bbd6509d86515e3f77975abc5439f40590
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp38-cp38-manylinux2014_i686.whl
Size 702.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6b5aec78aa4840e8d6c3881900259892ab5733a366696ca10d99d68c3d73eaaf
BLAKE2b-256 checksum
How to use checksums
b1a2b49ae5dd844cb73162f5febe8d07a1588aeac02298f3edcbaffeaae689a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
af5c5112db04cf62a5d9d224a24f289aaecb47d152c08a457cca81cee061d5bd
BLAKE2b-256 checksum
How to use checksums
d3c6aefd5e7249d3034c2e3ccf876343219f2aa47e3595ab6efef8e4a79204e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
7ee79e02a7c5ed34706ecb5dad19e6c7d267cf86d28c075ef3127c58f3081279
BLAKE2b-256 checksum
How to use checksums
5a092abfa1d865627e2b900623bb9b1f9a8c52a57dee692a50b927f3549dac47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp38-cp38-manylinux1_i686.whl
Size 702.9 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
eaf3d594ebfd5e1f3503d81e06a5d78e33cda27418b36c2491c3d4ad4fca5972
BLAKE2b-256 checksum
How to use checksums
c3b1331a922ed1b4c0b153fef943feb63f4a0568949be443682ba1ea9348f8a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
4d167d546352869125dc86f6fda6dffc627d8a9c8963eaee665825f2520d542b
BLAKE2b-256 checksum
How to use checksums
541afbd9feec63ccc6622e86926cfbb806743c850a9f303d6d0b85e01094ed38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp37-cp37m-win_amd64.whl
Size 472.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
151361c101600a85cb1c1e0db4e4b28318b521fcafa9b62d389f7342faaaee80
BLAKE2b-256 checksum
How to use checksums
523385b88e83507f4e6c646b2c17327e8f976c212cc0852f915c14b643cbc421
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp37-cp37m-win32.whl
Size 466.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
7330245253fbe2e09845069d2f4d35dd27f63e377034c94cb0ddac18bc8b0d82
BLAKE2b-256 checksum
How to use checksums
b756f449c26f92b3e5d79fd7e90f308e2d1f19b2aff55325cde0bf211ec3d141
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
8b3853fb66bf34ce1b6e573e1bbb3cb28763be9d1f57758535757faf1ab2f24a
BLAKE2b-256 checksum
How to use checksums
86301c82f3c0bc9835e513d721929860b0ea8e523d55d80c351540042c030880
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

Download URL pymongo-4.6.3-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
9066dff9dc0a182478ca5885d0b8a2b820b462e19459ada109df7a3ced31b272
BLAKE2b-256 checksum
How to use checksums
dff680932661b1fd00fc6b27ea255993638b8d99aba51dda0a90ad5b67682417
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

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

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

Download URL pymongo-4.6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 658.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0a4ea44e5a913bdb7c9abd34c69e9fcfac10dfaf49765463e0dc1ea922dd2a9d
BLAKE2b-256 checksum
How to use checksums
bce8ac4eefaaf6f02e84c1aeccf630e19487343419c1ef4d22125008ebb73906
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
462684a6f5ce6f2661c30eab4d1d459231e0eed280f338e716e31a24fc09ccb3
BLAKE2b-256 checksum
How to use checksums
b71667203bfd61a4732596b255d2682dc1db47101d824161585999f776f84ef2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl
Size 679.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
26d036e0f5de09d0b21d0fc30314fcf2ae6359e4d43ae109aa6cf27b4ce02d30
BLAKE2b-256 checksum
How to use checksums
0d28197f4d4a08656956c7a39043da0ebddfeee0f2fa1f2b66c7641ad8b87659
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

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

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

Download URL pymongo-4.6.3-cp37-cp37m-manylinux2014_ppc64le.whl
Size 689.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e420e74c6db4594a6d09f39b58c0772679006cb0b4fc40901ba608794d87dad2
BLAKE2b-256 checksum
How to use checksums
3980aef688e2c57e8b585321b69e41ccfb258106c95a3e47ead92ebaa716a4bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
e458e6fc2b7dd40d15cda04898bd2d8c9ff7ae086c516bc261628d54eb4e3158
BLAKE2b-256 checksum
How to use checksums
e504c7bfa2d32df4380f95326fdc3fa625e9217ec691d035be6c61311aab1df6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
18e5c161b18660f1c9d1f78236de45520a436be65e42b7bb51f25f74ad22bdde
BLAKE2b-256 checksum
How to use checksums
08dcb02480e2fd95589bb943723a8716c348b89415ca2542059a6c0bd16d7e1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
36d7049fc183fe4edda3eae7f66ea14c660921429e082fe90b4b7f4dc6664a70
BLAKE2b-256 checksum
How to use checksums
12243642a6f2217b89ad798d2e0643321e1fc04d26cd665b9ac8847960720d32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
48c60bd32ec141c0d45d8471179430003d9fb4490da181b8165fb1dce9cc255c
BLAKE2b-256 checksum
How to use checksums
52483a9101fac78d92c58f31e038b0b24aab0c6de24ab0d42a673fc1862a9c74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

Download URL pymongo-4.6.3-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
3b909e5b1864de01510079b39bbdc480720c37747be5552b354bc73f02c24a3c
BLAKE2b-256 checksum
How to use checksums
749727f96b28030426c72ad201e0837cfac722f29ff8f322192753f42b6a769a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.8

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

This release

4.6.3 This release

82 release files

4.6.2

82 release files

4.6.1

82 release files

4.5.0

82 release files

4.4.1

74 release files

4.4.0

74 release files

4.3.3

74 release files

4.3.2

74 release files

4.2.0

67 release files

4.1.1

83 release files

4.0

83 release files

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