Skip to main content

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

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads 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, 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; running "pip 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

Testing

The easiest way to run the tests is to run tox -m test in the root of the distribution. For example,

tox -e test

Project details


Release history Release notifications | RSS feed

This version

4.7.3

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

Uploaded Source

Built Distributions

pymongo-4.7.3-cp312-cp312-win_amd64.whl (484.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.7.3-cp312-cp312-win32.whl (479.7 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.7.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (694.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.7.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (688.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.7.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (676.3 kB view details)

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

pymongo-4.7.3-cp312-cp312-macosx_11_0_arm64.whl (485.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.7.3-cp312-cp312-macosx_10_9_x86_64.whl (485.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pymongo-4.7.3-cp311-cp311-win_amd64.whl (483.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.7.3-cp311-cp311-win32.whl (478.8 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (677.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.7.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (684.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.7.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (661.7 kB view details)

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

pymongo-4.7.3-cp311-cp311-macosx_11_0_arm64.whl (485.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.7.3-cp311-cp311-macosx_10_9_x86_64.whl (485.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.7.3-cp310-cp310-win_amd64.whl (483.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.7.3-cp310-cp310-win32.whl (478.8 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (675.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.7.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.7.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (659.7 kB view details)

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

pymongo-4.7.3-cp310-cp310-macosx_11_0_arm64.whl (485.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.7.3-cp310-cp310-macosx_10_9_x86_64.whl (485.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.7.3-cp39-cp39-win_amd64.whl (483.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.7.3-cp39-cp39-win32.whl (478.8 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.7.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (674.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.7.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (681.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (669.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.7.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (670.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (664.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (658.8 kB view details)

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

pymongo-4.7.3-cp39-cp39-macosx_11_0_arm64.whl (485.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.7.3-cp39-cp39-macosx_10_9_x86_64.whl (485.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-4.7.3-cp38-cp38-win_amd64.whl (484.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.7.3-cp38-cp38-win32.whl (478.9 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.7.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (692.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.7.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (685.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.7.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (686.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (678.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (674.3 kB view details)

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

pymongo-4.7.3-cp38-cp38-macosx_11_0_arm64.whl (485.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pymongo-4.7.3-cp38-cp38-macosx_10_9_x86_64.whl (485.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.7.3-cp37-cp37m-win_amd64.whl (483.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.7.3-cp37-cp37m-win32.whl (478.4 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (655.7 kB view details)

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

pymongo-4.7.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.7.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (669.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (655.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.7.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (665.1 kB view details)

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

pymongo-4.7.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (657.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

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

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

pymongo-4.7.3-cp37-cp37m-macosx_10_9_x86_64.whl (484.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.7.3.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3.tar.gz
Algorithm Hash digest
SHA256 6354a66b228f2cd399be7429685fb68e07f19110a3679782ecb4fdb68da03831
MD5 bea890d7c7ae7ae9697a71a0c81d6b1d
BLAKE2b-256 824822ac52590af5f4b5c7c1da0b7d10d68722f65978592f54eb12b781cdd52b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 484.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb383c54c0c8ba27e7712b954fcf2a0905fee82a929d277e2e94ad3a5ba3c7db
MD5 e356ec265b5cce8d2dba8c96e22c21ac
BLAKE2b-256 3f2eb1a64cfb43d008f34ac4b6cf5ff137b2ed2e3e049977037d09ff68568101

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 479.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5f3569ed119bf99c0f39ac9962fb5591eff02ca210fe80bb5178d7a1171c1b1e
MD5 cc24aea7d26abed12c16c16470c41678
BLAKE2b-256 8cb6bb53e069e4829e0ba2b71bf4f733efa050c553719581a4709b5585afde30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88fc1d146feabac4385ea8ddb1323e584922922641303c8bf392fe1c36803463
MD5 f5e916a21a68e531d02b1779ea2640a4
BLAKE2b-256 0fe27e33d2b004cc5d4704d11135adca4091967ab18d6914b4826b0ec4351560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a0e81c8dba6d825272867d487f18764cfed3c736d71d7d4ff5b79642acbed42
MD5 dabcaa3ffb0f3e823bb69fd7d51d9786
BLAKE2b-256 d41d1f1ac107011488eb87c5f3ab8f1dffd52a2350b16bd919c2c42d2e1f3fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a8af8a38fa6951fff73e6ff955a6188f829b29fed7c5a1b739a306b4aa56fe8
MD5 229dcc76e7b8191540f9abbf2a6f86d7
BLAKE2b-256 652576ad7f59bfc5a6c0842fb88d1e75b8e39ada192ce78dfe84ae75ff9590c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3564f423958fced8a8c90940fd2f543c27adbcd6c7c6ed6715d847053f6200a0
MD5 7a5804951619844bdbf4503b372e376a
BLAKE2b-256 4d1defe5e0c4c4a88b2cde5962138f05603fc8d90824b31c7b23b654c7ac2609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4225100b2c5d1f7393d7c5d256ceb8b20766830eecf869f8ae232776347625a6
MD5 002c2df44862621e8dc39bd55215fe44
BLAKE2b-256 38801e361f3f04ac166ec49d68f00e9c1e4c161ed52852cf42da1d973f610984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cf2069f5d37c398186453589486ea98bb0312214c439f7d320593b61880dc05
MD5 6f089052e1db7dc7113e7b719b801140
BLAKE2b-256 3c888092bcb97121bf0c858556b31aabe16f3425e153fd26535f8a20ab4bac78

See more details on using hashes here.

File details

Details for the file pymongo-4.7.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.7.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb30c8a78f5ebaca98640943447b6a0afcb146f40b415757c9047bf4a40d07b4
MD5 49ca851d443fac93948e49a2d13060a5
BLAKE2b-256 f277806f4d6af1c7da7f096331b8df849ba8d5c4d5e62582ffe6ee4a420918f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 483.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a4cc91c28e81c0ce03d3c278e399311b0af44665668a91828aec16527082676
MD5 baeb684384385b861f8ec441d275a4f5
BLAKE2b-256 d8ff7b7e9afdca4dd46ef0fba00d023daab442144c1ed63c068ccb9e04738727

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d2f52b38151e946011d888a8441d3d75715c663fc5b41a7ade595e924e12a90a
MD5 1db98d07ade3fb5820a5cac6b94b9338
BLAKE2b-256 0ac534788dc24c10ce0cb3587b782f11501f58bd699528cd68674fa319f222f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89872041196c008caddf905eb59d3dc2d292ae6b0282f1138418e76f3abd3ad6
MD5 1503e670edfcd01601723cbc4cdd4261
BLAKE2b-256 fd9b5d41cb611c3b6363e385dc9553831a3634bf76f6f9846764816d244b255c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8dfcf18a49955d50a16c92b39230bd0668ffc9c164ccdfe9d28805182b48fa72
MD5 65a6a51b20c33faeae6d5e4aabc1fbd4
BLAKE2b-256 5b5617eb85c56a583b2406cf48a96812574d36c97d196261cbb00cfc99d23568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1cc1febf17646d52b7561caa762f60bdfe2cbdf3f3e70772f62eb624269f9c05
MD5 663082029112ed0fcf9d5a54596c0111
BLAKE2b-256 23a39aa2354b20cb012ab72a133cd43c46731580817a5a90f03aca32b2d6f144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 413506bd48d8c31ee100645192171e4773550d7cb940b594d5175ac29e329ea1
MD5 8346cf3adc4a322e78413a4f122cfec9
BLAKE2b-256 301df3193c511907cc53915a30d81082413e5eef735cab57981dd82882983530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3ed97b89de62ea927b672ad524de0d23f3a6b4a01c8d10e3d224abec973fbc3
MD5 ad20abbe784aff30030212c07fa17b98
BLAKE2b-256 87bca680c065c9d3c7e053a446729b93eafb1c9fbd4613f50f93eb566d6b58e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e2287f1e2cc35e73cd74a4867e398a97962c5578a3991c730ef78d276ca8e46
MD5 fd46b4b71e6b5f871f842d72474f3539
BLAKE2b-256 cef2259fb22d82f2fb18a45ec065026f565c1b5ff325c5afe7b516a9bb2805b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 79cc6459209e885ba097779eaa0fe7f2fa049db39ab43b1731cf8d065a4650e8
MD5 0d5c985bd4f002ff1b5fea80cca5d8ad
BLAKE2b-256 f1ce5ecd0599751a9a9db52bb6af98bd8f9272a4e9ea3139619f0fb416b0ff5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 483.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c450ab2f9397e2d5caa7fddeb4feb30bf719c47c13ae02c0bbb3b71bf4099c1c
MD5 0cd74671e0d9224a64ccb9849eda24c6
BLAKE2b-256 5377d7907690b402f7608c485e169aa18353601929833fa720d8d1377c3383ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d8b1e06f361f3c66ee694cb44326e1a2e4f93bc9c3a4849ae8547889fca71154
MD5 c4fe60eb9251c823bd58284d20527d4e
BLAKE2b-256 bd4ffae01e8156ca7946e129460157208f6b084468752e888e9bccf4e88ca17d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfd7b3d3f4261bddbb74a332d87581bc523353e62bb9da4027cc7340f6fcbebc
MD5 1f0d5a229835d6d2b3ad3ee027fe6bc3
BLAKE2b-256 2bbe5e3f8c964994178342512a99a41b7441e1c752192015366544b615f378a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a870824aa54453aee030bac08c77ebcf2fe8999400f0c2a065bebcbcd46b7f8
MD5 d7919430e6c3580e5f420191b63bbfad
BLAKE2b-256 7bdb430389812c26e7371b50b6e25f6e10fc49d5c1e1fa3c7e08c5de7c001d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03e0f9901ad66c6fb7da0d303461377524d61dab93a4e4e5af44164c5bb4db76
MD5 075bac7497f21c657e3219a524993e7c
BLAKE2b-256 e5aae9f252e6ab2261f7bdbd7aa21f924b8c613d44d47b7d5a728f2b333e49e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23b1e9dabd61da1c7deb54d888f952f030e9e35046cebe89309b28223345b3d9
MD5 3bdf67c688f4cb084991454d63669a75
BLAKE2b-256 3dc454e8b89723b5940370b3be76c77ab6ad637b96dcc6375f8d22b0cbed05be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d719a643ea6da46d215a3ba51dac805a773b611c641319558d8576cbe31cef8
MD5 b0b8b878b2e9561e104353efd2f7472c
BLAKE2b-256 5e822264f1fc5a7af90491ba7c172089c9b7c7b9e609d2019d2863c349a7dd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 517243b2b189c98004570dd8fc0e89b1a48363d5578b3b99212fa2098b2ea4b8
MD5 41ff57112a3ffc6e8676cdf5f3a828b9
BLAKE2b-256 25151c11ddd09f52c55c6ae518a19d24c063233ba9ab3cad9604fb9e5eb7ee02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9580b4537b3cc5d412070caabd1dabdf73fdce249793598792bac5782ecf2eb
MD5 33835ca550e8518ebe1ac882b18d8c71
BLAKE2b-256 3e131161e677f67e8f59dc04a37ebf22113bc738659e6090ba82e8446dbb8fac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 483.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f7ee974f8b9370a998919c55b1050889f43815ab588890212023fecbc0402a6d
MD5 dc8a2db2dc57db583477fbaa5372330f
BLAKE2b-256 aaf64df50e6e57ce2e8ca3c640c0fbea313ae2353aa8be0cc9775ce0fc513629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1421d0bd2ce629405f5157bd1aaa9b83f12d53a207cf68a43334f4e4ee312b66
MD5 175f155465856a9d7a4deea1aaaf4f06
BLAKE2b-256 0abde82cd3b0a707eabaaffa8e601dbd5d1f62f781f7fe0ab318952b5b3a8714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0e149217ef62812d3c2401cf0e2852b0c57fd155297ecc4dcd67172c4eca402
MD5 b52e750543854241e7d583f2a8e6545f
BLAKE2b-256 4bc4ebebc36f28c52cfe925dbda0f2b117c06d87eb1c2a251d39f07d5cac354e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de3b9db558930efab5eaef4db46dcad8bf61ac3ddfd5751b3e5ac6084a25e366
MD5 8281d1ab05bef0345b149a965cdf8592
BLAKE2b-256 9f9db6f7595662e01b9ab57c23683e50faad03ce0c74e374caee368f664c0cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82a97d8f7f138586d9d0a0cff804a045cdbbfcfc1cd6bba542b151e284fbbec5
MD5 cc6c5aa00719b87f340e53568427078e
BLAKE2b-256 e29ee9405c5324b36aac600d698f0f4bd82f00bd20774d0324e3c1669670c7bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9aa8735955c70892634d7e61b0ede9b1eefffd3cd09ccabee0ffcf1bdfe62254
MD5 de6d44f73d04cf74112b4f5f04a5bc69
BLAKE2b-256 eba8d3c373d66fa14fbc143f1df46debc2d73b40b96b26b367656b7e8220643e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c6bfa29f032fd4fd7b129520f8cdb51ab71d88c2ba0567cccd05d325f963acb5
MD5 154b4256aed56e5af3d83be105023cfb
BLAKE2b-256 2f1f66c3da21eb2179f36f31eb2175a00ce1a0f3a3c9068f830785b2633b8b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d14e5e89a4be1f10efc3d9dcb13eb7a3b2334599cb6bb5d06c6a9281b79c8e22
MD5 649c36791be756d7174d5e4b82c198a1
BLAKE2b-256 a3f5dfab0155270ed9a101cf528fdbfc1314a46d19bde15593bea13be7572c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3a8a1ef4a824f5feb793b3231526d0045eadb5eb01080e38435dfc40a26c3e5
MD5 7787d5fd3e40efdd390286c4d3e763ef
BLAKE2b-256 b5b10b18d1791fe14decc8554742c83ee3803f31a0f32df9c34e3703c47514e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35ba90477fae61c65def6e7d09e8040edfdd3b7fd47c3c258b4edded60c4d625
MD5 81e683590a3db1e6b294346b29f04331
BLAKE2b-256 ecbd6c378806fd1d3ebb5284cc9375e1bf6e63aa8572b782b0d1eeab8a71f99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f598be401b416319a535c386ac84f51df38663f7a9d1071922bda4d491564422
MD5 09da18d4ee91ada6baef8b3632ae9a4b
BLAKE2b-256 186f77839bf750465bde3eb8365d06af4e3df526f7abc3255463ea68521af6f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 484.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1c90c848a5e45475731c35097f43026b88ef14a771dfd08f20b67adc160a3f79
MD5 1084e3739c9ac3559a7ba9991acd3133
BLAKE2b-256 639426ba81b1228427b393ae40920a3e5331e418cf86749a84ca28cf30ddd399

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 478.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 92dd247727dd83d1903e495acc743ebd757f030177df289e3ba4ef8a8c561fad
MD5 789047bfec743f9af3a613a8e35062e2
BLAKE2b-256 5e7f0856ef042bd1b451a7a4f78d98757aea9764e6faec3b246247d2cae069be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e28feb18dc559d50ededba27f9054c79f80c4edd70a826cecfe68f3266807b3
MD5 0effc866a3370d5029a855420177c4b2
BLAKE2b-256 382959745047b9c46420023bc907ae15f89457bd30f758e68ff366f18bdc83f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e90af2ad3a8a7c295f4d09a2fbcb9a350c76d6865f787c07fe843b79c6e821d1
MD5 99846625dc9c688583a8715ddf51c779
BLAKE2b-256 2e4e4f7299556523fed56de6a66dc7e506731c5be8e65b8f57df2efc965cda31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6db3d608d541a444c84f0bfc7bad80b0b897e0f4afa580a53f9a944065d9b633
MD5 9763e431f9a9d76f66332d487c1094f7
BLAKE2b-256 9f873337820297295413c12f912f805b432b5c15eebf9bd5b5b99dc90dde599d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 487e2f9277f8a63ac89335ec4f1699ae0d96ebd06d239480d69ed25473a71b2c
MD5 2de81cd604cf648fecfe713b1778aa61
BLAKE2b-256 550bac2282fbfd55ef78ba28f0da321b8dc166a45433621dadea522c26204e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 94baa5fc7f7d22c3ce2ac7bd92f7e03ba7a6875f2480e3b97a400163d6eaafc9
MD5 7fbc211f2584d4bea08ec6a15214d0a3
BLAKE2b-256 ac8e6361980925e9d03382621f08b628fb783e5263bc543d112041adb36d3209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26140fbb3f6a9a74bd73ed46d0b1f43d5702e87a6e453a31b24fad9c19df9358
MD5 cf78a89070f8701b6ced96fd25351993
BLAKE2b-256 a9f2c1e93e2c8ad6d42eb19ca325dd304a63ee0598a8a72c1a7f9c9159a36a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f21ecddcba2d9132d5aebd8e959de8d318c29892d0718420447baf2b9bccbb19
MD5 2e427a35c12ee806ce731a3b8d09910a
BLAKE2b-256 61b222f2182390a3d8713793e7611a97fa92f5726022acf6b8c12ea49e242006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da4a6a7b4f45329bb135aa5096823637bd5f760b44d6224f98190ee367b6b5dd
MD5 a63f1899b53aef765edc717ddcf1a30e
BLAKE2b-256 33b750a8855a1d0a4dcc119a1f7b39694214e81c896edd4b98e95088c44a1be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9377b868c38700c7557aac1bc4baae29f47f1d279cc76b60436e547fd643318c
MD5 7cbafec52c33e32c11e770d33fa5f783
BLAKE2b-256 f426769d74f108a374900d939adbc658a883e12e35cff9430493423a4b1151d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 483.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8d00a5d8fc1043a4f641cbb321da766699393f1b6f87c70fae8089d61c9c9c54
MD5 f46796b20ac15fe23b65d16b4f82085a
BLAKE2b-256 87a38024e597bb8f9587714ba3b9ce81c966971833d41f443b6af2c40664c6ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.7.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 478.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8ed1132f58c38add6b6138b771d0477a3833023c015c455d9a6e26f367f9eb5c
MD5 e672f72d534e6989bc28c0d7d036b7a1
BLAKE2b-256 e221f619a033db835be8a4150a2406a7a51a9978b12bd834d3a1ee1eeb44b364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c59c2c9e70f63a7f18a31e367898248c39c068c639b0579623776f637e8f482
MD5 12d9c3cd1e4100df2945e26d8f1528be
BLAKE2b-256 9745ede836241b6dd8a7f8f227041700141107989242eef4d261dba63f2ad7f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c168a2fadc8b19071d0a9a4f85fe38f3029fe22163db04b4d5c046041c0b14bd
MD5 2205e3bcdfd4602930979881fd009c2c
BLAKE2b-256 00887699e3ee43488ec1280194df71594a74aceaad2341877fa17b8682369215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7a5fd893edbeb7fa982f8d44b6dd0186b6cd86c89e23f6ef95049ff72bffe46
MD5 684923dbf68b7ca9efa2232d0b5ff03e
BLAKE2b-256 552334e5ac2ac345b215fa31fafed280b55a1354135da977d3c8c9d8894717dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c3cba427dac50944c050c96d958c5e643c33a457acee03bae27c8990c5b9c16
MD5 0c373e8b5051a28d5552c8af68824d20
BLAKE2b-256 b99c8dec458902ebe32e01f3c58d983789b0cce231d4e6a90f6fead089cfa95f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f903075f8625e2d228f1b9b9a0cf1385f1c41e93c03fd7536c91780a0fb2e98f
MD5 457adab89ee2f5c8bfab6f37a69ed097
BLAKE2b-256 24cb0a9ad50267d45f8e7aa846ca5ac987285ff146b21811920c4df4ad949dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 397fed21afec4fdaecf72f9c4344b692e489756030a9c6d864393e00c7e80491
MD5 87fb1b8969c77da05b22ba8f05a09279
BLAKE2b-256 86fa34cf7b02eb2636c29a3120aaacafb18009151ec5cfcf88cb820c38306fd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d08165fd82c89d372e82904c3268bd8fe5de44f92a00e97bb1db1785154397d9
MD5 28153347b0421511d5a380e9f4321ae2
BLAKE2b-256 ccadc045321e8f152a9f98f0e81073fdb233b993565fb647f50d59ebb0b5d526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a46cffe91912570151617d866a25d07b9539433a32231ca7e7cf809b6ba1745f
MD5 a3b7270216dcd863c22250f373b981b7
BLAKE2b-256 4b95f7c2d8495efcbd7a69b2389cd2645e8fa0388209bf48ee13aede037000a9

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