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

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

Uploaded Source

Built Distributions

pymongo-4.7.0-cp312-cp312-win_amd64.whl (485.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.7.0-cp312-cp312-win32.whl (480.6 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (695.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (689.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (677.3 kB view details)

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

pymongo-4.7.0-cp312-cp312-macosx_11_0_arm64.whl (486.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.7.0-cp312-cp312-macosx_10_9_x86_64.whl (486.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pymongo-4.7.0-cp311-cp311-win_amd64.whl (484.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.7.0-cp311-cp311-win32.whl (479.8 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (685.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (673.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (662.6 kB view details)

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

pymongo-4.7.0-cp311-cp311-macosx_11_0_arm64.whl (486.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.7.0-cp311-cp311-macosx_10_9_x86_64.whl (486.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.7.0-cp310-cp310-win_amd64.whl (484.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.7.0-cp310-cp310-win32.whl (479.8 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (670.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (676.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (683.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (671.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (660.7 kB view details)

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

pymongo-4.7.0-cp310-cp310-macosx_11_0_arm64.whl (486.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.7.0-cp310-cp310-macosx_10_9_x86_64.whl (486.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.7.0-cp39-cp39-win_amd64.whl (484.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.7.0-cp39-cp39-win32.whl (479.8 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (675.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (670.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (664.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (659.8 kB view details)

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

pymongo-4.7.0-cp39-cp39-macosx_11_0_arm64.whl (488.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.7.0-cp39-cp39-macosx_10_9_x86_64.whl (487.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-4.7.0-cp38-cp38-win_amd64.whl (485.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.7.0-cp38-cp38-win32.whl (479.9 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (693.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (686.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (687.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (679.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (675.2 kB view details)

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

pymongo-4.7.0-cp38-cp38-macosx_11_0_arm64.whl (487.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pymongo-4.7.0-cp38-cp38-macosx_10_9_x86_64.whl (487.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.7.0-cp37-cp37m-win_amd64.whl (484.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.7.0-cp37-cp37m-win32.whl (479.3 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.6 kB view details)

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

pymongo-4.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (663.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.7.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (666.0 kB view details)

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

pymongo-4.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (658.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (648.2 kB view details)

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

pymongo-4.7.0-cp37-cp37m-macosx_10_9_x86_64.whl (485.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0.tar.gz
Algorithm Hash digest
SHA256 431093ef808944a14698b2a719b739fa7721778769e80c08423568991aa29c42
MD5 344c6013f97d8f6c8122c48932ec77a1
BLAKE2b-256 dc3f652c9546a84919039c123f81c51242bd869f9803e3a0b7a8859dcb667480

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 97ccb53d9310d5963df1a4543f1cfabdfd914638a5c8438234f6ed70d9303222
MD5 4ca68a13ed756c0d4ca49af03f1e363f
BLAKE2b-256 2776ba4159a32342939df4af2a0028b3bac86cf3b88e8636ed74df7b3f18445a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7a3c9218c5bc4384fa079f41b744473ada6a5f549fc11a4ae0fe7287746acc04
MD5 a7bb6bc1d3c69cb6506ce02f64c6510b
BLAKE2b-256 bf8fbfbf6bcb62fe3aca817c46304ec485445db68c405e53456f84bc34c5be45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52facf98dcba501b2ae337d21f065cc30ceb25b97ce8f17878c1ae9d781f7f26
MD5 ec00b6ab4a5d30f7b68eab7f4d6c563d
BLAKE2b-256 9912cce2af4e0387c21fdb82812a1c688d236ba93e04b5ddcfe71ff958767ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aebd99aaea95c48fba24bc3d7b72e7bf70e06df4c647de938c4d3dce2fd25a1c
MD5 6f7497163cbd5cecb40c547cdaad56f1
BLAKE2b-256 71abab518bfcae6fe7dfe0767eed9b6c4c8197d0224a84a4806522dd9044935e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf4187bc91bd10e29857775651101d0ec26e580d6b46a8c5cbf93928358ac3c3
MD5 4028adb68d4fd40fab31900202906231
BLAKE2b-256 ad2425174c8327162fd0d01da62906d29262d058569bb5950dce8e59c3f92216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8885f825203fa14ce863b462effcd93e07bfc6e582b3b93cfcde5ae42ccc9923
MD5 f11fa8e2e11a70c909de963ad78f01b6
BLAKE2b-256 042a7b9912c2c35ed9c4be4113dfa899f93c1fd6d648fccaa7f67e78d7511566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f807dadc8030a5b55915f78fac25393af47bee8ccb62b5a6c5c622274ff4adf1
MD5 d4fd32b9be1129f306d6e69afa76c056
BLAKE2b-256 cb69b9ac47d9ae9028a02ea31e037117e648cbe9baa5d4c7a82e0f08177502a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ad32bb7e5f889fc5994001f7bb8bf945b52e10e428a563dfce0661961eae224
MD5 eef552620165be85bfe0a027c4f2b44c
BLAKE2b-256 861a28e5bbe228275802474f1c91c1615406a7e865deb9f4fc09cfeedd9d9ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36d05d1ff861dda7c9e84d9848ea6f2b5d2245ae1093865d14597de29ba95b37
MD5 5cd867cd0b23cfb4a6728de20ebc5ed9
BLAKE2b-256 d1d24d3b5a3f180f62ddf8e4c73538ecbf47f2b1fa98165b6e86f9186bcb811c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f1d57edc2a4bd96ae5741e4d83d3d54695174fd9068c88c89e12f7262be4de4
MD5 1f3ce0f36ca8889683ccf19e7cd5360b
BLAKE2b-256 0c04573162bfcbab56d059d2d9067048f51935464ffb9b74716016bad806df39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 98cb932ab936d702e28cf8da1982dcf5e7cfc35736b7516c0df7aaa46c63e0e2
MD5 6297ef000377680323b3698e10dde06b
BLAKE2b-256 f9dfb24e38f198efac13739868fbcc90476e3c2b3bddc1ea8cbc1cd063d24582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44eb2a3adaa0916f2fb6812d4d805956fd376b7fceae3b62f5dfae5e29330786
MD5 ac3513fc25da9e4edc3015bf67e838c4
BLAKE2b-256 6d2e3925fb47b07f539f5460081f91e8d9620de9db41939ca2a40a851e2622c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c82105c91cf95821039aca48350630435e7be18989496b6292aaa8779fa5fb6
MD5 3a90d458b6c3bd715171a90b9bd3298a
BLAKE2b-256 c19349d02232043387571d91d401575b67dd67530f6bf8d1ea4e78ed0d39383e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78b0ba6d60c7f2ac779909ac53383c83584826a304206559599c46a33366622a
MD5 dabda235ef5885c031b156fe38828a9b
BLAKE2b-256 996d3273afdbb2350944d0d296f4005d60c490e034c562af33a22c4f33461a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8af3de7fea21b1ced0770766ec37a5900a62b45fe4b8f1dfa521226d591dbf66
MD5 ff99ed3da4089fcdaa8c77dd841f13a0
BLAKE2b-256 d1cc33832b0be29a1597114c24ef727447bf76ee5ca77cf8f2bd50d18318648a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2161278182f3163d15afc3c578097ec20c844ac7180e41134a2a2b5c9ae77b9d
MD5 cd46e488351011f3a3ca7cd9e79b58dd
BLAKE2b-256 aee4f80df79ed64eccd4dfb68b33367826a4f56a2459b27a6685fa3c1da15520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db2885773af0c10420e6bb86e84ee780bc3817d45a29ef24d8f6376ae2351eec
MD5 4c6a49498281f30fc6f695df60b100bd
BLAKE2b-256 8e2ef13c85a54bd90b5a6affde9b028c7bccd0cfb30091e1b5161c7f90e3ee5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9584be3d20ee26b53c0b1e25ba38196b7f65f594f48211b5ab3fa12b428ec6a9
MD5 adc9a9f5085c2883415edaa835ae09ec
BLAKE2b-256 2952255d8e95ec092fc69e84d76bb4990252256fa547255522b16c38338e299c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66b490775aa4542e0585ffdff1d0c6c4279536c852334f34a6a9a5c882beafd4
MD5 2f8f57c73ea473f1f69069ce07aa778b
BLAKE2b-256 b42898d3dcbc6698d03cd76a97f3480276bd971181d23a2ff4b60ea3c472b147

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6c993fff4c110f6de4d76b76af97733efecae83b688cb27d1a3c5431415e3803
MD5 2321f43167756b5164cf859328e3478e
BLAKE2b-256 4c06a762c2324c40dcc803d13377221bfc9e012ae585980c0b3573352de4cb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b2b49670b32df8cf6650133cf439593f0291228ce971094c62c3a478024c7d1
MD5 aa5a4b09b3ed2764ee41aed5765942c7
BLAKE2b-256 68840165536a21f4b9fe07b47e49515e15c294df292b3c563c9a312a53771bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7be2e57df38fa9b1b6f9ebe5bedd38118b511d3bdf0d9e77158c476542c9153d
MD5 494af9cf9d1f633a3ffa632b2e47e76c
BLAKE2b-256 4646a83c563f21c1fac80ffdd23b9353edf251df92d3cef0912f8d903e7ee1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12db8e8768bd0d4a433eea3463f05648c3f65f262776c777a0e19e7c55f27a73
MD5 5e4060ecdc2ec4d4ef386417743c39dd
BLAKE2b-256 ed09f2c78a67ba01bf025a9ba64eca9ac0eb515600de00bccfa7046299e9e198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8c4cbe5a1258b9f3a49f83781c8b2fb58f39a682779a3c81dc444a609cb15ba
MD5 8a8151244d7a61a15373ff659b61d8a1
BLAKE2b-256 9506dbc86718d7c7776cd187c2875bfd1ddd1c40a1c66d712e2b4841752d9ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5366f28b2115120611536914540b0d247a89b09bb80bbc78893f246a584165b9
MD5 dad4e3dea8cf0de1a01c8d8ed37f5019
BLAKE2b-256 54b7644a24c3e38d6376800d9a1d02d33fe737167ea06e3433da1fa6c05fb01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb00787bed1939ef21ffcb09b3034b193c3c6e9838724e2c05ef881cb2b03a33
MD5 2ba3f841ade41a4c641396a51b826ad5
BLAKE2b-256 f927ed0d29a0e71115a22025ac223d9b96639c5de37a456caa91f1f38085d83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8449b6af19cac09cce9d0834c196b29b72b29e05724f4ea208b3f602fdd47086
MD5 eac73d74c276c2c10bdf1e5f787cefb2
BLAKE2b-256 8d75b9b66446749cd342fe56ff285b99e1e6e6af81cd224fe9b1cb5b933e74c5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cb809ff53ab3110ebc43a5e47aa945bb97e4ed9bc9beb07f935f5c83d9077e67
MD5 4cc714af3e1a03d993379acda84a5f0f
BLAKE2b-256 9d375c260a83a552e1a028d384ed5d7abc6756335470e06100f58ff25718bf98

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a292ee4babdd632531effaac95da5f211caafa6a039c097a1b18a4dc0d52488b
MD5 b2e02bd914d617119d1bd352195bcc08
BLAKE2b-256 537e3a79508daf52142a5ee7c77b586f9ca226b06b401968d34842af4e378d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c4b0d8393fb991b3dd934e891e064ae804e9267fce9d01d2f16b25e20564e3d
MD5 265952f9e4d86c4473d697ee3f9c53a8
BLAKE2b-256 3f810cae289604d15df9c5f318f798372cbda8196845522027adf41bfba44dc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50865177882df0badc879c5b20f20cdc9c73494f0e2b19a40534af9c90018b4e
MD5 a0af57d21667d3d3d9af3ecba721be04
BLAKE2b-256 4c5ae968741e06f0d0e40616a72eec7bfefe4e5d44d506ca32918f3ae3397827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0dc2e365b14cb768898429e4331c58587be7143ad230858d19e8dd032f0adadc
MD5 d02ee6e78cf15f372561a90db790c943
BLAKE2b-256 3b753abfbf64bd5a64389ccf21114c028fad6d90e3fb27e76715542dd1a1cf0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 030dba8b3e1cb29f874739247e1eba1d01118a11583c62145c707a6e725d416a
MD5 e4d4f4464d48d76579005bd8eaf1f7b4
BLAKE2b-256 3eb49b18aeac22553e433721b137b83bc3ecddd4f6d75cf41a3b1161fd960f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3a49be20a403d86eb1c559350fb56f28a859041756159eeb00e89f59b6e1288
MD5 7091f9af9c3fce5186bbeb7894f77236
BLAKE2b-256 c5f2b8c11370fe63740fef3ccd874fdf1da049005183fe3bfcc52e294cf22d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36536a41f08180adc647a21ca12dba859a23d841d28ca8fd3976c8781ed8290b
MD5 720d0a065fb3a244e2dc4f846153895a
BLAKE2b-256 7d0d33ed3d30e55313df617235601f281f9079588e0f6198b52671f76bfeb314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7530ea1da6fe0bb1960390ba6523483dfdb2a6239d0e8058b1505cc2a79c75f8
MD5 0a5dfa6a2af7f89e009d3823617e208f
BLAKE2b-256 922f764fbf09b98737a0eeafe7dd5753fbdb55908d5792d132e1b66786fcf253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c85f9824a7e90bf49aeed953e63942bff499116312e555ccb51bd3bf7ebe9342
MD5 f5150a54cf332acd7961b475074ebd26
BLAKE2b-256 d9bed1b248b8d55676d9fe87889688c93934fd321e99e56a3794e544cd9b8c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7a00cee5b7a4160eed9cb43a2539037f572f01ed7261c2d1b4f7217060dba61
MD5 e25691587da9b39d148c1cf342157e94
BLAKE2b-256 04889f38fac8e94927c2e8c1789f73ae0896c6d1158a585096a306d1018b1161

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2545c2be5ed25b1e9419cde4269d6a744076f80eaf86695d2dd888bddac29dd7
MD5 23ad2b439005c3e832a23d3df43cf459
BLAKE2b-256 40533be406f3b2c5d247d591eae5774e7370a2dca252ecd805ca649b577d61b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2bfaf7a7eb6a91dfe58f384be16fd895e040d17236ee82217d1be9fc56869dc8
MD5 7f2d323d746f7a2dab9678a34eed359e
BLAKE2b-256 09e1f2b9e0c708c1687d1a22265c6b505b3d3aa275513b40ac9cbc5e6042dc4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8ff95728965e633591862bfc197018d25bc349b5cd8da080acb52a2d17a6e95
MD5 b8d6a847db0684c463984ef7cfe086c9
BLAKE2b-256 5f7bb3de6066de1ff3d2496a374c7aeae43e9ed194216a5524397f6ab630aa69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7b8bd94c63cef8f5bfbb29568934213d9730381db94f467f979c9e5aaa27130
MD5 342ad9c68cc00770c1302c127bc56a23
BLAKE2b-256 263ba2e7b621395cb9800f509dc157430432a5415c4cb152d26ad857228d3f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cefa4e9be8bffa80de1bd70ae5ee79973e5db10befabcb25289fb52231a0dcff
MD5 8595633f0a8a83c7666b21827fe1dad2
BLAKE2b-256 abb32c10b8b7ebb2d4e6be1c86392b1c48037ae4a904f4194082e3105966afca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f1a2ee91a97904cd21bddfce58d1868b6ea67b99bdd81dfe9cebfe35d0d751b
MD5 4aedbec31679e167b44eed5bbf2c1866
BLAKE2b-256 60fe3230d90b7e16a24fe2f206e548712269b65e370ee8b60868e0af7149a03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1864f224b1793ef8698f779a7808e2b8c4a8f26bd0612c578412f62d6e99be46
MD5 8bcc9f0f9020f53a05f3f79743ac6be6
BLAKE2b-256 df5524b81f21d1a0ca2c593a6281619b527044fb19a6c0c98864220cf4178a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7214b7599a9f2e4ed01ecdc034cbe8f2926954bfdad9277390dd1bccf9fd6553
MD5 0a219731bb86f46f9ace0f8a83ce6236
BLAKE2b-256 610bb92f368081165dfbd1354ecbb5b33b19449076882b993e0de39f033ff0aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07265c14aa40259771255dbf59f9160a3690e82522ed02ab07e0e5c3045bad5b
MD5 28a0f356991cb0f6da79b5abb045a707
BLAKE2b-256 e5bc006a56d95a0cdf52f89b1911e7cf0b87db9ce5b6e082d45ca3c05cf0f49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5307bfda4f39d9f1b3df9ab96b22d44bca458e44286ce806d716a2ffed2c46da
MD5 eaf8c478292551c522803aed8402838b
BLAKE2b-256 defbcdf843ba3035f1840b7f04434804d2ea177e499fbd4095bbf272d190bbbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbad9290b32ff1fc38bcac42699b8ea6a7c49cab081ba54761f3109bc5703248
MD5 f4859ca23b486dcd1d0a7faf8b96d298
BLAKE2b-256 4b740cc64121651f69f2816f079c210b1353159fe760500d76e9bcf85d04c887

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 69865d5739822c277d075a50601077767706e9f0862562e116ef13969d09fc9e
MD5 7c8989173a09a37f127b99aab15b57ac
BLAKE2b-256 57c5f7f27248ba90af830ae5da400f15fc6581347eec7f4040ae3f5e399c272c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 31ed6426fc68d500e2f27346e4ce3cc4fd3438adc99a3aaae41578c8a3b1f467
MD5 8d37dc4899f2ec0fb110b6335dc39026
BLAKE2b-256 06e57c1cdb50cda0d5752958ef7230d80779ae57d0bf70e7dbd7c5012b462f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fc34b4d92d5d8671be6b728076f275ccfe8495c7e6b74750b634190e17ede68
MD5 906ff84446968646c99d29d7c6ab41cd
BLAKE2b-256 ea493a912ce2c2105229677995b4ba2c0ac22d3fe684b0be84af82a309d5d293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16d7fc4891f5482e42c35be6931e9cf6b635d7d95056ff45b56bae5f0384830f
MD5 daa4e5fdbd6ed91412fe3db60809ab08
BLAKE2b-256 a18033489c2ae51fca41d7352d249f75347349f8c422866562ebcf51c665a761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6673daf8fc23a96934cbb7a3626dcfa3ae21510492047e6003dfe3f26e62886b
MD5 b60cba956534d7f0d64c3615ce61d819
BLAKE2b-256 34f6c7d9eeac45203bf1037405a53a30096e93029d28f2d23f982937a9219871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f53cf5bf65dda3fc1b5ec5f760233a41b282db3157d135e9272101f0492825f
MD5 75ace96a8792ff2fa5038ab38dff0e5f
BLAKE2b-256 fa66a72e8de07bbe2be67333f9108a1d5dcdaf2e48f6757cb3be57ddb64625e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd514420eb09bba897016b7f1a2c17f9f3f1a7bc320c0505c59c3225e024b51c
MD5 b5c7cd13169bc2036ca644cdb110e45d
BLAKE2b-256 9de4624480c826a2c7bb810c3beb5bab4585c0de565224a5045103009df3bed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3784063fa43a0019b6a73e1e63b7fcbff4ded4d0ec5442202aa3caa12be9ef8
MD5 6df21b631ca3add447897edf961aa7f4
BLAKE2b-256 a76dc73888421afaafd7a9e600ddc493ddc36c453e424f45a55d57ac48347417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4d584b249c79acae86729d216a5185d833a90477d566f094b47d39620493870
MD5 3efae18e8927bbb9df2894cfbd46f863
BLAKE2b-256 a903ec57be175eef1de37eacad87a9e0ede3a5fc9bf8ddf5bc6ef0ab77e5e0d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41d647fdaedba2f5b5c92299575814c164af44696fed3a4fc0d0df4f29eabcb2
MD5 1b1e7f45a7f096a725eec759977ca9be
BLAKE2b-256 c4ad18fc07ff8185eb0674b6042423865519642b7c0ecbb6a575cb8a58f0829d

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