Skip to main content

Python driver for MongoDB <http://www.mongodb.org>

Project description

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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongo-4.6.2.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

pymongo-4.6.2-cp312-cp312-win_amd64.whl (473.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.6.2-cp312-cp312-win32.whl (467.7 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (691.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (694.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (681.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp312-cp312-macosx_10_9_universal2.whl (533.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

pymongo-4.6.2-cp311-cp311-win_amd64.whl (472.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.6.2-cp311-cp311-win32.whl (467.0 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (680.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (686.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (680.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (669.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp311-cp311-macosx_10_9_universal2.whl (534.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

pymongo-4.6.2-cp310-cp310-win_amd64.whl (472.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.6.2-cp310-cp310-win32.whl (467.0 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (677.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (689.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (665.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp310-cp310-manylinux2014_x86_64.whl (696.9 kB view details)

Uploaded CPython 3.10

pymongo-4.6.2-cp310-cp310-manylinux2014_s390x.whl (700.9 kB view details)

Uploaded CPython 3.10

pymongo-4.6.2-cp310-cp310-manylinux2014_ppc64le.whl (709.1 kB view details)

Uploaded CPython 3.10

pymongo-4.6.2-cp310-cp310-manylinux2014_i686.whl (692.5 kB view details)

Uploaded CPython 3.10

pymongo-4.6.2-cp310-cp310-manylinux2014_aarch64.whl (695.4 kB view details)

Uploaded CPython 3.10

pymongo-4.6.2-cp310-cp310-manylinux1_i686.whl (692.5 kB view details)

Uploaded CPython 3.10

pymongo-4.6.2-cp310-cp310-macosx_10_9_universal2.whl (534.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

pymongo-4.6.2-cp39-cp39-win_amd64.whl (472.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.6.2-cp39-cp39-win32.whl (467.0 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (688.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (675.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.6.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (685.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (654.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (663.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp39-cp39-manylinux2014_x86_64.whl (696.2 kB view details)

Uploaded CPython 3.9

pymongo-4.6.2-cp39-cp39-manylinux2014_s390x.whl (700.0 kB view details)

Uploaded CPython 3.9

pymongo-4.6.2-cp39-cp39-manylinux2014_ppc64le.whl (708.2 kB view details)

Uploaded CPython 3.9

pymongo-4.6.2-cp39-cp39-manylinux2014_i686.whl (690.9 kB view details)

Uploaded CPython 3.9

pymongo-4.6.2-cp39-cp39-manylinux2014_aarch64.whl (694.5 kB view details)

Uploaded CPython 3.9

pymongo-4.6.2-cp39-cp39-manylinux1_x86_64.whl (684.5 kB view details)

Uploaded CPython 3.9

pymongo-4.6.2-cp39-cp39-manylinux1_i686.whl (690.9 kB view details)

Uploaded CPython 3.9

pymongo-4.6.2-cp39-cp39-macosx_10_9_universal2.whl (534.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

pymongo-4.6.2-cp38-cp38-win_amd64.whl (472.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.6.2-cp38-cp38-win32.whl (466.5 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (693.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (700.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (705.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (692.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.6.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (701.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (688.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (678.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp38-cp38-manylinux2014_x86_64.whl (716.7 kB view details)

Uploaded CPython 3.8

pymongo-4.6.2-cp38-cp38-manylinux2014_s390x.whl (720.9 kB view details)

Uploaded CPython 3.8

pymongo-4.6.2-cp38-cp38-manylinux2014_ppc64le.whl (730.1 kB view details)

Uploaded CPython 3.8

pymongo-4.6.2-cp38-cp38-manylinux2014_i686.whl (702.8 kB view details)

Uploaded CPython 3.8

pymongo-4.6.2-cp38-cp38-manylinux2014_aarch64.whl (714.6 kB view details)

Uploaded CPython 3.8

pymongo-4.6.2-cp38-cp38-manylinux1_x86_64.whl (701.2 kB view details)

Uploaded CPython 3.8

pymongo-4.6.2-cp38-cp38-manylinux1_i686.whl (702.8 kB view details)

Uploaded CPython 3.8

pymongo-4.6.2-cp38-cp38-macosx_11_0_universal2.whl (535.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)

pymongo-4.6.2-cp37-cp37m-win_amd64.whl (472.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.6.2-cp37-cp37m-win32.whl (465.9 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (659.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pymongo-4.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (665.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.6.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (672.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

pymongo-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (658.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (647.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.6.2-cp37-cp37m-manylinux2014_x86_64.whl (679.8 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.2-cp37-cp37m-manylinux2014_s390x.whl (682.2 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.2-cp37-cp37m-manylinux2014_ppc64le.whl (689.6 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.2-cp37-cp37m-manylinux2014_i686.whl (669.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.2-cp37-cp37m-manylinux2014_aarch64.whl (678.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.2-cp37-cp37m-manylinux1_x86_64.whl (671.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.2-cp37-cp37m-manylinux1_i686.whl (669.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.2-cp37-cp37m-macosx_10_6_intel.whl (534.4 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

File details

Details for the file pymongo-4.6.2.tar.gz.

File metadata

  • Download URL: pymongo-4.6.2.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2.tar.gz
Algorithm Hash digest
SHA256 ab7d01ac832a1663dad592ccbd92bb0f0775bc8f98a1923c5e1a7d7fead495af
MD5 3f0e3741a0699c721e280f4a83695bc8
BLAKE2b-256 e6bb696f6db3a1e8b696f9a1a4859352a065534a6c70d8070c73a9d7ce134485

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 473.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f673b64a0884edcc56073bda0b363428dc1bf4eb1b5e7d0b689f7ec6173edad6
MD5 e87c2bd3d43c080f46069a2c49b338d3
BLAKE2b-256 fecca5a169f45c9a2f80b60b8f41365f06e15ed7c93778a17e69225ecb01b1eb

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 467.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 311794ef3ccae374aaef95792c36b0e5c06e8d5cf04a1bdb1b2bf14619ac881f
MD5 41522b7eb9a30cecc3f127f53685e368
BLAKE2b-256 1bf5b669a7a27c5301da4e31112f90c39a0b0db99b709c72cb2dab50b6b19a13

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f251f287e6d42daa3654b686ce1fcb6d74bf13b3907c3ae25954978c70f2cd4
MD5 4cd8a6fc4e41baf7791825aaaf7424ca
BLAKE2b-256 43bf4beabf56f38c1c4ab958b5c25cc0b2657809335f645f873c3adc5d939e67

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2160d9c8cd20ce1f76a893f0daf7c0d38af093f36f1b5c9f3dcf3e08f7142814
MD5 d18b6e9cb729a43b9027cf558d959306
BLAKE2b-256 2557c5eaa7dcc3d196cf9c8c4ccf7b20ca7e84639c20d36d07f21e0f3ce670a6

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b65433c90e07dc252b4a55dfd885ca0df94b1cf77c5b8709953ec1983aadc03
MD5 71c57952c9d0eb5d2537e27ebf70e34d
BLAKE2b-256 61dd6e959f35918943009549a8754bfadc95a94019cb95e0837234c834576df5

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba052446a14bd714ec83ca4e77d0d97904f33cd046d7bb60712a6be25eb31dbb
MD5 c9e28d0e9d0c3522761e717ea72ea347
BLAKE2b-256 d4dfa91f9f3f0162456bdf10c0b30dc582f2a1d26f447889eee688375483d17c

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7d227a60b00925dd3aeae4675575af89c661a8e89a1f7d1677e57eba4a3693c
MD5 9c44f22999594880e5c063012b005c56
BLAKE2b-256 14a86ebf605cb5bb0809bc7280c46f9db9c0dfcf1cf9a9191d48e3afa65ad0da

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6125f73503407792c8b3f80165f8ab88a4e448d7d9234c762681a4d0b446fcb4
MD5 6b556b74dd930ba0e5249db60e3eb3ba
BLAKE2b-256 d73251ba46ca6620b75e619d4d6ea92bfec6bd264f9ee869e749b0b6a1d5d24d

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 472.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e78af59fd0eb262c2a5f7c7d7e3b95e8596a75480d31087ca5f02f2d4c6acd19
MD5 bcd982ca961c6597ed1b524bd425fdfb
BLAKE2b-256 9d10f01efcd8f34cce0adb59c9feebdd092bd7305d35e77400e9999557112ade

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 467.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ac20dd0c7b42555837c86f5ea46505f35af20a08b9cf5770cd1834288d8bd1b4
MD5 e8e799790ac6aebf7a30e74baff2a8ec
BLAKE2b-256 2aafe737cadca2eff6773c57d12befd9ef7e1c29d0c95157494b463ff61f4f76

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d002ae456a15b1d790a78bb84f87af21af1cb716a63efb2c446ab6bcbbc48ca
MD5 453f17f7efce2ea9d69ea2b03dee9db6
BLAKE2b-256 7529b86329e8333ecc93e105e2ee89941ab8be002087a491ab5c26289925bc53

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18c422e6b08fa370ed9d8670c67e78d01f50d6517cec4522aa8627014dfa38b6
MD5 617f0f80ccac9f130d8d7f5be0ed570a
BLAKE2b-256 27ca65a69f561582b3acacdcda58f95864aea294e9d2ed5a9bfde984a1b52284

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f706c1a644ed33eaea91df0a8fb687ce572b53eeb4ff9b89270cb0247e5d0e1
MD5 3850b12dc69a7d072d0502b313e42cca
BLAKE2b-256 028544440a198745b7e290c846d434357b0f16c08cc7bc0a9506dd398f36c504

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9aebddb2ec2128d5fc2fe3aee6319afef8697e0374f8a1fcca3449d6f625e7b4
MD5 9b9a6892fffe2f824154cc2bb6f03df1
BLAKE2b-256 f98d23c4c6efecbfdeab8bad4e822a7bfc882400b45e6ace8d5f50a45f41ef37

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f86ba0c781b497a3c9c886765d7b6402a0e3ae079dd517365044c89cd7abb06
MD5 752c08e2ddcd72cbc68f4247aa206fa6
BLAKE2b-256 c7d9c67ffaf62986a1dde877c41a6026027d991a375c93da8f5a606ca5f9035c

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 84593447a5c5fe7a59ba86b72c2c89d813fbac71c07757acdf162fbfd5d005b9
MD5 b987d8bdfb880eaf28ffdf6b7ea6d6c5
BLAKE2b-256 20c9b3a660db648788e7741a5f42eb97fa6854854ba5857d619adf5b489371a9

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 472.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 94637941fe343000f728e28d3fe04f1f52aec6376b67b85583026ff8dab2a0e0
MD5 0a55d77317aee7051d2e0655ca909a2f
BLAKE2b-256 0076f130e155c4f5e6e9b51c9f3258053cf61860e77b0adb68f6ab36f7227d22

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 467.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 991e406db5da4d89fb220a94d8caaf974ffe14ce6b095957bae9273c609784a0
MD5 c365bdc85112836f463cf4d6b6a23a4c
BLAKE2b-256 0255a3dc286cbc0246825ed3055906e8ea447d9ba66c4d54c9d02d5e130f028a

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 397949a9cc85e4a1452f80b7f7f2175d557237177120954eff00bf79553e89d3
MD5 c6be0a8612f30b6d077bc7f9379c604f
BLAKE2b-256 849aa12ee3bb39aec5e59942dc86bc593bb1f6f3519dc9433704c5d31be9adf6

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4522ad69a4ab0e1b46a8367d62ad3865b8cd54cf77518c157631dac1fdc97584
MD5 7f4c29aae21814744ee18ecf7508ed95
BLAKE2b-256 6ff46cd31a16eb0e0bba06d94624c6b5b2e07ecf1435297680afc4b9b73a86dc

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa0bbbfbd1f8ebbd5facaa10f9f333b20027b240af012748555148943616fdf3
MD5 f81cf233d4929151ac5b4ef447f25fff
BLAKE2b-256 75b1538a98161e4f60292c25c472d14718cd5e370294e9847338e74da067f97d

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1849fd6f1917b4dc5dbf744b2f18e41e0538d08dd8e9ba9efa811c5149d665a3
MD5 5aacaa72485443243e851e9bf86e0d5a
BLAKE2b-256 1d4a0a41291a6db5b26379d3c2c5e391108a284548e51c2ae7740de287a5f6f5

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d511db310f43222bc58d811037b176b4b88dc2b4617478c5ef01fea404f8601
MD5 eb3edafe07f80d4ac7ca724bab89dd36
BLAKE2b-256 dd83be399e6f0f4cd1ef5f1f8dd590e400ea04c0cc35e1b6eb6dacc527a1cb56

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0b208ebec3b47ee78a5c836e2e885e8c1e10f8ffd101aaec3d63997a4bdcd04
MD5 a711286d106caf53e51bc46ef0a2104a
BLAKE2b-256 dfbc2162f7b5e9fee09558949b00c37f0e48b4869290e934951dffd7606c987a

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 097791d5a8d44e2444e0c8c4d6e14570ac11e22bcb833808885a5db081c3dc2a
MD5 2a4ab61ef1253a3a4f5b7ba59edc592a
BLAKE2b-256 cc472469d7901d6ae64ca145cc36000ba37f4f38314e21bc13666f68b53cb7f2

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fbdbf2fba1b4f5f1522e9f11e21c306e095b59a83340a69e908f8ed9b450070
MD5 d3254186710c8f9a86f752a3be7b91ab
BLAKE2b-256 0d5cb075cd253a8bddbd813d4e11d6c06fc3b15742f243aa21e1f14b50e89dc2

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91ddf95cedca12f115fbc5f442b841e81197d85aa3cc30b82aee3635a5208af2
MD5 67da4793228e562ac706481037831965
BLAKE2b-256 b23a99163b8ee0c840f46cee7609c209e9fd3fc6a96ae211bb644e1621fcc61f

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c43205e85cbcbdf03cff62ad8f50426dd9d20134a915cfb626d805bab89a1844
MD5 be57e043d08ec284209f644f651c9770
BLAKE2b-256 13e62c0e33e6ba469b3c14036666bdb3d94757b211f7c7b177a5e8d8e003ad0f

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e2129ec8f72806751b621470ac5d26aaa18fae4194796621508fa0e6068278a
MD5 620c09d3f48134e12ea7fad72ecdb415
BLAKE2b-256 8a1a3512d8c73dad9cb31cc6359a7aac32e7675d77243601564343e5e8c17657

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7640d176ee5b0afec76a1bda3684995cb731b2af7fcfd7c7ef8dc271c5d689af
MD5 2ceb0e5bcf4f9c0f927edb7b644753bd
BLAKE2b-256 354151eab604bec03a9625a3d6ee34c0973efa7aaae4445a018d1ff61ef4f125

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 472.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e03c732cb64b96849310e1d8688fb70d75e2571385485bf2f1e7ad1d309fa53
MD5 83b803fe115b4fc163af7a03606c501a
BLAKE2b-256 b8a246046af525aeeb3bdeb92e82715bf6db9b83696766de9c3495a7cd3f0116

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 467.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8caa73fb19070008e851a589b744aaa38edd1366e2487284c61158c77fdf72af
MD5 03fd27b6f8a484f2ea6831900a3b5f9a
BLAKE2b-256 6d6b555f9c6a1d13094df1488f0060822c353e1bb93c0dfb33dff4d8e5a54cc0

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f251db26c239aec2a4d57fbe869e0a27b7f6b5384ec6bf54aeb4a6a5e7408234
MD5 863b35ae865e5b52ccb54e5671d9085c
BLAKE2b-256 f9a6405d38f2dc6425cf2b0aa6664e652a4dd2f7cb9b2b6c244e20d9cb86917a

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 707d28a822b918acf941cff590affaddb42a5d640614d71367c8956623a80cbc
MD5 087c35b222ed186b82bc7436c48e256c
BLAKE2b-256 7c1132016c68eb887396f70bbcefd0d4abf31332f4e5cbf3c973dda540cf416f

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68109c13176749fbbbbbdb94dd4a58dcc604db6ea43ee300b2602154aebdd55f
MD5 706c1de92649a0badb73d7253b62e6ae
BLAKE2b-256 2f924db048624812755fa294cad64de1cf9db5dcf0be7656f0e6e503dbde612f

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 658f6c028edaeb02761ebcaca8d44d519c22594b2a51dcbc9bd2432aa93319e3
MD5 584391bbdc5736e31a6bc087df737d26
BLAKE2b-256 05a3b9e45ee76402f18e694fc759ddc896b633cc6e03205a92aaebfb17541948

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ca5877754f3fa6e4fe5aacf5c404575f04c2d9efc8d22ed39576ed9098d555c8
MD5 30755bdec666aa9270168f5a57c412de
BLAKE2b-256 136a35f0bc2d0312a13a51e025955650caa3f25147e29b33e64dc47bdb4fefaa

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b575fbe6396bbf21e4d0e5fd2e3cdb656dc90c930b6c5532192e9a89814f72d
MD5 4efe589b9e53902c7ab82e77a41916f6
BLAKE2b-256 536d21323018712cc644c4e2b2905ea1e5a0431fa3c102ea0745209dd09fd9f7

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57c05f2e310701fc17ae358caafd99b1830014e316f0242d13ab6c01db0ab1c2
MD5 4eb6f93da906d8fab1f39e44deb1575f
BLAKE2b-256 c699410d2020f59fa4d983f6d3a46c7710d85985f3b6b6651d4993f0c295ff58

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4993593de44c741d1e9f230f221fe623179f500765f9855936e4ff6f33571bad
MD5 c9ba725c1aa7b4c54f5925f8558d8738
BLAKE2b-256 88154be3ad9ab64846b06e95a45dea9cf0309f56929f02eefbf8ecac1a6f3efa

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2dd8c874927a27995f64a3b44c890e8a944c98dec1ba79eab50e07f1e3f801b
MD5 3c3ab4fb96c92def68c99f7352d97ceb
BLAKE2b-256 80444915d0b781b38b73b3a054aacffb7b48c6c7f2d224dcdb8ec88d252965c8

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d982c6db1da7cf3018183891883660ad085de97f21490d314385373f775915b
MD5 140935b7ec61236881eb0f90fc537a2d
BLAKE2b-256 1faf6415d5164020913283c57a4c248b51b7eb4a8f2bcbdd40fcab5b3b165ea1

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb24abcd50501b25d33a074c1790a1389b6460d2509e4b240d03fd2e5c79f463
MD5 58e1bc5f9fcb03a4f3bc38b55d3fb050
BLAKE2b-256 f21c619904c162529e870d1d6e134ada477cafc76732b44df01eb284bcf61dce

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c2f258489de12a65b81e1b803a531ee8cf633fa416ae84de65cd5f82d2ceb37
MD5 d8895039b8cbc2b0586c5390d4b5327f
BLAKE2b-256 cb44bfb147eac1eec9d28aad7b26dbab833822630a4efce66f24fde5d773c1c3

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d788cb5cc947d78934be26eef1623c78cec3729dc93a30c23f049b361aa6d835
MD5 17d808a71b354fb8a81bd38a396da713
BLAKE2b-256 fe324029c96ff01cbdfbe0d0c121cfea17b080be03576662678bb1c4906ba502

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1febca6f79e91feafc572906871805bd9c271b6a2d98a8bb5499b6ace0befed
MD5 3c67260975896f346ad1843add6a3e5d
BLAKE2b-256 89a47bf99fd82cfa82a1dc62bb108c2f24d2a87c72046a4476b44e87fcbbde91

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bff601fbfcecd2166d9a2b70777c2985cb9689e2befb3278d91f7f93a0456cae
MD5 68ac85389227108af56b3563fe6dc71e
BLAKE2b-256 2306c234cabe22f7e866ad3d4dd895397493d9520c6d95858f25b187f532d2d5

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 472.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64ec3e2dcab9af61bdbfcb1dd863c70d1b0c220b8e8ac11df8b57f80ee0402b3
MD5 1b5e79e10b3629039c5f52d780cd5a83
BLAKE2b-256 0fa6e21ae3f4131208afdecd553ee90c1a7bd5f43e672560e4c10ed28f8fe67b

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 466.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 df813f0c2c02281720ccce225edf39dc37855bf72cdfde6f789a1d1cf32ffb4b
MD5 c2b284f7a81ea59bff37dc4333c269bf
BLAKE2b-256 1e2c023697bcabda96ca1a25f6ff8c66992a9888b31d3e9572e438108c9d6456

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaecfafb407feb6f562c7f2f5b91f22bfacba6dd739116b1912788cff7124c4a
MD5 2967cdfd0931bac3f89621b78e6b6219
BLAKE2b-256 f052f86bb8d53b11aaedc52adc15fc033c64e2ded7e5a673f8a323a7b4816b91

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbafe3a1df21eeadb003c38fc02c1abf567648b6477ec50c4a3c042dca205371
MD5 96338af3f45c8ae70ad25605ae24e952
BLAKE2b-256 716fda4dda3de389f729f224dc9d29fad1f14a74a87ea6a16a5ccdd114e68e72

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0257e0eebb50f242ca28a92ef195889a6ad03dcdde5bf1c7ab9f38b7e810801
MD5 f48f90f2a6c9584677fabc57693f744c
BLAKE2b-256 9abd6816b6792a282389ee28f23e6130521050429f499b7d43005bc54df12696

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3bae553ca39ed52db099d76acd5e8566096064dc7614c34c9359bb239ec4081
MD5 03733bad392a2b27e9865ec165a19dc8
BLAKE2b-256 a54e54a53bd2203d1fab9d70741d83ff406ec61f923bbafafcea511dbb33031b

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8110b78fc4b37dced85081d56795ecbee6a7937966e918e05e33a3900e8ea07d
MD5 2a175238f1dd410ebb590cf8bd326f85
BLAKE2b-256 7d1071886fc1d77a702873535a275962df06e199c55df774b206cc9bcc817520

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f7b98f8d2cf3eeebde738d080ae9b4276d7250912d9751046a9ac1efc9b1ce2
MD5 a08356c934a2bf105e1905b5080bb853
BLAKE2b-256 dad245186db56b2f27d62f26d6250941db08b974c0d5f88dd2fa35b9cd200be1

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e942945e9112075a84d2e2d6e0d0c98833cdcdfe48eb8952b917f996025c7ffa
MD5 1b33fd1094fcea5790a48ca954aef4ce
BLAKE2b-256 0af4f1d02b484570ead6a45f1a6b17817b4492fd4935a80a8502f8344afb2c02

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 579508536113dbd4c56e4738955a18847e8a6c41bf3c0b4ab18b51d81a6b7be8
MD5 d5386e38fa7cef5ac8718e6f204845bf
BLAKE2b-256 0362898295d1b3ac95582a6aa250d6801b2f13fbcdede1437db02fe20711dff2

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5379ca6fd325387a34cda440aec2bd031b5ef0b0aa2e23b4981945cff1dab84c
MD5 035e24ecc0456cb913d39b721500bc87
BLAKE2b-256 0fa7ef8ad21d0be4e48de8c01a3347d8382d81f1655c69227ed21d8783708f8d

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9eec7140cf7513aa770ea51505d312000c7416626a828de24318fdcc9ac3214c
MD5 f6e569bbec5cbbe57f36dbddda99b6cb
BLAKE2b-256 b654c11df33c46d4dd1a37bc0f583f4213971c10edf5583d94f8f6e470289e97

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5db133d6ec7a4f7fc7e2bd098e4df23d7ad949f7be47b27b515c9fb9301c61e4
MD5 3f5ed16ed5bfae05f37851999b2a4d3b
BLAKE2b-256 5671c22e8c299f45efe391efff714429a4e4ee875200ff94bdc834bc093110d4

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2d445f1cf147331947cc35ec10342f898329f29dd1947a3f8aeaf7e0e6878d1
MD5 943d8276d4fa8c9861394297627433d1
BLAKE2b-256 9a518deb35053611c0b941b4a3397d3c3e931cf48a5677222644a3cd07a0485f

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bea62f03a50f363265a7a651b4e2a4429b4f138c1864b2d83d4bf6f9851994be
MD5 fa11f277afdcdd7770db523093ad5458
BLAKE2b-256 42ba9ef9ed45e2f65c4a992025ed044aa6026f60d2af9755d658ce1c63efea1f

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4fa30494601a6271a8b416554bd7cde7b2a848230f0ec03e3f08d84565b4bf8c
MD5 153ccfe7a0213499830cb622833703b7
BLAKE2b-256 12f87bbeabff8c3bea0e7ef7703e44490d29e3c1e2de48cc8c7f07f1b3ecd135

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 5f6bcd2d012d82d25191a911a239fd05a8a72e8c5a7d81d056c0f3520cad14d1
MD5 741f8a7aec8b3c59ba917a3a09eee89e
BLAKE2b-256 58c26ccafb015eca5de2e7fe02fd2596d238037e664d7a80fc4f7859ad9d5cb9

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 472.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3a5280f496297537301e78bde250c96fadf4945e7b2c397d8bb8921861dd236d
MD5 19a8d2ac9f5694b301535ba1cd07e116
BLAKE2b-256 2ecd6191c0fbf16a76bd6dc17d316846a8d507f6e729c14261c0d810351407ed

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pymongo-4.6.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3e9f6e2f3da0a6af854a3e959a6962b5f8b43bbb8113cd0bff0421c5059b3106
MD5 b79c124008804ec38a244eba791e8f51
BLAKE2b-256 2ecb884f6af1114400a84f04502cc94e90adbde8eec650963039e521c5887f16

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed694c0d1977cb54281cb808bc2b247c17fb64b678a6352d3b77eb678ebe1bd9
MD5 5777267c98f6d3fb54f550a9b9a0d1e9
BLAKE2b-256 8320452aeec372bb6ec41569e2718fd7606c484a2af38b6e011fb8bef28e9df0

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97d81d357e1a2a248b3494d52ebc8bf15d223ee89d59ee63becc434e07438a24
MD5 3fecfc0dcfc5e5288c7f447022d09c31
BLAKE2b-256 0d77f0f60acbd424a3e93fb586613f3b659deb38185eed33412cdf29a7e235b9

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3797e0a628534e07a36544d2bfa69e251a578c6d013e975e9e3ed2ac41f2d95
MD5 e5cd275f5e6339c9b44816c49f062d45
BLAKE2b-256 1440c2523bdfbc47eb47fab3b230bcbbf655e62a29ee5146bdcd8e0ea67c46c0

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebd343ca44982d480f1e39372c48e8e263fc6f32e9af2be456298f146a3db715
MD5 f0c2d77ed260e8e59c9fcce70ff40bb4
BLAKE2b-256 c7ad831b0f1d89a2268d37bf9b2c0f304a4b9dd4832733b8df0b447d3331eec8

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e571434633f99a81e081738721bb38e697345281ed2f79c2f290f809ba3fbb2f
MD5 3e26fbab0c3bcbaac0851c1fbdd44344
BLAKE2b-256 ab91039159c5fb87f07df99b1d70968d7a3f59f915d569ea3e00e24ffbcda3f6

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7dd63f7c2b3727541f7f37d0fb78d9942eb12a866180fbeb898714420aad74e2
MD5 0b5e711e17f70f681071813c8ec7cc1c
BLAKE2b-256 512305dc94c404e2948da001c13127593197564b04588a49ea60a129e0c0d00c

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ceaaff4b812ae368cf9774989dea81b9bbb71e5bed666feca6a9f3087c03e49
MD5 832f04824cb9c70ad9f8b656583dbfd2
BLAKE2b-256 c1625b7000d4714d46a372f3c6bbbc38955b7633b8b97b5765b840a1f05dbf4f

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 477914e13501bb1d4608339ee5bb618be056d2d0e7267727623516cfa902e652
MD5 9421272b03241846a631c8e1264bca41
BLAKE2b-256 10fc4f7d4024fba4ac5472cddc1217ebc4a58c7d3a1ea9e5b181e7ce3e83f6f4

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee30a9d4c27a88042d0636aca0275788af09cc237ae365cd6ebb34524bddb9cc
MD5 ec7fa3883a8e2db94e05010ca2a1135f
BLAKE2b-256 364d50e98e9ec058eeb08ebc8d83bfad25aac52c86beca6e08692f3dab0baff6

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 362a5adf6f3f938a8ff220a4c4aaa93e84ef932a409abecd837c617d17a5990f
MD5 d8ca150c84c4878e1709a002ef0dd80c
BLAKE2b-256 e34a12b7e286becb1d199761af1a49bf3b3c9873ec6edaaf5414ae0a581959dd

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a509db602462eb736666989739215b4b7d8f4bb8ac31d0bffd4be9eae96c63ef
MD5 3b219efddc0953c79cbed2b2f1bdae20
BLAKE2b-256 da80b81896076de9ddc3da8b1ee4a35b14c97bdcd49694183dce2a829bf3c1d8

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c68bf4a399e37798f1b5aa4f6c02886188ef465f4ac0b305a607b7579413e366
MD5 9eb8de5fc337dc839d283f87b777dc07
BLAKE2b-256 168daf86296b9ed6bf1d5cec2456d678c979f691482b89860d12d0c133d87a36

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c9519c9d341983f3a1bd19628fecb1d72a48d8666cf344549879f2e63f54463b
MD5 564fd8279a9a62e1b194d441534fd0f2
BLAKE2b-256 26d7e28e9c38c3d7b4521a07894de1205ecb7583421a36c027a7409b6339caff

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f5f4cd2969197e25b67e24d5b8aa2452d381861d2791d06c493eaa0b9c9fcfe
MD5 b8f38b00ac9d4d27152882cd2b3953ad
BLAKE2b-256 1cb01a70f32958070ded5550d0c7ab62c3e0c3ff794dc4234eae4a8b5767f3f6

See more details on using hashes here.

File details

Details for the file pymongo-4.6.2-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-4.6.2-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 fe010154dfa9e428bd2fb3e9325eff2216ab20a69ccbd6b5cac6785ca2989161
MD5 71b6fba55c5a574c666f703920049e59
BLAKE2b-256 62e22807ab144fa566f26d6e5bf720f90a28fcc9df23d29342d8d5ee609e2426

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page