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

This version

4.6.0

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pymongo-4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (691.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pymongo-4.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (681.2 kB view details)

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

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

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymongo-4.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (669.2 kB view details)

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

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

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pymongo-4.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (689.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pymongo-4.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10

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

Uploaded CPython 3.10

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

Uploaded CPython 3.10

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

Uploaded CPython 3.10

pymongo-4.6.0-cp310-cp310-manylinux2014_aarch64.whl (695.2 kB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10

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

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (688.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (684.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (654.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (663.5 kB view details)

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

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

Uploaded CPython 3.9

pymongo-4.6.0-cp39-cp39-manylinux2014_s390x.whl (699.8 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

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

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

Uploaded CPython 3.8Windows x86-64

pymongo-4.6.0-cp38-cp38-win32.whl (466.3 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-4.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (693.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pymongo-4.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (699.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pymongo-4.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (701.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

pymongo-4.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (688.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pymongo-4.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (678.3 kB view details)

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

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pymongo-4.6.0-cp38-cp38-macosx_11_0_universal2.whl (535.4 kB view details)

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

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

pymongo-4.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (658.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pymongo-4.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (665.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pymongo-4.6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (671.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

pymongo-4.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (658.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pymongo-4.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (647.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pymongo-4.6.0-cp37-cp37m-manylinux2014_ppc64le.whl (689.4 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.0.tar.gz
Algorithm Hash digest
SHA256 fb1c56d891f9e34303c451998ef62ba52659648bb0d75b03c5e4ac223a3342c2
MD5 33340294f5107f6d7252ee1caded1008
BLAKE2b-256 b45e11fad226acae56ef8cfee205bf491f4d50f9c12c5bf3294680006d04de54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 014e7049dd019a6663747ca7dae328943e14f7261f7c1381045dfc26a04fa330
MD5 83131e335e3d641320ffb3c4acb06971
BLAKE2b-256 c56a7a356bbe85aceee14299af5fa8947bfb8c55fb131476220c3627891a6258

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 47aa128be2e66abd9d1a9b0437c62499d812d291f17b55185cb4aa33a5f710a4
MD5 bc8f45bfd0d8cd56bf397c9d434ab747
BLAKE2b-256 e2e744f649615355878067f33453a594a4193518349d47e0e990abb0d506d564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d2be5c9c3488fa8a70f83ed925940f488eac2837a996708d98a0e54a861f212
MD5 32ed7bd7b39ddb81dac26c625dd679fb
BLAKE2b-256 8381e08a170fcf20ba6f2d21865f247d368c717d070f508963517a56c798a3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecd9e1fa97aa11bf67472220285775fa15e896da108f425e55d23d7540a712ce
MD5 bf96277b3207b82e6d699978b5932d3c
BLAKE2b-256 bb9152a1b0a5b203aa7651c92dc62a561432bde2fef7db28c9c0f8155e11bbb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49f2af6cf82509b15093ce3569229e0d53c90ad8ae2eef940652d4cf1f81e045
MD5 258025e96f09a0421f609f9ceed5a5b6
BLAKE2b-256 371abcf9bcf8191f913a845e7dea211d00a614bc263300c88e49c5d5389b04e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79f41576b3022c2fe9780ae3e44202b2438128a25284a8ddfa038f0785d87019
MD5 375b9009f7e8a68ad8466091f1c17be4
BLAKE2b-256 f600631bed6b95bf666173d454a201e808c178eabd13085cba02e0bea67daf67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ab6bcc8e424e07c1d4ba6df96f7fb963bcb48f590b9456de9ebd03b88084fe8
MD5 e4653a161f1b62ad24b365ec7ea386bf
BLAKE2b-256 62eb4feb857b0ae14db129dc4b5f5fc5b9571f555652a272cec8d69fd310b495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d603edea1ff7408638b2504905c032193b7dcee7af269802dbb35bc8c3310ed5
MD5 cb28ab1e67694adfb26e64fa8380b452
BLAKE2b-256 ccd38e1475d40c0fa939b367eb2c8099479227dcc6d28f308f56d9033df65804

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6695d7136a435c1305b261a9ddb9b3ecec9863e05aab3935b96038145fd3a977
MD5 4b4936b4d39e3f51fcf1687693be30de
BLAKE2b-256 5016d5b3e2d5d23e81bfd0a1bc04a038f7075992ebffa361f789880a155a2c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7fc2bb8a74dcfcdd32f89528e38dcbf70a3a6594963d60dc9595e3b35b66e414
MD5 7d7bc9c23ceb293fe022b275c3fe9630
BLAKE2b-256 c6c1da0920b6bb4791300ab9e88cfcfa9dcb3f8062fff808bb2d12b514dec817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ec6c20385c5a58e16b1ea60c5e4993ea060540671d7d12664f385f2fb32fe79
MD5 eee1a6a96f9530f2ef71d2cc33fd4919
BLAKE2b-256 24cbc1824d7c5946c7750a4ce3e2b118b03b88975915f1d060f1f3ec5d9f49d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ec71ac633b126c0775ed4604ca8f56c3540f5c21a1220639f299e7a544b55f9
MD5 4bf428b4b8a52ab18e393b113df1666f
BLAKE2b-256 35e4da05c4f7546b6ecfb0e304e5c415b912f43adc4b9d3a55e51f4b4d044c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af425f323fce1b07755edd783581e7283557296946212f5b1a934441718e7528
MD5 7a55bc178f5b8e905a0b3c15ac1ddcef
BLAKE2b-256 3474e7dcb3ebe651a7da357124f8d21103a99f443531fb932ceb16fc52d3f49a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2973f113e079fb98515722cd728e1820282721ec9fd52830e4b73cabdbf1eb28
MD5 9f52a3a6a2aaa550e8ac657faba97e42
BLAKE2b-256 7eb2630ec44e106fd3bc8ca3f67449aa1dac6b779797859562f8f996ab4f4b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85f2cdc400ee87f5952ebf2a117488f2525a3fb2e23863a8efe3e4ee9e54e4d1
MD5 0505cc91ea6f2ed0c4eb049beadc425e
BLAKE2b-256 77a177118a49d6e7be68e7aafe8701d8c1e0001b474a826e34edd381cea7f0d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ba51129fcc510824b6ca6e2ce1c27e3e4d048b6e35d3ae6f7e517bed1b8b25ce
MD5 85852432879719181ecfed4a2d652e6e
BLAKE2b-256 a73c9f1ad55fbaccf111fc2c3c7309c67035c4dbaed47af92dec3a78d16fe17d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8adf014f2779992eba3b513e060d06f075f0ab2fb3ad956f413a102312f65cdf
MD5 f2ad16a37fd01c6ab9ed96b112883662
BLAKE2b-256 5a89d70748baeb316eeb2cd464ee33354b9ce4346787388eb9e23b284daf6500

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b14dd73f595199f4275bed4fb509277470d9b9059310537e3b3daba12b30c157
MD5 644e07c8d59cd17055528c8f46aaa833
BLAKE2b-256 696e29b29aa6db66183eea3450a4c06b1854af08d04acb1776a5e4798f6dc158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3077a31633beef77d057c6523f5de7271ddef7bde5e019285b00c0cc9cac1e3
MD5 9da113f8bb6cb497014a9ca1a2c604f7
BLAKE2b-256 5e976fc527b749f4af354042c43b7032d0734923be2dad6c8ffdd28b469b8e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 128b1485753106c54af481789cdfea12b90a228afca0b11fb3828309a907e10e
MD5 0597342a02cb6d9366b860b28abce060
BLAKE2b-256 f1608ee2501067426f611279c8267359f16fc6f28b890eea48c7b3cb308c383f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8f7f9feecae53fa18d6a3ea7c75f9e9a1d4d20e5c3f9ce3fba83f07bcc4eee2
MD5 4cc75c668b12e27ac34eac2f5984d007
BLAKE2b-256 03d5a525dbb69daf78239c19ad5415a27f67994a2700aaf936201b88bdbbf704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5717a308a703dda2886a5796a07489c698b442f5e409cf7dc2ac93de8d61d764
MD5 2a1e4f6a94cb90ea9eac1e4d09a61c09
BLAKE2b-256 289b998101ee984a63a5ba973eeecb5e9a013fd03c2f0c82220eba2754dd7426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebf02c32afa6b67e5861a27183dd98ed88419a94a2ab843cc145fb0bafcc5b28
MD5 0722074ee66b8faab5a8f08918f0d292
BLAKE2b-256 89a80d32e276c755c4de66c965b1b1db9cfea1bde5dfe70fca0204c284e2381f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4ad70d7cac4ca0c7b31444a0148bd3af01a2662fa12b1ad6f57cd4a04e21766
MD5 299b97a273bd92f592191a99f5304a69
BLAKE2b-256 55355193729f4fbc4f31207f39994e86d448349f9c76f4888b396545285f7f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 256c503a75bd71cf7fb9ebf889e7e222d49c6036a48aad5a619f98a0adf0e0d7
MD5 0552dcd4be0c6436506c56342d168f5a
BLAKE2b-256 7f49a50718f3fa8ae8b55c29dc34470c001b50f81ded95209ff6649b880b3536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b0f98481ad5dc4cb430a60bbb8869f05505283b9ae1c62bdb65eb5e020ee8e3
MD5 35d68d38d146184d4179aae4479242f8
BLAKE2b-256 6c741a93fd93ce20f3692925e3726331bb4407d27ad191989940d67b21bff661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0be99b599da95b7a90a918dd927b20c434bea5e1c9b3efc6a3c6cd67c23f813
MD5 2c99298cd39cea39d57ae5ab513f7f28
BLAKE2b-256 0ba2fac08405fa1e1251876ba0930200136fa6ea64ad523ed06aaf6f3d53e8f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2972dd1f1285866aba027eff2f4a2bbf8aa98563c2ced14cb34ee5602b36afdf
MD5 ae891c39865e0406364bead792f27914
BLAKE2b-256 b9bce9f5851974753698fb9c157a5bf96ef1320463d42d005fcdae3c63e9bce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e63146dbdb1eac207464f6e0cfcdb640c9c5ff0f57b754fa96fe252314a1dc6
MD5 df9a5fa72e410b46264d9698b2c9f341
BLAKE2b-256 e9a4af20aabc70d0c290ce95fea0e27f1ce9046961b243ccbc1e45ddb1e131bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c011bd5ad03cc096f99ffcfdd18a1817354132c1331bed7a837a25226659845f
MD5 a2bc5af5b172b940ff9e659121d7853a
BLAKE2b-256 9556a2099d9a0fe2bcbc678a435c924de2ccfc4169528893fccf782abe8fd341

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 107a234dc55affc5802acb3b6d83cbb8c87355b38a9457fcd8806bdeb8bce161
MD5 064d510cc583a761448415803bae502a
BLAKE2b-256 601494e45dd53d5e23b5f06f960e8eb9d2821bd66d73aef032c40193a23f13c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a09bfb51953930e7e838972ddf646c5d5f984992a66d79da6ba7f6a8d8a890cd
MD5 67fe9e5ab6a84e95a09e8caa5004dca9
BLAKE2b-256 f03d2955238d8250779c4bf3621cbdcb82517fb23ec9a2baf24b9c810c487006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef67fedd863ffffd4adfd46d9d992b0f929c7f61a8307366d664d93517f2c78e
MD5 a1be731a304ff70ae1f7ed4178388f13
BLAKE2b-256 decfe9ce043417f309cdb82d84dda363111aa252e32ec0e7c28f93ee532b0363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d16a534da0e39785687b7295e2fcf9a339f4a20689024983d11afaa4657f8507
MD5 fff20ad7631e6dd12e55b260a8b5fb69
BLAKE2b-256 c52cc90b4b82bec2e871c2e887ab983df9c149a1e93e0e026c1d8ee45bef7b27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f28ae33dc5a0b9cee06e95fd420e42155d83271ab75964baf747ce959cac5f52
MD5 d9337c8c88099a8b8128c6d657ab79ec
BLAKE2b-256 7cadc71273f95550d8b59b1d6aa9c31a968bb9b128bb66e785f5e1ca1ee5007a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bafea6061d63059d8bc2ffc545e2f049221c8a4457d236c5cd6a66678673eab
MD5 145f2559831c53ea5c7e0b034816d73e
BLAKE2b-256 b47b14e55c74694b0abb4fdc9f18104cc79512172292dc4e80bbb5ab0a84d668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e5e193f89f4f8c1fe273f9a6e6df915092c9f2af6db2d1afb8bd53855025c11f
MD5 b9eab613e19c8c239d70fc898e1e2e18
BLAKE2b-256 4dd01e668020cb21f5c15ad3c6ae9755eb20ef7336e526f76a81a7a89c63fe0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c63e3a2e8fb815c4b1f738c284a4579897e37c3cfd95fdb199229a1ccfb638a
MD5 ff39560ed6ab70d1df6b0531fc773904
BLAKE2b-256 08df724a51039810e7e437f8ae9d3fb484977d8513483fbf2215b05ed47437b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05c30fd35cc97f14f354916b45feea535d59060ef867446b5c3c7f9b609dd5dc
MD5 efd4425c61ff8c7d03cf52ba10b2ccce
BLAKE2b-256 e17da19ec2c7d1bb9090c1052062e7de90508031026123aa4275ae3fea0d8754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2703a9f8f5767986b4f51c259ff452cc837c5a83c8ed5f5361f6e49933743b2f
MD5 d98aa0fdfe9617909a2a3940b00f0009
BLAKE2b-256 e3522e73dc8c26f89a9a24a51b7e700252f302a499aa4e83a00ecc8934e6e7e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad4f66fbb893b55f96f03020e67dcab49ffde0177c6565ccf9dec4fdf974eb61
MD5 98a16d86fed7b45827bfa9814ca30af8
BLAKE2b-256 11e85bc11eb7c32328deb010ca3b5fa3cbdff44c9a220f92f8a8d0d900c02a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0634994b026336195778e5693583c060418d4ab453eff21530422690a97e1ee8
MD5 1e469fad2f1e98715139fc1d2d3a4948
BLAKE2b-256 06dd6127762f0e1a32f411daf7219352b0cc14968224c99f41d72b0228597f71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21812453354b151200034750cd30b0140e82ec2a01fd4357390f67714a1bfbde
MD5 8b8dfdbad1da61d724b6b04d79237f97
BLAKE2b-256 d13b4513e077aea0114f2548942295655722ddc14fe5d743def62e7c2d6f6c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc94f9fea17a5af8cf1a343597711a26b0117c0b812550d99934acb89d526ed2
MD5 3f929b2fd1c8e3ee9721f69360051009
BLAKE2b-256 47ebd9a32f59e26b4146e29c8134f305c7eae3c7b51f5c8525f427fddb97980c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 325701ae7b56daa5b0692305b7cb505ca50f80a1288abb32ff420a8a209b01ca
MD5 ac5450704a9e0c455b568de952eab473
BLAKE2b-256 501099e99377b08273b6e26de3998312cca019ed9a2e9215c0d600796c060d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e16ade71c93f6814d095d25cd6d28a90d63511ea396bd96e9ffcb886b278baaa
MD5 4001bafd22e7438f85bcd3fada43d8f6
BLAKE2b-256 33ec1d9d930429f1515c4af041526384e5a7656d035f34a4bda1811bd4beebf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a8273e1abbcff1d7d29cbbb1ea7e57d38be72f1af3c597c854168508b91516c2
MD5 531879c30ab1693af3e70b1507a70755
BLAKE2b-256 b23c9877560f57a7d1839cd74a06f0ecb5ab2812283b8f88339bffc4e2b116a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1394c4737b325166a65ae7c145af1ebdb9fb153ebedd37cf91d676313e4a67b8
MD5 bd17ea69af3f4c50d2138be7d11fcf71
BLAKE2b-256 a6fdf7214e5d751ed1fffa668acb1d4b74139cc5c6d282e42b3f3ea8a5331754

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 806e094e9e85d8badc978af8c95b69c556077f11844655cb8cd2d1758769e521
MD5 f3e706770e9265411dda3d0051bf3a33
BLAKE2b-256 5c81d812def5735185178ef675a9178830bee19eb215f427cacf810b3eeb1304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3db7d833a7c38c317dc95b54e27f1d27012e031b45a7c24e360b53197d5f6e7
MD5 9975cb4e4b997f782ade5373bf00dfd8
BLAKE2b-256 37d82a36ae6e5a2ca6ee0ab1c259860807c1b0046fb09f127c7f855eaa217623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb438a8bf6b695bf50d57e6a059ff09652a07968b2041178b3744ea785fcef9b
MD5 715624ec088edf36fb16f04ad502d749
BLAKE2b-256 062446f1fe8a86ea57edc959fada9d451a622f0ea6f0c2028a0550993c1b3e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b80a4ee19b3442c57c38afa978adca546521a8822d663310b63ae2a7d7b13f3a
MD5 d9e9f9a38eeb4af4c0ea2e220a2129f8
BLAKE2b-256 89ee4f091e6459dd1744cce7d31a787716dbc1f92adb09f69268a7658adb097d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 518c90bdd6e842c446d01a766b9136fec5ec6cc94f3b8c3f8b4a332786ee6b64
MD5 f85912660d29a7a6dca67763de5ce11c
BLAKE2b-256 9ca35332137c391e4c290a49d764a17af12e1b6dce1f050baa6e5b82a4624c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7b0e6361754ac596cd16bfc6ed49f69ffcd9b60b7bc4bcd3ea65c6a83475e4ff
MD5 efabe1c4f44e3b3f1b7630519aaaba81
BLAKE2b-256 5b65574534f1d89f9500cb30f338ad4f18f3fb6a9e488d910a308948887346f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39a1cd5d383b37285641d5a7a86be85274466ae336a61b51117155936529f9b3
MD5 da085ba30d70e423323694a5af932c10
BLAKE2b-256 0fcf47df0eef18ecb6e1ac426e6b7a273d77236f166afacc5d8c36b34705fb31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3729b8db02063da50eeb3db88a27670d85953afb9a7f14c213ac9e3dca93034b
MD5 e59437c732ffbfdd4bb2fa785f8871bf
BLAKE2b-256 7c71aca165b8096ab26d0ed7be53d7c59b6e942c0a778949540216c5d5561542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddef295aaf80cefb0c1606f1995899efcb17edc6b327eb6589e234e614b87756
MD5 78050124a70c629f365478bf26e5555e
BLAKE2b-256 f01f39e7616a07f682e39a144fa31e59dbe6291a88bbe4d2f6324af5a1ea515e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4dc1319d0c162919ee7f4ee6face076becae2abbd351cc14f1fe70af5fb20d9
MD5 e686b9c185f611287d5064c8057ae125
BLAKE2b-256 2cf7fadb03eb3e27346f88221374696339d07f899f44f44a855d23e0510e7cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10a379fb60f1b2406ae57b8899bacfe20567918c8e9d2d545e1b93628fcf2050
MD5 9ea53c4e91af644187c2cee3b6d7b20a
BLAKE2b-256 e3ad08558895e438483aa5e61ff534dc8a215ddfe2c2c8e43146fdc3d50f83f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ca0ba501898b2ec31e6c3acf90c31910944f01d454ad8e489213a156ccf1bda
MD5 4e3c081a8e41bb1ac57212d90dc57905
BLAKE2b-256 ff2620a80e477a8ecb8f8dea622c87a0b1c17b2bd9398bfb24250efd36128fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe03bf25fae4b95d8afe40004a321df644400fdcba4c8e5e1a19c1085b740888
MD5 75fd74088a8e3d175224845dae8aae7e
BLAKE2b-256 475ccf9d4bce29272bf6829be17972124a36eae3efe2a8bd82916167ba9b60e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ccd785fafa1c931deff6a7116e9a0d402d59fabe51644b0d0c268295ff847b25
MD5 ac2175eefea047e92d117464b0d68fed
BLAKE2b-256 b8e4cd6e15e1bb5b3044d77cfe4fe61f4f17d6b364fabbda5d0cbe9f618b66e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5802acc012bbb4bce4dff92973dff76482f30ef35dd4cb8ab5b0e06aa8f08c80
MD5 d227c63b8c4331f22c0bac403a429d7a
BLAKE2b-256 fbc834293fc9f36918e1e37cf74027ae4b3e3ed3d7685f9d9fe635c7d00921ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 2f8c04277d879146eacda920476e93d520eff8bec6c022ac108cfa6280d84348
MD5 661413f94101a08acef998c936afeca0
BLAKE2b-256 6d191de1148cafca6f224c82a8203eaacddef9688faef6253c92f2608727039d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 81dd1308bd5630d2bb5980f00aa163b986b133f1e9ed66c66ce2a5bc3572e891
MD5 0a4bdee8efec8da2dfbb4d33502a5619
BLAKE2b-256 784eda01b5c5a50cb811118c369fa070e8fdd248281b336fe3e209c12741a0a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.6.0-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.3

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 09c7de516b08c57647176b9fc21d929d628e35bcebc7422220c89ae40b62126a
MD5 606ba87eebc01efd0f97349b989edf91
BLAKE2b-256 1ebbcd6dbac7ae8361b47660fd5509589f22d92fb2c5af65548f4a8211ad467e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a0269811661ba93c472c8a60ea82640e838c2eb148d252720a09b5123f2c2fe
MD5 2bc0bb70740aad597e9151a58d737c83
BLAKE2b-256 1fb5bdef4f9b1918519112eed664e8a481ab144222dbba18bbbbf9c8eae44b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9bea9138b0fc6e2218147e9c6ce1ff76ff8e29dc00bb1b64842bd1ca107aee9f
MD5 0038270d005314d5194d98025cdb0278
BLAKE2b-256 f9027d226bc35a465df902dfb1bf46784a02f630bcaeade981aae77e944e4d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e4ed21029d80c4f62605ab16398fe1ce093fff4b5f22d114055e7d9fbc4adb0
MD5 cdae36044ead4754df7f5b61c832a126
BLAKE2b-256 a293ca259196c7fbb05f87dde3a68da99a874f590ebcb560c85ea6be5e08f133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db082f728160369d9a6ed2e722438291558fc15ce06d0a7d696a8dad735c236b
MD5 86454686118ec0acd6d660dee9159660
BLAKE2b-256 75ab42ac7cb402fda2b10d1cacb36be26678aa6ea451c53e0ef81aecc400f160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a49aca4d961823b2846b739380c847e8964ff7ae0f0a683992b9d926054f0d6d
MD5 beb8512de6884af73a00dcc516ef70c6
BLAKE2b-256 6d10a0b23244507d2f3569cf3ba31e3fa22a88fa0984c74a7409f77909183e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e3b0127b260d4abae7b62203c4c7ef0874c901b55155692353db19de4b18bc4
MD5 aae89c5baaecb2e460a5fd43ed822948
BLAKE2b-256 f098c036233e9babc2bf87461ac7b2989d3557bb600996855c8d61e045a9875d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d6a1b1361f118e7fefa17ae3114e77f10ee1b228b20d50c47c9f351346180c8
MD5 5fe12f0d68fac08ac65beda1378adf06
BLAKE2b-256 29bd659454b2a1a78ba94fc47b3e7d5e5ba74e1896a602d2d3b9ce1c38da3917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3919708594b86d0f5cdc713eb6fccd3f9b9532af09ea7a5d843c933825ef56c4
MD5 1d74f8b7f5ff1bbab21e23e812817fff
BLAKE2b-256 873cd97623ef457d56a06625dd625395321a741f78aecb7874d28f4f82d6a237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 680fa0fc719e1a3dcb81130858368f51d83667d431924d0bcf249644bce8f303
MD5 cc7e1019202582ecb2e0bf9ecbe09700
BLAKE2b-256 a8d0a83a48fe8b4007361b4f01a031617c4d234c8f7ba2eff1d6c2c25fff5c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b18276f14b4b6d92e707ab6db19b938e112bd2f1dc3f9f1a628df58e4fd3f0d
MD5 579b911dfc729728b7717c5fe9d35225
BLAKE2b-256 24b8b896d967982da551a4d43847c2ad850c1b62bb83e7ee8e6c9e03e88a2f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82e620842e12e8cb4050d2643a81c8149361cd82c0a920fa5a15dc4ca8a4000f
MD5 6cf0dc98cb296e9628004bc2fc697425
BLAKE2b-256 1ad21f81709e0694fce984312e9aff7d39f04433940ac1630c2d83666ce03863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 055f5c266e2767a88bb585d01137d9c7f778b0195d3dbf4a487ef0638be9b651
MD5 314f9cf93d422dc1ef82d9189291d774
BLAKE2b-256 680914608ee0ddf47841127845b1ee20a0fbde2e743f42014be43c74c9a70325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 747c84f4e690fbe6999c90ac97246c95d31460d890510e4a3fa61b7d2b87aa34
MD5 96b716c8baf6d09b2d7a9ccff9ce5d3c
BLAKE2b-256 b0be97c0863129bb03d7af86075e9d8f3240c0a45a29b982f7e8c6262c2d6c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 288c21ab9531b037f7efa4e467b33176bc73a0c27223c141b822ab4a0e66ff2a
MD5 be0bd81ac179f786f32125b950f8b02c
BLAKE2b-256 f3d357a810740e6c7480ea29c7aa3989c2beda34aed399667290698a53cb0ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e24025625bad66895b1bc3ae1647f48f0a92dd014108fb1be404c77f0b69ca67
MD5 aaff02cafe462cce5d8adc06d1cf81ec
BLAKE2b-256 0fbe0ae20cf2bdd013d640b3945237981e618118ec9e4f50a33f9f8f7f70642d

See more details on using hashes here.

Supported by

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