Skip to main content

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

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads API Documentation Status

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, 7.0, and 8.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

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; running "pip install bson" installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 3.8+ and PyPy3.9+.

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) hatch

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 pip install hatch; hatch run doc:build. Generated documentation can be found in the doc/build/html/ directory.

Learning Resources

Testing

The easiest way to run the tests is to run hatch run test:test* in the root of the distribution. For example,

pip install hatch
hatch run test:test

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymongo-4.9.1-cp313-cp313-win_amd64.whl (973.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongo-4.9.1-cp313-cp313-win32.whl (945.4 kB view details)

Uploaded CPython 3.13Windows x86

pymongo-4.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pymongo-4.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pymongo-4.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pymongo-4.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pymongo-4.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

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

pymongo-4.9.1-cp313-cp313-macosx_11_0_arm64.whl (993.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongo-4.9.1-cp313-cp313-macosx_10_13_x86_64.whl (993.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymongo-4.9.1-cp312-cp312-win_amd64.whl (923.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongo-4.9.1-cp312-cp312-win32.whl (899.7 kB view details)

Uploaded CPython 3.12Windows x86

pymongo-4.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pymongo-4.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pymongo-4.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pymongo-4.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pymongo-4.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

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

pymongo-4.9.1-cp312-cp312-macosx_11_0_arm64.whl (939.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongo-4.9.1-cp312-cp312-macosx_10_13_x86_64.whl (940.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymongo-4.9.1-cp311-cp311-win_amd64.whl (873.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongo-4.9.1-cp311-cp311-win32.whl (854.0 kB view details)

Uploaded CPython 3.11Windows x86

pymongo-4.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymongo-4.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pymongo-4.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pymongo-4.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymongo-4.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

pymongo-4.9.1-cp311-cp311-macosx_11_0_arm64.whl (886.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongo-4.9.1-cp311-cp311-macosx_10_9_x86_64.whl (886.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongo-4.9.1-cp310-cp310-win_amd64.whl (823.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongo-4.9.1-cp310-cp310-win32.whl (809.0 kB view details)

Uploaded CPython 3.10Windows x86

pymongo-4.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pymongo-4.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pymongo-4.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pymongo-4.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymongo-4.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

pymongo-4.9.1-cp310-cp310-macosx_11_0_arm64.whl (832.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongo-4.9.1-cp310-cp310-macosx_10_9_x86_64.whl (832.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymongo-4.9.1-cp39-cp39-win_amd64.whl (773.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongo-4.9.1-cp39-cp39-win32.whl (764.0 kB view details)

Uploaded CPython 3.9Windows x86

pymongo-4.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymongo-4.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pymongo-4.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pymongo-4.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymongo-4.9.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

pymongo-4.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pymongo-4.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

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

pymongo-4.9.1-cp39-cp39-macosx_11_0_arm64.whl (778.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymongo-4.9.1-cp39-cp39-macosx_10_9_x86_64.whl (778.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pymongo-4.9.1-cp38-cp38-win_amd64.whl (724.1 kB view details)

Uploaded CPython 3.8Windows x86-64

pymongo-4.9.1-cp38-cp38-win32.whl (719.1 kB view details)

Uploaded CPython 3.8Windows x86

pymongo-4.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (926.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pymongo-4.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (935.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pymongo-4.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (941.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pymongo-4.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (925.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pymongo-4.9.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (925.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

pymongo-4.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (917.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pymongo-4.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (916.4 kB view details)

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

pymongo-4.9.1-cp38-cp38-macosx_11_0_arm64.whl (724.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pymongo-4.9.1-cp38-cp38-macosx_10_9_x86_64.whl (724.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.9.1.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1.tar.gz
Algorithm Hash digest
SHA256 b7f2d34390acf60e229c30037d1473fcf69f4536cd7f48f6f78c0c931c61c505
MD5 e7bd95a2d1e4466079d83665e493285d
BLAKE2b-256 b55730d4761272191d9547f7f9f1b83fdf9c08e52f5ff01c193cad9b2e9038ff

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.9.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 973.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1dfd2aa30174d36a3ef1dae4ee4c89710c2d65cac52ce6e13f17c710edbd61cf
MD5 f4233fd24d9eaa2afc52f38e43163850
BLAKE2b-256 5303d687f6384e834bdaa376cfb6f3dc300aafd04029baa90afc2329efb1f038

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymongo-4.9.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 945.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 95418e334629440f70fe5ceeefc6cbbd50defb566901c8d68179ffbaec8d5f01
MD5 0f5d7e510b77b7aaee71c1d0d4d97fe7
BLAKE2b-256 82924a6f9391f85f7ccb6cba03ff280f49f1cc87f2303e26efc91c5d3f0b9c4c

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d476d91a5c9e6c37bc8ec3fb294e1c01d95736ccf01a59bb1540fe2f710f826e
MD5 e028aa4ca20f7f2d3b1414fda29dfe42
BLAKE2b-256 c7c2eb4868f3dfe3ec64afca960f47f9c616341e50269c746c978e0a0a057fc2

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a846423c4535428f69a90a1451df3718bc59f0c4ab685b9e96d3071951e0be4
MD5 f48e125eb5c0b2451aadb525c219d40b
BLAKE2b-256 76efbf0c3793fd08e30b133a10b4702ab13c1e365265e5b385a20c5e34757fad

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91b1a92214c3912af5467f77c2f6435cd76f6de64c70cba7bb4ee43eba7f459e
MD5 d2b80e42a6e0ee39e356405be605420d
BLAKE2b-256 5bfd456f6128eabd857cbd606a89b39c95fdac24f93a1f3518062890146d38d1

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f23a046531030318622414f21198e232cf93c5640da9a80b45596a059c8cc090
MD5 86749688a2587fa802b23e962283a66c
BLAKE2b-256 ea87a37c4a74baef08c5ac813ab29e778992c562634357b0f59374482951ba92

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 172d8ba0f567e351a18765db23dab7dbcfdffd91a8788d90d46b350f80a40781
MD5 6d72f07fe744c50c247840236156420f
BLAKE2b-256 73f79fb4be6fa514c40fea4cdb7b92e0ff341e5ef33a2a2ef869514a4cca1107

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75d5974f874acdb2f125bdbe785045b23a39ecce1d3143dd5712800c7b6d25eb
MD5 64c18ca74941e4e3b99d857e3274b6cf
BLAKE2b-256 96d2a3563fc690942d152eb44e9e70aa8cae02ceec658e6e2ba881e80ba1b001

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a40ea8bc9cffb61c5c9c426c430d22235e085e610ee81ae075ddf51f12f76236
MD5 be97fa0edd96975fbffef779c0b5d827
BLAKE2b-256 5589902ab339b3559ea2978526daf266d421961d23fabd31c25904f531a60198

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 923.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2b12c74cfd90147babb77f9728646bcedfdbd2bd2a5b4130a00e3a0af1a3d34
MD5 ff859d89d552b1f73fb41816343eaa7a
BLAKE2b-256 41117d8bc3ae677cf50fc0fda680a81d8827b8b10d75a9d16b97672c9d3c6e8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 899.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e1f346811d4a2369f88ab7a6f886fa9c3bbc9ed4e4f4a3becca8717a73d465cb
MD5 efcf4acf9f1193ff43c5bc2f8a8955cd
BLAKE2b-256 cfc239788de79a69428f2d95a7cc3a1db92a019f9133f994fce5323d3b064d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4327c0d9bd616b8289691360f2d4a09a72fe35479795832eae0d4ff78af53923
MD5 84c776127787f0cc7f9d81658ef94e4b
BLAKE2b-256 e6a8e00bef1aa311907de4f752c35164160aee4b1dca09746531c4ae96ff595c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08fbab69f3fb6f8088c81f4c4a8abd84a99c132034f5e27e47f894bbcb6bf439
MD5 fba5c338468b8458ba7a799aa554fca5
BLAKE2b-256 ba4a845b110c4502035542595d6c41e318d263e8320678a941b452cd73c19409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f962d74201c772555f7a78792fed820a5ea76db5c7ee6cf43748e411b44e430
MD5 dfb5f729eb61d520a2401b888e60888c
BLAKE2b-256 3216426ffcc05de13adbab626d6f826f0ace6065695d82208fc459978495fb46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7689da1d1b444284e4ea9ab2eb64a15307b6b795918c0f3cd7774dd1d8a7556
MD5 159ae2228e91ab0ca44ca42e2b10724d
BLAKE2b-256 f4ce26b69271ceb4542cba69989a9cc5e80c2f0df58331c21bf0117452deddb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34e4993ae78be56f9e27a141168a1ab78253576fa3e893fa335a719ce204c3ef
MD5 1d3bec87f811d6c5b1472b14cfa66e1f
BLAKE2b-256 c9a2222cdf3decfb6474f6585cd7b38ab391f8583ac0f64ae425022c6e7ec409

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbb1c7dfcf6c44e9e1928290631c7603817991cdf570691c9e15fca594918435
MD5 dca6db4ac99e71b862709036a2ef844d
BLAKE2b-256 a4683ba028b730de829dc8ee6f176e56d7da123dc586f62cc47dd8255c7afee1

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 47b4896544095d172c366dd4d4ea1da6b0ab1a77d8416897cc1801e2421b1e67
MD5 75ee52c080fa954a3604c4ecaba1f557
BLAKE2b-256 2e35cb2fee591952b2ea4eb09d29d347fafb2b311c47e89e53f328ac31293c2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 873.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b4c793db8457c856f333f396798470b9bfe405e17c307d581532c74cec70150c
MD5 04c7e1698259ca6b0f59172e6ecdccab
BLAKE2b-256 88a51481c598393c0bd5cb7dc317dc838c553e74c48b1b798f386568bf536a9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 854.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ea3f0196e7c311b9944a609ac175bd91ab97952164a1246716fdd38d53ca3bcc
MD5 14c22b36b8d3971db7e64faa89552181
BLAKE2b-256 20e3fb64e5059fe8c16c08e854e808baf27467592414d62a2a3f6fabe538f112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d79f20f9c7cbc1c708fb80b648b6fbd3220fd3437a9bd6017c1eb592e03b361
MD5 23a3f93de0eb961278ef5479c37f787f
BLAKE2b-256 836ef4ef7d162637b43365d8a5cd536eed421509b48886388f96da9ca87a0cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cddb51cead9700c4dccc916952bc0321b8d766bf782d374bfa0e93ef47c1d20
MD5 21099e963571b04c946e0628223ab143
BLAKE2b-256 ffd1f8c97d96b6e564610545d28b69fb5bbf84c1abf5737d3cd4a1d5c6017834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 286fb275267f0293364ba579f6354452599161f1902ad411061c7f744ab88328
MD5 20383acc9dfa34220d1c577b8c1e5528
BLAKE2b-256 fd2cb4342d6817b775ff5763d930d6e106dd17cdc1d3e5eb8fd3e95ef9bd252e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96462fb2175f740701d229f52018ea6e4adc4148c4112e6628bb359dd534a3df
MD5 4544242440c5f18176ee84c44101ac93
BLAKE2b-256 b56be2e1246516b63f7ece04b636d2b77d919f1e3bb4d5e75741ee7698b759ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd3352eaf578f8e9bdea7a5692910eedad1e8680f60726fc70e99c8af51a5449
MD5 58bb2da093b05ee9cfe315649085e8ff
BLAKE2b-256 3e9293bae105dc94d3ebbef639d631643a17291404f0814ccd8b2dd6f8335203

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f0d5258bc85a4e6b5bcae8160628168e71ec4625a58ceb53327c3280a0b6914
MD5 de3c56d9c51f5b8fcf59df51b613189b
BLAKE2b-256 f7621a31924ac8563505f6f76b7027e5da8083cef490b3012d17632e27faaa39

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6bb3d5282278594753089dc7da48bfae4a7f337a2dd4d397eabb591c649e58d0
MD5 adcb0b70685a97ae1dda9dd8ea0af052
BLAKE2b-256 fc6c4409609efffb335ca6c69e1111643228ce7c728601e9849cd5bd182917da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 823.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f05e34d401be871d7c87cb10727d49315444e4ded07ff876a595e4c23b7436da
MD5 d911a749ae4e215400b6acfdfbab58b1
BLAKE2b-256 227dcd4816cb2f41999d35916ee379cbed709e4d337126a3cab4005d9f2a3830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 809.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8b632e01617f2608880f7b9926f54a5f5ebb51631996e0540fff7fc7980663c9
MD5 a6b25adfd8f27fc8113894a0f848059a
BLAKE2b-256 46c24cb17d7b66c604c13c7565c379a3743db1ef035399deb0bd864f13179f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51dbc6251c6783dfcc7d657c346986d8bad7210989b2fe15de16db5204a8e7ae
MD5 9600d484e62711bf3643420a09ccb9cc
BLAKE2b-256 9c437a2edd912b2b6b7e5149a4f4c4680ce0cac2d154c9311b31d42b29194b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3645aff8419ca60f9ccd08966b2f6b0d78053f9f98a814d025426f1d874c19a
MD5 467346a5e993778b416475c1e4611f35
BLAKE2b-256 cae346fd1386f2c1fdd641c038966e731c7f4ae0cc594ef6e386d01c8b47a8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f8e8b8deba6a4bff3dd5421071083219521c74d2acae0322de5c06f1a66c56af
MD5 4b45b56d5f5348778bf61fc7e4fbc71d
BLAKE2b-256 2bae5d355c15a316998c2cf8edf544b76ec2ca635aca2d04026d243dd20f5d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa4493f304b33c5d2ecee3055c98889ac6724d56f5f922d47420a45d0d4099c9
MD5 b3972a160f6b7c2761822b9b694bab9c
BLAKE2b-256 2aaf757c577b9512553f5a905df9761074a63542173425ddc46fdbecbeedacc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d7aa9cc2d92e73bdb036c578ba019da94ea165eb147e691cd910a6fab7ce3b7
MD5 64a043a65b12493ad7bc6638f1eb313f
BLAKE2b-256 f2fadc8cd8739f67df78ee9c83d4b16439145106c524459b166ccff9cdc4e2b5

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe709d05654c12fc513617c8d5c8d05b7e9cf1d5d94ada68add4e89530c867d2
MD5 336a4dfb114e9b2f4ddb0e8bb542761e
BLAKE2b-256 8e0d2a76b0bbb744e4ca5c39bc6a710e691619dd7d5be7746c9658305517f3a9

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc3d070d746ab79e9b393a5c236df20e56607389af2b79bf1bfe9a841117558e
MD5 bad826e2536c3b7ebd033a325429504a
BLAKE2b-256 cb070d3c64179c4843bb9100ff28680919026ea93e3477bc7bec0ae2e9e10e1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 773.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0492ef43f3342354cf581712e431621c221f60c877ebded84e3f3e53b71bbbe0
MD5 62c2835a5211a521c10026c8f6ee07d8
BLAKE2b-256 7a6cecf6b8551762b08b3e55507ef87af0cf2c1d3218e056e2a342d388eb86ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 764.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e02b03e3815b80a63e773e4c32aed3cf5633d406f376477be74550295c211256
MD5 e04243dc43cc0ba79ad7fdd4e183b52d
BLAKE2b-256 4471d8d67f0867887f74653247f02122dad33d0ff1fb2af5727d2965b476024b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f838f613e74b4dad8ace0d90f42346005bece4eda5bf6d389cfadb8322d39316
MD5 e2a741f5598d7cb571dd063821c5e459
BLAKE2b-256 5fcf3e0ba9a7826f5afe2f187e0534276cd69998c7650bee48270a706be4a76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16d2efe559d0d96bc0b74b3ff76701ad6f6e1a65f6581b573dcacc29158131c8
MD5 966502523ed7777bc49e9096e3373df6
BLAKE2b-256 b52009a140a1760ec2ed96c89bb9034925fe8d729309aeb8882162e4791611e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56877cfcdf7dfc5c6408e4551ec0d6d65ebbca4d744a0bc90400f09ef6bbcc8a
MD5 89e7ff7025f59d9f294353cd2527e516
BLAKE2b-256 9a4cdda900275240519f24cca5e2589ac91d49728d72486c8507f0ae82ca224c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d78adf25967c06298c7e488f4cfab79a390fc32c2b1d428613976f99031603d
MD5 9911ec8d6146b159cc32fb8707ffe6e1
BLAKE2b-256 089bdc3bb6738c12a58b36db9a120d584880c670e3ca282082633a86e786318b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 687cf70e096381bc65b4273a6a9319617618f7ace65caffc356e1099c4a68511
MD5 cbadf96d9cabd1e511f4be6e574d06bd
BLAKE2b-256 7b33cdc2247e6e808a4607a7e20d8e430aec74d3ce89ab52bb0b8a3fae7c7e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b23211c031b45d0f32de83ab7d77f9c26f1025c2d2c91463a5d8594a16103655
MD5 6ba910a598125bf0efbac0e3616506a0
BLAKE2b-256 e35b9f73afba1e4c05ff4d1a2ebb0a1a199ac876cefa01596a5a00f6ffbf71e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db5b299e11284f8d82ce2983d8e19fcc28f98f902a179709ef1982b4cca6f8b8
MD5 942e3f76da8d67c0da0b527f3efc2f71
BLAKE2b-256 acdb7866d79ed164e366f3a9c103c7c7f5bfc4eda396d5a2e6284745c468e724

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8089003a99127f917bdbeec177d41cef019cda8ec70534c1018cb60aacd23c2a
MD5 811ae8bac87ff23f172aace615ba63ef
BLAKE2b-256 c607b4661e0463e618fa28d541db3ddd3cc74a84726df27baa5a48afd99bf0c6

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99b611ff75b5d9e17183dcf9584a7b04f9db07e51a162f23ea05e485e0735c0a
MD5 526acde21ca3fb4e63c631fa47a15cc4
BLAKE2b-256 23bcacb292e674a9be56bbc38a2c3a0fc61760d50a767abe890d9462e235c626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 724.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9fbe9fad27619ac4cfda5df0ade26a99906da7dfe7b01deddc25997eb1804e4c
MD5 ff330fcbcbc5a3242529814e440e935d
BLAKE2b-256 dcd1b278a87452958c040724b795e830e18f8fbbfa6de261fc19958ba004679b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.9.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 719.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 432ad395d2233056b042ccc73234e7136aa65d944d6bd8b5138394bd38aaff79
MD5 d3bab9327c6bd3b875cc91c6650926f1
BLAKE2b-256 c1942dfa4033a1c049cb4493ef75b718de7f4c1545767e2d25956f0b2761d4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b347052d510989d1f52b8553b31297f21cf74bd9f6aed71ee84e563492f4ff17
MD5 c9956c2797f4a7c7d86ff698bbfcda8a
BLAKE2b-256 9104de2f5bd06c028e8d8b7478610eef536e8fa1509e433d53167b75d41d2f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fac1def9e9073f1c80198c99f0ec39c2528236c8912d96d7fd3b0237f4c523a
MD5 e05105d5c81de5d73a7fa8c3cc70e44a
BLAKE2b-256 9dd68d93b470aa7c10d309c58ef339fee73f22c24f26e2b0d5c5902f222e45d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42c19d2b094cdd0ead7dbb38860bbe8268c140334ce55d8b39204ddb4ebd4904
MD5 21d4eb6cd4ffa6cdb2a6e7aa14036e45
BLAKE2b-256 11579e63d264c39c7dc6c10deae7c0ba50b59ba4a48276620b385189db0938db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d1b959a3dda0775d9111622ee47ad47772aed3a9da2e7d5f2f513fa68175dea
MD5 dfc4e2c8faf9b6c0da4937e43a9a6e88
BLAKE2b-256 b6350285ce00b2bcdca1d84073ce5f0ad402bb6a8efb688800444550158c9f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 679b8d55854da7c7fdb82aa5e092ab4de0144daf6758defed8ab00ff9ce05360
MD5 db06c9422de1db81c8e810661208ea3a
BLAKE2b-256 a927ba7d350806e0115ed9918678c2e9dc7138eb95733c5a4f5a5da0f20f2a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0b10cf51ec14a487c94709d294c00e1fb6a0a4c38cdc3acfb2ced5ef60972a0
MD5 affa4432232669c6ebf4795b9de6d10a
BLAKE2b-256 e08b06fd9fff9e097ea122911e1ff73c55d5f0bd6ae0efbf22194a611931a668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b4b961fce213f2bcdc92268f85111a3668c61b9b4d4e7ece27dce3a137cfcbd
MD5 9a05ac788697a414a3b3fc7f51db06b3
BLAKE2b-256 46b6f8e9e24b237b1d58bd1f557a10917b8785abe5550b407cf62818dfec0489

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 375765ec81b1f0a26d08928afea0c3dff897c36080a090be53fc7b70cc51d497
MD5 5ca401923ceb177983409c038db4a2f6
BLAKE2b-256 6a9cb482e4c07426b9122fa74a99dc9e02273063b3019d09ea7c0bd45aa73014

See more details on using hashes here.

File details

Details for the file pymongo-4.9.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.9.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4204fad54830a3173a5c939cd052d0561fba03dba7e0ff6852fd631f3314aa4
MD5 ed88dc508f869b4233e25b49aed9f045
BLAKE2b-256 a2993c947c7e078c26b58dde7f47802c479df53493dd42b96e1c96ba117f0413

See more details on using hashes here.

Supported by

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