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

This version

4.9.2

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

Uploaded Source

Built Distributions

pymongo-4.9.2-cp313-cp313-win_amd64.whl (975.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymongo-4.9.2-cp313-cp313-win32.whl (947.0 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.9.2-cp313-cp313-macosx_11_0_arm64.whl (995.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pymongo-4.9.2-cp313-cp313-macosx_10_13_x86_64.whl (995.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pymongo-4.9.2-cp312-cp312-win_amd64.whl (924.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.9.2-cp312-cp312-win32.whl (901.3 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.9.2-cp312-cp312-macosx_11_0_arm64.whl (941.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.9.2-cp312-cp312-macosx_10_13_x86_64.whl (941.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pymongo-4.9.2-cp311-cp311-win_amd64.whl (874.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.9.2-cp311-cp311-win32.whl (855.6 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.9.2-cp311-cp311-macosx_11_0_arm64.whl (887.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.9.2-cp311-cp311-macosx_10_9_x86_64.whl (887.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.9.2-cp310-cp310-win_amd64.whl (825.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.9.2-cp310-cp310-win32.whl (810.6 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

pymongo-4.9.2-cp310-cp310-macosx_11_0_arm64.whl (834.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.9.2-cp310-cp310-macosx_10_9_x86_64.whl (833.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.9.2-cp39-cp39-win_amd64.whl (775.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.9.2-cp39-cp39-win32.whl (765.6 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

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

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

pymongo-4.9.2-cp39-cp39-macosx_11_0_arm64.whl (780.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.9.2-cp39-cp39-macosx_10_9_x86_64.whl (779.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-4.9.2-cp38-cp38-win_amd64.whl (725.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.9.2-cp38-cp38-win32.whl (720.6 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (928.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (936.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (943.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (927.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.9.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (926.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (919.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (917.9 kB view details)

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

pymongo-4.9.2-cp38-cp38-macosx_11_0_arm64.whl (726.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pymongo-4.9.2-cp38-cp38-macosx_10_9_x86_64.whl (726.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2.tar.gz
Algorithm Hash digest
SHA256 3e63535946f5df7848307b9031aa921f82bb0cbe45f9b0c3296f2173f9283eb0
MD5 0fdca9242f03ff82aac0c12c4c7ae586
BLAKE2b-256 fb43d5e8993bd43e6f9cbe985e8ae1398eb73309e88694ac2ea618eacbc9cea2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 169b85728cc17800344ba17d736375f400ef47c9fbb4c42910c4b3e7c0247382
MD5 516d2ff3be627ce467e11d9d4ac0ecbb
BLAKE2b-256 7b3688d8438699ba09b714dece00a4a7462330c1d316f5eaa28db450572236f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b3254769e708bc4aa634745c262081d13c841a80038eff3afd15631540a1d227
MD5 23949d63ebeaa52ca6fe422e06888600
BLAKE2b-256 f355f252972a039fc6bfca748625c5080d6f88801eb61f118fe79cde47342d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fc70326ae71b3c7b8d6af82f46bb71dafdba3c8f335b29382ae9cf263ef3a5c
MD5 209df05c04ee868a7dfda1c2489d6ae2
BLAKE2b-256 4d2053395473a1023bb6a670b68fbfa937664c75b354c2444463075ff43523e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c8c861e77527eec5a4b7363c16030dd0374670b620b08a5300f97594bbf5a40
MD5 eee836610acd64235c36ef1d836fa3d1
BLAKE2b-256 b852b0c1b8e9cbeae234dd1108a906f30b680755533b7229f9f645d7e7adad25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cca029f46acf475504eedb33c7839f030c4bc4f946dcba12d9a954cc48850b79
MD5 cd6fb65832675137520b43f322d9f928
BLAKE2b-256 da420f749d805d17f5b17f48f2ee1aaf2a74e67939607b87b245e5ec9b4c1452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc9322ce7cf116458a637ac10517b0c5926a8211202be6dbdc51dab4d4a9afc8
MD5 abe083bb029f42e2270245ca0a45fbb7
BLAKE2b-256 c4fd8f5464321fdf165700f10aec93b07a75c3537be593291ac2f8c8f5f69bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba9d2f6df977fee24437f82f7412460b0628cd6b961c4235c9cff71577a5b61f
MD5 1a4f7145ef2e9166d50dc1e99b933094
BLAKE2b-256 01b7fa4030279d8a4a9c0a969a719b6b89da8a59795b5cdf129ef553fce6d1f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 877699e21703717507cbbea23e75b419f81a513b50b65531e1698df08b2d7094
MD5 a202b853b9d9a8ccf060830288318d3b
BLAKE2b-256 32804ec79e36e99f86a063d297a334883fb5115ad70e9af46142b8dc33f636fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ad79d6a74f439a068caf9a1e2daeabc20bf895263435484bbd49e90fbea7809
MD5 6dc24601a7a8f9d84ea4f5fb53c4a8c1
BLAKE2b-256 5bd6b57ef5f376e2e171218a98b8c30dfd001aa5cac6338aa7f3ca76e6315667

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e1ab6cd7cd2d38ffc7ccdc79fdc166c7a91a63f844a96e3e6b2079c054391c68
MD5 78fa5a8999230b8fc8546df058cbf6bf
BLAKE2b-256 126bb7ffa7114177fc1c60ae529512b82629ff7e25d19be88e97f2d0ddd16717

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dde6068ae7c62ea8ee2c5701f78c6a75618cada7e11f03893687df87709558de
MD5 8a6b9997a5cc0194cfdd2277bdd25503
BLAKE2b-256 247e167818f324bf2122d45551680671a3c6406a345d3fcace4e737f57bda4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96ad54433a996e2d1985a9cd8fc82538ca8747c95caae2daf453600cc8c317f9
MD5 2c89c488322092804eee4526cc98a905
BLAKE2b-256 1a30e93dc808039dc29fc47acee64f128aa650aacae3e4b57b68e01ff1001cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe97c847b56d61e533a7af0334193d6b28375b9189effce93129c7e4733794a9
MD5 7add45305f7592050b9a8684afede5f1
BLAKE2b-256 ae51ac0378d001995c4a705da64a4a2b8e1732f95de5080b752d69f452930cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1d5e7123af1fddf15b2b53e58f20bf5242884e671bcc3860f5e954fe13aeddd
MD5 a1e7cbf2e944a5482292df545479530e
BLAKE2b-256 ba709304bae47a361a4b12adb5be714bad41478c0e5bc3d6cf403b328d6398a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8aac5dce28454f47576063fbad31ea9789bba67cab86c95788f97aafd810e65b
MD5 e7e1721cb0d2143ef4314c7c213572be
BLAKE2b-256 dfb27f1a0d75f538c0dcaa004ea69e28706fa3ca72d848e0a5a7dafd30939fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98b9cade40f5b13e04492a42ae215c3721099be1014ddfe0fbd23f27e4f62c0c
MD5 50823d8d4eb17bac5459cf1211859163
BLAKE2b-256 2b34895b9cad3bd5342d5ab51a853ed3a814840ce281d55c6928968e9f3f49f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1b8c636bf557c7166e3799bbf1120806ca39e3f06615b141c88d9c9ceae4d8c
MD5 3edaf183c9ddd2065dcacf4ea294d3e9
BLAKE2b-256 bb2840613d8d97fc33bf2b9187446a6746925623aa04a9a27c9b058e97076f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8083bbe8cb10bb33dca4d93f8223dd8d848215250bb73867374650bac5fe69e1
MD5 375d68af05fd603d0b51930f2e4301f6
BLAKE2b-256 a1087d95aab0463dc5a2c460a0b4e50a45a743afbe20986f47f87a9a88f43c0c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 24e7b6887bbfefd05afed26a99a2c69459e2daa351a43a410de0d6c0ee3cce4e
MD5 87e24c2ac868e39f38fae36dee587818
BLAKE2b-256 403d7de1a4cf51bf2b10bb9f43ffa208acad0d64c18994ca8d83f490edef6834

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a663ca60e187a248d370c58961e40f5463077d2b43831eb92120ea28a79ecf96
MD5 04c692427871b7c3098303509a7efeaa
BLAKE2b-256 9b4cd3b26e1040c9538b9c8aed005ec18af7515c6dd3091aabfbf6c30a3b3b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3039e093d28376d6a54bdaa963ca12230c8a53d7b19c8e6368e19bcfbd004176
MD5 6a63b5393b1f7abcda1a6fc10e6b5084
BLAKE2b-256 dc70ac12eb58bd46a7254daaa4d39e7c4109983ee2227dac44df6587954fe345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87b18094100f21615d9db99c255dcd9e93e476f10fb03c1d3632cf4b82d201d2
MD5 47938e414379aeba62a3a7c21c9e3051
BLAKE2b-256 8cacaa41cb291107bb16bae286d7b9f2c868e393765830bc173609ae4dc9a3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69394ee9f0ce38ff71266bad01b7e045cd75e58500ebad5d72187cbabf2e652a
MD5 f0de17b63aa1ba3c4d6465eaa8924cae
BLAKE2b-256 00b70472d51778e9e22b2ffd5ae9a401888525c4872cb2073f1bff8d5ae9659b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3010018f5672e5b7e8d096dea9f1ea6545b05345ff0eb1754f6ee63785550773
MD5 a81a0f54cb82b93043a744cfca496cdd
BLAKE2b-256 d4fd3f0ae0fd3a7049ec67ab8f952020bc9fad841791d52d8c51405bd91b3c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ab42d9ee93fe6b90020c42cba5bfb43a2b4660951225d137835efc21940da48
MD5 f07fd2a58a435bd389a3156ec08de1cb
BLAKE2b-256 d32038f71e0f1c7878b287305b2965cebe327fc5626ecca83ea52a272968cbe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f6834d575ed87edc7dfcab4501d961b6a423b3839edd29ecb1382eee7736777
MD5 dcb5b741d1da4ad4fd95bb5e4d6bc053
BLAKE2b-256 33ee5389229774f842bd92a123fd3ea4f2d72b474bde9315ff00e889fe104a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99e40f44877b32bf4b3c46ceed2228f08c222cf7dec8a4366dd192a1429143fa
MD5 6efe354fe9ee7eb506ccfc00ac1452c1
BLAKE2b-256 a8b47af80304a0798526fac959e3de651b0747472c049c8b89a6c15fed2026f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c42b5aad8971256365bfd0a545fb1c7a199c93db80decd298ea2f987419e2a6d
MD5 aa658cd6747f5176999586dce18cb727
BLAKE2b-256 71cf790c8da7fdd55e5e824b08eaf63355732bbf278ebcb98615e723feb05702

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bf77bf175c315e299a91332c2bbebc097c4d4fcc8713e513a9861684aa39023a
MD5 1054e7e076216f7aa91d201dce3ba899
BLAKE2b-256 573c78c60e721a975b836922467410dd4b9616ac84f096eec00f7bde9e889b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c798351666ac97a0ddaa823689061c3af949c2d6acf7fb2d9ab0a7f465ced79
MD5 20663ccc07b247dd74440ee982ece142
BLAKE2b-256 87f5653f9af6a7625353138bded4548a5a48729352b963fc2a059e07241b37c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3fc60f242191840ccf02b898bc615b5141fbb70064f38f7e60fcaa35d3b5efd
MD5 0cae607605828236c2a040c48d78790b
BLAKE2b-256 6f84b382e7f817fd39dcd02ae69e21afd538251acf5de1904606a9908d8895fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e759ed0459e7264a11b6896016f616341a8e4c6ab7f71ae651bd21ffc7e9524
MD5 50e27d415014942a6c258894998d5e06
BLAKE2b-256 e89c2d5db2fcabc873daead275729c17ddeb2b437010858fe101e8d59a276209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6e7251d59fa3dcbb1399a71a3aec63768cebc6b22180b671601c2195fe1f90a
MD5 5bdc17b4ad0fbbd7aaa0dd04127d689a
BLAKE2b-256 872e3cc96aec7a1d6151677bb108af606ea220205a47255ed53255bfe1d8f31f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aac78b5fdd49ed8cae49adf76befacb02293a23b412676775c4715148e166d85
MD5 6af250f9b7bb7492f36a4d43bee83111
BLAKE2b-256 3626f4159209cf6229ce0a5ac37f093dab49495c51daad8ca835279f0058b060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f928bdc152a995cbd0b563fab201b2df873846d11f7a41d1f8cc8a01b35591ab
MD5 0821d9d2772c8267c27413a793529c39
BLAKE2b-256 a6bd7bc8224ae96fd9ffe8b2a193469200b9c75787178c5b1955bd20e5d024c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab8d54529feb6e29035ba8f0570c99ad36424bc26486c238ad7ce28597bc43c8
MD5 4c4d9e0132a703563abfee4b79a60e3c
BLAKE2b-256 38af1ce26b971e520de621239842f2be302749eb752a5cb29dd253f4c210eb0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 31c35d3dac5a1b0f65b3da2a19dc7fb88271c86329c75cfea775d5381ade6c06
MD5 be513c9b98f3e3cf3d82b24a43bd1e66
BLAKE2b-256 e3cf8c7a0b3d4d44ecf62bd0590d4d6a7d4e268b77de7f01f7dd362576f667d1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f2f43e5d6e739aa78c7053bdf351453c0e53d7667a3cac73255c2169631e052a
MD5 5f7fb3ee5b59c2fed67e66b99665d68a
BLAKE2b-256 fd6167a7ed51f0ce8eedc25c917dc582478caa9606d39e508441742bbcd8f674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f13330bdf4a57ef70bdd6282721547ec464f773203be47bac1efc4abd74a9190
MD5 8a4f7fc7ac0b1b36ca9b832eab62b002
BLAKE2b-256 5606ddff399f79d410efd832e6673c06d94ab7901c9698734bbb512d4d630272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf963104dfd7235bebc44cef40b4b12c6638bb03b3a828cb495498e286b6edd0
MD5 3e6f86287bc83e6aa87adf7a470bf5a3
BLAKE2b-256 84af29248c6eaeb1055d14c8d457624b963bcd9e30be8421dd4fc2ed2e8989fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea9c47f86a322280381e9ddba7491e664ea80bf75df247ea2346faf7626e4e4c
MD5 d38160bf60ce7081f413d1bfb39e2c17
BLAKE2b-256 04ea3f577b203ecad8bd59f5aef0822e7cbfd4c76fe6e05c83a4c87c405c603a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80a1ee9b72eebd96619ebe0beb718a5bcf2a70f464edf315f97b9315ed6854a9
MD5 2c34ef8c6857305ad99952f96d40b93e
BLAKE2b-256 6dc14300586e96af2652fe3592c1eaa70574989b4a21f2704938a857083cdcda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3f55efe0f77198c055800e605268bfd77a3f0223d1a80b55b771d0c350bc3ade
MD5 9ba36a84da84e6862428f277eaa76d19
BLAKE2b-256 d759059fa4d81fb4f8a1cf6f04dd03a9f78119d56fd05fd656761e89b6c8d4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd832de5df92caa68ee66c872708951d7e0c1f7b289b74189f2ccf1832c56dda
MD5 aff250ff0a6d77e96d94fcc2fe8bcc43
BLAKE2b-256 9ff722ef54abf9dd083fe64153c26575bf3aec966ba50ec76b5e00e2a2ee75b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7fb10d7069f1e7d7d6a458b1c5e9d1454be6eca2d9885bec25c1202e22c88d2a
MD5 0fd18ee2a9914eec6a77605114130f2f
BLAKE2b-256 cdf0b057d94a627f2a6468707a342ea6c788d60c729cf8d4a698333a13b70c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a49d9292f22a0395c0fd2822a06e385910f1f902c3a9feafc1d0bfc27cd2df6b
MD5 7d2d20fb46f0b98e6327ca014aac7416
BLAKE2b-256 66932d237514aad615b94a617cc7092cdee959d99a883d156c25df2a550b6310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e54e2c6f1dec45c57a587b4c13c16666d5f7c031a642ae177140d1e0551a947e
MD5 fa999edb4c15ba9948111654e36ba8ff
BLAKE2b-256 e20c8101588ad2da1f023c77597aba612176051f731bf417e557275edc4102b9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a92c96886048d3ebae62dbcfc775c7f2b965270160e3cb6aab4e06750e030b05
MD5 c641797e6ce1e68920eb464d280c6e69
BLAKE2b-256 d64378a57401e276f29d1468c4623113f92bd01b019de2c8315d7313325e5d37

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ae227bba43e2e6fc8c3440a70b3b8f9ab2b0eb0906d0d2cf814dd9490c572e2a
MD5 14d552b284f01acaaa7920286bd52b9d
BLAKE2b-256 92cff727361f21ffa412573e98f8e55585945c7dab91aa3dbddcfa5f85177ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c3c71337d4c923f719cb56253af9244e90353a2454088ee4f184bfb0dd446a4
MD5 ec8ba1df6839c4f13b0f11960b83800f
BLAKE2b-256 46dbbd9d4d8ed19de90c07b53d1405ad8a3f479d1df7f18bfe1e7a37a5933f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 410ea165f2f819118eed764c5faa35fa71aeff5ce8b5046af99ed158a5661e9e
MD5 c22ac709f9da412cda9e05644a1dfb4e
BLAKE2b-256 bc61900db838a8e993a912d8058c7396a3ece5ccfab3d6c063e3dbf174b94c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65c6b2e2a6db38f49433021dda0802ad081118224b2264500ef03a2d82ae26a7
MD5 e89b23e36fe5d3b542b6fb7c51321e32
BLAKE2b-256 b35257294161b7f42553228ef72742231869a635e550d7e7a344055d0a30e254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5af264b9a973859123e3129d131d7246f57659304400e3e6b35ed6eaf099854d
MD5 5cb4e2eb83c5a3e5529d858ea35d522c
BLAKE2b-256 a36f3b6b28d0202b942d0a1cc6217dbdd36c8a24cad036c58b06449672d31acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3ff4201ea707f57bf381f61df0e9cd6e896627a59f98a5d1c4a1bd14a2544cb
MD5 bb17dea17cf15b78209e1ab16d4682fc
BLAKE2b-256 3aa67ebd35e409b05a61864c938e8d73ee8fbf46b2facf0578086c07df74ab9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fdbd558d90b55d7c39c096a79f8a725f1f02b658211924ab98dbc03ecad01095
MD5 f275f06bc938f9f508eb9de2b301fd69
BLAKE2b-256 76c040b3915f09211693df897ce8fe555974729abb07427109f6d53c5070878b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77528a2b928fe3f1f655cefa195e6718ab1ccd1a456aba486d76318e526a7fac
MD5 1b2efa5366bad25bec97f932f55a1174
BLAKE2b-256 32c6fe5e207fce0c1e7a8ef342dc5b38b32172e1ed9f2660ef1297687be0b2b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a0b2e7fedc5911cd44590b5fd8e3714029f378f37f3c0c2043f67150b588d4a
MD5 67deb2eae9fc38cd0a9007d6b0ae52ce
BLAKE2b-256 0a347054e272a48a11a8ae376b1ab3f61370d50b448eae520cb2036da39d490c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.9.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3f28afd783be3cebef1235a45340589169d7774cd9909ba0249e2f851ff511d
MD5 b138936cee8cd8ddcddbb422e73828af
BLAKE2b-256 bdb03b07394be7a9282981f3ec6e9918f8528d9dcff7dea523cd86a03cbddc76

See more details on using hashes here.

Supported by

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