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.1.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

pymongo-4.6.1-cp312-cp312-win_amd64.whl (472.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.6.1-cp312-cp312-win32.whl (467.6 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (691.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (694.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (681.3 kB view details)

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

pymongo-4.6.1-cp312-cp312-macosx_10_9_universal2.whl (533.4 kB view details)

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

pymongo-4.6.1-cp311-cp311-win_amd64.whl (472.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.6.1-cp311-cp311-win32.whl (466.9 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (680.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (686.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (680.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (669.3 kB view details)

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

pymongo-4.6.1-cp311-cp311-macosx_10_9_universal2.whl (534.3 kB view details)

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

pymongo-4.6.1-cp310-cp310-win_amd64.whl (472.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.6.1-cp310-cp310-win32.whl (466.9 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (677.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (689.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (665.6 kB view details)

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

pymongo-4.6.1-cp310-cp310-manylinux2014_x86_64.whl (696.8 kB view details)

Uploaded CPython 3.10

pymongo-4.6.1-cp310-cp310-manylinux2014_s390x.whl (700.7 kB view details)

Uploaded CPython 3.10

pymongo-4.6.1-cp310-cp310-manylinux2014_ppc64le.whl (709.0 kB view details)

Uploaded CPython 3.10

pymongo-4.6.1-cp310-cp310-manylinux2014_i686.whl (692.4 kB view details)

Uploaded CPython 3.10

pymongo-4.6.1-cp310-cp310-manylinux2014_aarch64.whl (695.3 kB view details)

Uploaded CPython 3.10

pymongo-4.6.1-cp310-cp310-manylinux1_i686.whl (692.4 kB view details)

Uploaded CPython 3.10

pymongo-4.6.1-cp310-cp310-macosx_10_9_universal2.whl (534.5 kB view details)

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

pymongo-4.6.1-cp39-cp39-win_amd64.whl (472.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.6.1-cp39-cp39-win32.whl (466.9 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (688.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (675.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (684.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (654.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (663.6 kB view details)

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

pymongo-4.6.1-cp39-cp39-manylinux2014_x86_64.whl (696.1 kB view details)

Uploaded CPython 3.9

pymongo-4.6.1-cp39-cp39-manylinux2014_s390x.whl (699.9 kB view details)

Uploaded CPython 3.9

pymongo-4.6.1-cp39-cp39-manylinux2014_ppc64le.whl (708.1 kB view details)

Uploaded CPython 3.9

pymongo-4.6.1-cp39-cp39-manylinux2014_i686.whl (690.7 kB view details)

Uploaded CPython 3.9

pymongo-4.6.1-cp39-cp39-manylinux2014_aarch64.whl (694.4 kB view details)

Uploaded CPython 3.9

pymongo-4.6.1-cp39-cp39-manylinux1_x86_64.whl (684.4 kB view details)

Uploaded CPython 3.9

pymongo-4.6.1-cp39-cp39-manylinux1_i686.whl (690.7 kB view details)

Uploaded CPython 3.9

pymongo-4.6.1-cp39-cp39-macosx_10_9_universal2.whl (534.5 kB view details)

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

pymongo-4.6.1-cp38-cp38-win_amd64.whl (472.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.6.1-cp38-cp38-win32.whl (466.4 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (693.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (699.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (705.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (692.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (701.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (688.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (678.4 kB view details)

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

pymongo-4.6.1-cp38-cp38-manylinux2014_x86_64.whl (716.6 kB view details)

Uploaded CPython 3.8

pymongo-4.6.1-cp38-cp38-manylinux2014_s390x.whl (720.8 kB view details)

Uploaded CPython 3.8

pymongo-4.6.1-cp38-cp38-manylinux2014_ppc64le.whl (730.0 kB view details)

Uploaded CPython 3.8

pymongo-4.6.1-cp38-cp38-manylinux2014_i686.whl (702.7 kB view details)

Uploaded CPython 3.8

pymongo-4.6.1-cp38-cp38-manylinux2014_aarch64.whl (714.5 kB view details)

Uploaded CPython 3.8

pymongo-4.6.1-cp38-cp38-manylinux1_x86_64.whl (701.1 kB view details)

Uploaded CPython 3.8

pymongo-4.6.1-cp38-cp38-manylinux1_i686.whl (702.7 kB view details)

Uploaded CPython 3.8

pymongo-4.6.1-cp38-cp38-macosx_11_0_universal2.whl (535.5 kB view details)

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

pymongo-4.6.1-cp37-cp37m-win_amd64.whl (472.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.6.1-cp37-cp37m-win32.whl (465.8 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (659.0 kB view details)

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

pymongo-4.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (665.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.6.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (671.9 kB view details)

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

pymongo-4.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (658.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (647.1 kB view details)

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

pymongo-4.6.1-cp37-cp37m-manylinux2014_x86_64.whl (679.6 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.1-cp37-cp37m-manylinux2014_s390x.whl (682.1 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.1-cp37-cp37m-manylinux2014_ppc64le.whl (689.5 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.1-cp37-cp37m-manylinux2014_i686.whl (669.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.1-cp37-cp37m-manylinux2014_aarch64.whl (678.1 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.1-cp37-cp37m-manylinux1_x86_64.whl (671.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.1-cp37-cp37m-manylinux1_i686.whl (669.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (475.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1.tar.gz
Algorithm Hash digest
SHA256 31dab1f3e1d0cdd57e8df01b645f52d43cc1b653ed3afd535d2891f4fc4f9712
MD5 7c854a2d1e2ce333ed875edfdd034e9c
BLAKE2b-256 1df0b5fcf9aee64ac3650a3df3bd1d7e8870838a82944fa4868768ab9db5416a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00c199e1c593e2c8b033136d7a08f0c376452bac8a896c923fcd6f419e07bdd2
MD5 0622306873f4ca0c761aefe727580d3b
BLAKE2b-256 84a8af969731cd8e0e0213636d8b1875009a73260bfbf294129342fe02070c68

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3177f783ae7e08aaf7b2802e0df4e4b13903520e8380915e6337cdc7a6ff01d8
MD5 d5788d7d7487d30a4026eff593750222
BLAKE2b-256 c1fe8ac6185e91d85837e25f63aa811b570a07737f292ea948a2ad3e44ba78bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c30a9e06041fbd7a7590693ec5e407aa8737ad91912a1e70176aff92e5c99d20
MD5 9e467bf2d643468c9ab427bb5d23eb01
BLAKE2b-256 3a9ed94d2fb0676e0aa73ce31231095d3c5ce06bbb635b9f16b3db4b216e5b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbed8cccebe1169d45cedf00461b2842652d476d2897fd1c42cf41b635d88746
MD5 dcbb05f40261248b372f3be3893dab54
BLAKE2b-256 a8e44aed690240649ad7f76476bb8e4af0307266b6ffdd7ccf2db01dcd0de493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b47ebd89e69fbf33d1c2df79759d7162fc80c7652dacfec136dae1c9b3afac7
MD5 db1073737a21fbe12cf2491671d4ef60
BLAKE2b-256 d963afdec16bf24ceaa92bb81626ebad5e629c1078b8577e3e585c7e094829fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e438417ce1dc5b758742e12661d800482200b042d03512a8f31f6aaa9137ad40
MD5 375fea62ed0c01dd67d8ca00ace73047
BLAKE2b-256 b673f23e84f56dd7c22d0bd53a1d6b653d04d77b7a6e3958b48c74d014c9bd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8729dbf25eb32ad0dc0b9bd5e6a0d0b7e5c2dc8ec06ad171088e1896b522a74
MD5 19035396c9ef7c6123ba3664636666a8
BLAKE2b-256 fd65f0836d12525b73a2b3f0bd5201b2fe15c22bcca1ea0a9615014b2f6e51d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b435b13bb8e36be11b75f7384a34eefe487fe87a6267172964628e2b14ecf0a7
MD5 457223bcd04b674c3b71fe76acb76555
BLAKE2b-256 f07e076144a8deaf9ad41411852be2d65fbb033e899bfd297975496acc5bc7be

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b10d8cda9fc2fcdcfa4a000aa10413a2bf8b575852cd07cb8a595ed09689ca98
MD5 e7249c65678fbc47f890518f376dd869
BLAKE2b-256 c81a1ba5578cc3acc8ef0dfd6eb9385f9c4b0fe3039665af93bcf062c34fcdb6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5556e306713e2522e460287615d26c0af0fe5ed9d4f431dad35c6624c5d277e9
MD5 6b98040ad6120a1ddbe62aa9f7e5644e
BLAKE2b-256 20af19b890d33a6327cf4f3f85c8f82041d335340967b08d82ebf2a6753d7e7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88beb444fb438385e53dc9110852910ec2a22f0eab7dd489e827038fdc19ed8d
MD5 4fc27ee04e33bd9172833befecfb6161
BLAKE2b-256 005b52158a2666945f517e000e6cebb70bc7b36971376c6b63683faa2955ae8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 349093675a2d3759e4fb42b596afffa2b2518c890492563d7905fac503b20daa
MD5 4628747dde69a03a644efb0ca908f3e7
BLAKE2b-256 46d0cdade09b3fec6dc665b299a01b17aaea58122ccdb1d8b4796d91e12bc099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d4ccac3053b84a09251da8f5350bb684cbbf8c8c01eda6b5418417d0a8ab198
MD5 3f9e7d0e3de473dd8b24913d8a61cf25
BLAKE2b-256 6513396caadc36802023eaa84c966bd49abeea2e26d304d713b996342054d2e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bd94c503271e79917b27c6e77f7c5474da6930b3fb9e70a12e68c2dff386b9a
MD5 5c4e14c79395a91136803952daad82eb
BLAKE2b-256 c712a1bbb6c035139f9eb2560e16f521017b6a444a5205d5a06e252b60e959a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8e62d06e90f60ea2a3d463ae51401475568b995bafaffd81767d208d84d7bb1
MD5 42a726d32beaf53d598ee2d954cb04f3
BLAKE2b-256 7dfcf33053d64272f75339fd92497026f102475b0fe99b8bbf6c69da6e944f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6a0ae7a48a6ef82ceb98a366948874834b86c84e288dbd55600c1abfc3ac1d88
MD5 f89c114ca08561713714b87fd3b9cd40
BLAKE2b-256 1f3fb2e3e18b75d5d42e79939da187efff5ed5aac6a1cc9c0ba21bbe610a33b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13d613c866f9f07d51180f9a7da54ef491d130f169e999c27e7633abe8619ec9
MD5 f36370ed0cf7f3250fd98c1d22826044
BLAKE2b-256 784a62b5af17753515b619bc6ddefc489413444d431bae02ba52746c01d75c56

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 da08ea09eefa6b960c2dd9a68ec47949235485c623621eb1d6c02b46765322ac
MD5 8737f9d8cebf0ba0705bc88edc75ef44
BLAKE2b-256 1a65cf22d233cda2e4f3ea37d560411b53c91a2656a9b4551079e240c196f35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 010bc9aa90fd06e5cc52c8fac2c2fd4ef1b5f990d9638548dde178005770a5e8
MD5 59cb637f882e30d307dc4c527409b107
BLAKE2b-256 6b740299630943029991b8425072ce6fd81d9fd1142c1c8c560a227efee82d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2940aa20e9cc328e8ddeacea8b9a6f5ddafe0b087fedad928912e787c65b4909
MD5 0b4dba6c2f9c26f766db983ac19003d9
BLAKE2b-256 612648c3541bfee3dbd70e5b5e4e4579851ee1572ccf2cfe290617020f3f9c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 154b361dcb358ad377d5d40df41ee35f1cc14c8691b50511547c12404f89b5cb
MD5 2ad7c8c56b5db86ed5a1fa7396b56753
BLAKE2b-256 5f73f5fd9926ad01b3a1a0c433a7abbbe40d519fd961ae5a163838ce34ffbac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55dac73316e7e8c2616ba2e6f62b750918e9e0ae0b2053699d66ca27a7790105
MD5 7c1b40906975b5b553d78a3860bee04d
BLAKE2b-256 c20e98986c3f88615c4c6ee04f05d0b1fe4ad8c83b5ee40100e2f8a98f7315ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e470fa4bace5f50076c32f4b3cc182b31303b4fefb9b87f990144515d572820b
MD5 967b4886779c364f697260b35d204fd6
BLAKE2b-256 36b316bca48079427c9677ff5695c0a3d7233469b29eeae8611fb716b25abafc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cadf7f4c8e94d8a77874b54a63c80af01f4d48c4b669c8b6867f86a07ba994f
MD5 6955295677059327f4cb03f9c92a64b5
BLAKE2b-256 5e7f3b98c0a7c2c3fac7182c7b6de07cde3975f381e63dc5512c0136bc1888a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff925f1cca42e933376d09ddc254598f8c5fcd36efc5cac0118bb36c36217c41
MD5 54cc3f47c1858148a761943d267a6f77
BLAKE2b-256 e11ac878436cc8098b2ec947293c8c9c8c5988a033d6996c364076ced6fddb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2dd2f6960ee3c9360bed7fb3c678be0ca2d00f877068556785ec2eb6b73d2414
MD5 defe38a5be9b7ad3b1fcce03d0d4b438
BLAKE2b-256 219e0386d0ee8dc7475901184d539742ded2c0382ef06a25c78b05a643af3d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 262356ea5fcb13d35fb2ab6009d3927bafb9504ef02339338634fffd8a9f1ae4
MD5 aaafaad5658e17dc8518f3ce427f19da
BLAKE2b-256 48321e4dad05269fa6d1b3dc287008ef20b21dd6a9807a6f2f0aa94f6dc49b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaf2f65190c506def2581219572b9c70b8250615dc918b3b7c218361a51ec42e
MD5 cad0bfe013fae42bcc8fc9988b2c36cc
BLAKE2b-256 521f098291f236e8319113855787056ac870585dcf747a214b4180e67818a5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c5654bb8bb2bdb10e7a0bc3c193dd8b49a960b9eebc4381ff5a2043f4c3c441
MD5 9136a7899ad6b3cac744e0e9cc3a5b87
BLAKE2b-256 4a473de335c43f08b2cbc30c0215008b41fe436c95ad3410ce05d2bc786aa74e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4344c30025210b9fa80ec257b0e0aab5aa1d5cca91daa70d82ab97b482cc038e
MD5 45fc501071a051b44dec3b9ee3176cbd
BLAKE2b-256 aa7f299ed794c9ee9200c38fe195bcc1976752b1b2f5954faa6d3ed8fedb5688

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ef102a67ede70e1721fe27f75073b5314911dbb9bc27cde0a1c402a11531e7bd
MD5 adf88cc438be5bb22190bd17d45ece86
BLAKE2b-256 0800e4554e8a239eea8a7620c263594a98bdbe2ab33ab497da9d93ad92c65310

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c91ea3915425bd4111cb1b74511cdc56d1d16a683a48bf2a5a96b6a6c0f297f7
MD5 f22bfeb34db355bd8f7418a873181226
BLAKE2b-256 e7184f6a61dcdd8a95f1f33a471a2e2beafb81faca5159e84120c3cd845f9ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ec31adc2e988fd7db3ab509954791bbc5a452a03c85e45b804b4bfc31fa221d
MD5 0a5fc0fbbe2e27efd0d1d43b6e226245
BLAKE2b-256 68f3f0909bd0498c1e34d9fbdc432feb55cb25d58aeb1a2022be9827afabdc61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f2b856518bfcfa316c8dae3d7b412aecacf2e8ba30b149f5eb3b63128d703b9
MD5 a3385ec0eea4b9f6f0c0afede6d4fd12
BLAKE2b-256 73d6a8e1199db917103d708df45dbe297c10235dc3d5c33ed61aefe7a3599bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aafd036f6f2e5ad109aec92f8dbfcbe76cff16bad683eb6dd18013739c0b3ae
MD5 1b6a568a8276f23bc51d9721d65e3f80
BLAKE2b-256 89ea4fcb0f7156aaab44f8c91690bd63050a9b6826b23bf265ce8354ee310378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5e641f931c5cd95b376fd3c59db52770e17bec2bf86ef16cc83b3906c054845
MD5 7969c3e24d821a2ea1e7372e5d3fa27d
BLAKE2b-256 0b535217f2d95986040354be3546631316ce940cb276fc68db9103bef9fc1daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3094c7d2f820eecabadae76bfec02669567bbdd1730eabce10a5764778564f7b
MD5 d38eb14dd5d06d6f8f8ad0cf5e8a8edd
BLAKE2b-256 bea7b95541846762b858164f5c0a15be7fcc2d00f4225d08bc39f7fcc80cbd22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1461199b07903fc1424709efafe379205bf5f738144b1a50a08b0396357b5abf
MD5 79df9c2b7cc8bd880973267293ced079
BLAKE2b-256 93f2c938cf8897e090bc0257ebff44bb554a043e0d598621de48c981cc644b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9167e735379ec43d8eafa3fd675bfbb12e2c0464f98960586e9447d2cf2c7a83
MD5 6f7cd7f67de93f46893038c93e8290a7
BLAKE2b-256 6d2771bf4a56683944e1bf3321cb70bda7ad0727452d79edf9c86668796d8993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ec75f35f62571a43e31e7bd11749d974c1b5cd5ea4a8388725d579263c0fdf6
MD5 380cf35b565085c0de16603e5da0a2b3
BLAKE2b-256 5f472d6e1ef9535a44ed7c0a9e297791f56d77fcfdc4a0128fa91392e8d5d422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c79d597fb3a7c93d7c26924db7497eba06d58f88f58e586aa69b2ad89fee0f8
MD5 27b6e02728b2a99c64070c545e5a5af0
BLAKE2b-256 093ee47ebf391b282bc575e534c1e2b9e7801a2eb20dd64c7b7ff0b16478d3cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c74f4725485f0a7a3862cfd374cc1b740cebe4c133e0c1425984bcdcce0f4bb
MD5 dbb0c1cc1515d30ee00775f8e7a350c6
BLAKE2b-256 0ea6d6fb15531ce8be59b76ea51b33a4fdbd2189dca1d6d418e6f323ef617b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0355cff58a4ed6d5e5f6b9c3693f52de0784aa0c17119394e2a8e376ce489d4
MD5 df511eb633642d59495f9b768609d689
BLAKE2b-256 06deb79272fbe5cef29f86ae2862bdd817cae5dc80034fbd4662b70889d3b9ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2aced6fb2f5261b47d267cb40060b73b6527e64afe54f6497844c9affed5fd0
MD5 b3f7ccfe1d87837f16c22a0b9b8c6b63
BLAKE2b-256 4e21b551e55e392f2dc8e85a8b8d727966747deb5ca1240e0eb946736b3a49cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6a1810c2cbde714decf40f811d1edc0dae45506eb37298fd9d4247b8801509fe
MD5 1fd96c2180d69e30d5b954f91501035c
BLAKE2b-256 206fa92effb4b69f1287f2910a0f854dcb12d690f61b5e53f4889f5a7202762c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bb0e9049e81def6829d09558ad12d16d0454c26cabe6efc3658e544460688d9
MD5 53ebd80169a77b7f202c14a44d3ad38a
BLAKE2b-256 e48c30096d46d706a1b2fcb32a8835bd38e14ae069ecbead67b6dee50918f643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 69247f7a2835fc0984bbf0892e6022e9a36aec70e187fcfe6cae6a373eb8c4de
MD5 186d9c95a8b3910a4cfbec21ee669fe6
BLAKE2b-256 90dc50134dee1df0e3904d8a0bff40b6b455bb47e582b6e087f1df43ddf1e399

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4497d49d785482cc1a44a0ddf8830b036a468c088e72a05217f5b60a9e025012
MD5 6cad2d1124401b106ca832c5c771b447
BLAKE2b-256 55e47159703d66c95fb0d015fc1382b4b3f7b534db40ee74f730243122ff2746

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 39d77d8bbb392fa443831e6d4ae534237b1f4eee6aa186f0cdb4e334ba89536e
MD5 c1080aa90edd53ee608d7f9fa3c0ef9a
BLAKE2b-256 66ed8a7b78ffdedfca030884963290b46aed388b8cb5910f800b96a6f310d3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b81ecf18031998ad7db53b960d1347f8f29e8b7cb5ea7b4394726468e4295e
MD5 274e4613aa122605dc3a999004e6a43f
BLAKE2b-256 1d5c93d489be8db5380a145ddf04744f28ca14546a0f7fd8224465e5fb3ce2de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d219b4508f71d762368caec1fc180960569766049bbc4d38174f05e8ef2fe5b
MD5 5fdfa58c32a9a0deb600b1c829b3621c
BLAKE2b-256 6d7cdadb62a8e7b92eacc19a36c3809c9349951c438d91ce11acff13da4c2d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd1fa413f8b9ba30140de198e4f408ffbba6396864c7554e0867aa7363eb58b2
MD5 a9cb30ca8044d8775e57ce781950bd70
BLAKE2b-256 13b69273418774f5a9cda7f25a93d14d083c0af8f03f814780257264b5220a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f0e6a6c807fa887a0c51cc24fe7ea51bb9e496fe88f00d7930063372c3664c3
MD5 2c5a502078c1969aec1f79abc13bd514
BLAKE2b-256 9f3e50e2e44f2292cdb5eeb8e599a8a79aacc30a7bd84343c85e6983eaa1f68e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d4c2be9760b112b1caf649b4977b81b69893d75aa86caf4f0f398447be871f3c
MD5 075e0e7bd8fe1d00db07313fc0c87a3d
BLAKE2b-256 5ad5c5b3a4ca6c6da693551a85af38daba311dfc7e792a5c0320670066c089f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef801027629c5b511cf2ba13b9be29bfee36ae834b2d95d9877818479cdc99ea
MD5 146d6836c0e57acad62b9af541104cee
BLAKE2b-256 f50633ce5c8483ad04059ccf80335a25cf21d85241086761a7ac75f9d4824a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56816e43c92c2fa8c11dc2a686f0ca248bea7902f4a067fa6cbc77853b0f041e
MD5 dd30e822f1c0458868778421ea77dd40
BLAKE2b-256 3cb0082730a898389b56acdcff3c615907863ed58d1cba391aaa430087cfc953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76013fef1c9cd1cd00d55efde516c154aa169f2bf059b197c263a255ba8a9ddf
MD5 17589d5df4c07dc155b15c41e050589a
BLAKE2b-256 0019c756203185ec6a8c8ae3d2fb0cc9560dec8ef74c1d935934d448e9f58e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7acc03a4f1154ba2643edeb13658d08598fe6e490c3dd96a241b94f09801626
MD5 524ae39515414ad9b9ac03fd065e40b4
BLAKE2b-256 e92ff378ad5d6842d6f9eaca384e450d319f6208636eea855f68f298a7cd4c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c258dbacfff1224f13576147df16ce3c02024a0d792fd0323ac01bed5d3c545d
MD5 ea47d02557093c2959a9ad6675857710
BLAKE2b-256 84230643b3efa87f3715cd179fd8fbb626bebeb282785e2dd728bbe4eae376ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d18a9b9b858ee140c15c5bfcb3e66e47e2a70a03272c2e72adda2482f76a6ad
MD5 690aeac1f35a1fede93ff59c91404a28
BLAKE2b-256 06cf3a324db19429956def624fe4a60119dcac1e1cfa8048250f5ecefcc6171e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ed23b0e2dac6f84f44c8494fbceefe6eb5c35db5c1099f56ab78fc0d94ab3af
MD5 b3bb435fb3ad2b692b40f95ecee8d3b0
BLAKE2b-256 4f17eae7b0a289ca0e9bfde9394f3f709c6892c13d1f743ca981c0a3c49d50c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f9756f1d25454ba6a3c2f1ef8b7ddec23e5cdeae3dc3c3377243ae37a383db00
MD5 edef9c776a40b9d8b8f3d163dd8d98e7
BLAKE2b-256 0c0fc7d9b39a5c19215782efd54ed43195117a86025d6c3af22304d7e2d034fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d483793a384c550c2d12cb794ede294d303b42beff75f3b3081f57196660edaf
MD5 a468ca258bb814e11b96ea6b2c98251a
BLAKE2b-256 7d63e33d2af602efe9e7b66a14710817db7744527c92a07fe5d68436b25f5e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 061598cbc6abe2f382ab64c9caa83faa2f4c51256f732cdd890bcc6e63bfb67e
MD5 998207df3003dfbd3bea46fac73b286b
BLAKE2b-256 2ce1dad12b6b78b553ec7d44dd61b86c83a64f0d8bdc13c4eb728dd8cd5ff94c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2346450a075625c4d6166b40a013b605a38b6b6168ce2232b192a37fb200d588
MD5 1c072ea97baf882ffc8e43a22d4e813f
BLAKE2b-256 31ad451a9d2f4e612dbe50c77b47d529282c4b1df725c3d7ed31fe7be5176a3c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3071ec998cc3d7b4944377e5f1217c2c44b811fae16f9a495c7a1ce9b42fb038
MD5 54cef80137868c31ed6361d775f9e5ef
BLAKE2b-256 9174551a82068b12b419a34b391d80294956b8e3db976bd6a4ed126aa5f16f72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2831e05ce0a4df10c4ac5399ef50b9a621f90894c2a4d2945dc5658765514ed
MD5 0de721f3c163576ec880fb8a374ad8e0
BLAKE2b-256 7c1894196015b0088920011d6b1a7340aba5cee82c506cb2d0516fc27b60494a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1de3c6faf948f3edd4e738abdb4b76572b4f4fdfc1fed4dad02427e70c5a6219
MD5 7b4932be61159d1132cffff24b632a80
BLAKE2b-256 fc8f6aaeb1bbfb4620a0abd76e444be3d497aa2e3ab288f4b0648409983e5d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 547dc5d7f834b1deefda51aedb11a7af9c51c45e689e44e14aa85d44147c7657
MD5 f625bddcff2f388ba5ba8e24d2291441
BLAKE2b-256 d95a9f1c2a8f5ae763f9f0c70b1efb772430361a90f3252cbe60b26d05db6ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff62ba8ff70f01ab4fe0ae36b2cb0b5d1f42e73dfc81ddf0758cd9f77331ad25
MD5 a75ba4728247fcd03218b8c5bd7e20df
BLAKE2b-256 07a0386c0a87ac879d0d12dc7c8dd578650f93a6a98d063f71dcea33a7a1ab4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b7b1a83ce514700276a46af3d9e481ec381f05b64939effc9065afe18456a6b9
MD5 9fba3ded8012f1d73b88bcb38b2d9daa
BLAKE2b-256 f24fe71761b878fcef934060bef8f0f3cc8b390288cfb9472439990f10bb6ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33bb16a07d3cc4e0aea37b242097cd5f7a156312012455c2fa8ca396953b11c4
MD5 17f5b7ed326dfddce0d72c17ce8f6a2e
BLAKE2b-256 86adf84a4590bd9e4d1e281dcadf97c43f8029df2bf0a4057a08354128de1058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 144a31391a39a390efce0c5ebcaf4bf112114af4384c90163f402cec5ede476b
MD5 fe2bedf707c43423ac0a3fa980708333
BLAKE2b-256 751230fe53a6ffddc2192dac395e8881ffebe0cb8dd31a1b6905f30a9e24c145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30b2c9caf3e55c2e323565d1f3b7e7881ab87db16997dc0cbca7c52885ed2347
MD5 230ec1e30eb5e388a42bcf3cc320ad91
BLAKE2b-256 98a0577a2bfee61884efda92ccc12a9afe157de68e5d3f8c46b157e3bed1a7bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a710c184ba845afb05a6f876edac8f27783ba70e52d5eaf939f121fc13b2f59
MD5 6708f8e50322637037ca008e3813f064
BLAKE2b-256 c2d7733b958aee489b28bc3c357fe56d4c7ea9a49a362a06089ac7b17d4d75f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b287e814a01deddb59b88549c1e0c87cefacd798d4afc0c8bd6042d1c3d48aa
MD5 b179525d71c34c85ebf7e05637316f08
BLAKE2b-256 341e67d3dcdcd1f648549b5113fc5fc32e74ba5c70843b2ef2f87e2e0640399c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 026a24a36394dc8930cbcb1d19d5eb35205ef3c838a7e619e04bd170713972e7
MD5 dbbd40b64e39b1b8f009c6efb0696951
BLAKE2b-256 9e56068074cc0f5fdd4647ff3b22e6cfa03c008c6ce53ab4f9b634f7eb999889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a7f02a58a0c2912734105e05dedbee4f7507e6f1bd132ebad520be0b11d46fd
MD5 2c73525ae25d5026f819a75bc0f921a7
BLAKE2b-256 50285c44139d2c98922368007a3156312944a8582e40c927e763f3f4125f25ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 77e0df59b1a4994ad30c6d746992ae887f9756a43fc25dec2db515d94cf0222d
MD5 2523f9c63752c866b112af27dcb3d535
BLAKE2b-256 dc0759ab56f59f0e0b6c90459d1dfb3f0ff835683dc52fd2a054373409e221b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 13552ca505366df74e3e2f0a4f27c363928f3dff0eef9f281eb81af7f29bc3c5
MD5 64c5886173554d93123342bc012dac8a
BLAKE2b-256 7870bb3b23b0481e9e386102a639b809b6f21571540930b7e884acd57681aee4

See more details on using hashes here.

File details

Details for the file pymongo-4.6.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6dcc95f4bb9ed793714b43f4f23a7b0c57e4ef47414162297d6f650213512c19
MD5 6a24d6e5059e8a53c3494ffaa04b073d
BLAKE2b-256 fbf6e9babb9ade67b69559cd8dbfc77284e96a93ba2b05a183e1ca14a48ae7d3

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