Skip to main content

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

Project description

Info:

See the mongo site for more information. See GitHub for the latest source.

Documentation:

Available at pymongo.readthedocs.io

Author:

The MongoDB Python Team

About

The PyMongo distribution contains tools for interacting with MongoDB database from Python. The bson package is an implementation of the BSON format for Python. The pymongo package is a native Python driver for MongoDB. The gridfs package is a gridfs implementation on top of pymongo.

PyMongo supports MongoDB 3.6, 4.0, 4.2, 4.4, 5.0, 6.0, and 7.0.

Support / Feedback

For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you’re more likely to get an answer on StackOverflow (using a “mongodb” tag).

Bugs / Feature Requests

Think you’ve found a bug? Want to see a new feature in PyMongo? Please open a case in our issue management tool, JIRA:

Bug reports in JIRA for all driver projects (i.e. PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.

How To Ask For Help

Please include all of the following information when opening an issue:

  • Detailed steps to reproduce the problem, including full traceback, if possible.

  • The exact python version used, with patch level:

    $ python -c "import sys; print(sys.version)"
  • The exact version of PyMongo used, with patch level:

    $ python -c "import pymongo; print(pymongo.version); print(pymongo.has_c())"
  • The operating system and version (e.g. Windows 7, OSX 10.8, …)

  • Web framework or asynchronous network library used, if any, with version (e.g. Django 1.7, mod_wsgi 4.3.0, gevent 1.0.1, Tornado 4.0.2, …)

Security Vulnerabilities

If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.

Installation

PyMongo can be installed with pip:

$ python -m pip install pymongo

Or easy_install from setuptools:

$ python -m easy_install pymongo

You can also download the project source and do:

$ pip install .

Do not install the “bson” package from pypi. PyMongo comes with its own bson package; doing “easy_install bson” installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 3.7+ and PyPy3.7+.

Required dependencies:

Support for mongodb+srv:// URIs requires dnspython

Optional dependencies:

GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:

$ python -m pip install "pymongo[gssapi]"

MONGODB-AWS authentication requires pymongo-auth-aws:

$ python -m pip install "pymongo[aws]"

OCSP (Online Certificate Status Protocol) requires PyOpenSSL, requests, service_identity and may require certifi:

$ python -m pip install "pymongo[ocsp]"

Wire protocol compression with snappy requires python-snappy:

$ python -m pip install "pymongo[snappy]"

Wire protocol compression with zstandard requires zstandard:

$ python -m pip install "pymongo[zstd]"

Client-Side Field Level Encryption requires pymongocrypt and pymongo-auth-aws:

$ python -m pip install "pymongo[encryption]"

You can install all dependencies automatically with the following command:

$ python -m pip install "pymongo[gssapi,aws,ocsp,snappy,zstd,encryption]"

Additional dependencies are:

  • (to generate documentation) sphinx

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.

To build the documentation, you will need to install sphinx. Documentation can be generated by running python setup.py doc. Generated documentation can be found in the doc/build/html/ directory.

Learning Resources

MongoDB Learn - Python courses. Python Articles on Developer Center.

Testing

The easiest way to run the tests is to run python setup.py test in the root of the distribution.

To verify that PyMongo works with Gevent’s monkey-patching:

$ python green_framework_test.py gevent

Or with Eventlet’s:

$ python green_framework_test.py eventlet

Project details


Release history Release notifications | RSS feed

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.4.0.tar.gz (828.4 kB view details)

Uploaded Source

Built Distributions

pymongo-4.4.0-cp311-cp311-win_amd64.whl (453.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.4.0-cp311-cp311-win32.whl (449.1 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (652.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (658.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (666.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (651.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (642.7 kB view details)

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

pymongo-4.4.0-cp311-cp311-macosx_10_9_universal2.whl (512.2 kB view details)

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

pymongo-4.4.0-cp310-cp310-win_amd64.whl (453.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.4.0-cp310-cp310-win32.whl (449.1 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (648.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (654.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (663.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (639.0 kB view details)

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

pymongo-4.4.0-cp310-cp310-manylinux2014_x86_64.whl (670.5 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0-cp310-cp310-manylinux2014_s390x.whl (673.3 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0-cp310-cp310-manylinux2014_ppc64le.whl (681.9 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0-cp310-cp310-manylinux2014_i686.whl (663.7 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0-cp310-cp310-manylinux2014_aarch64.whl (667.9 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0-cp310-cp310-manylinux1_i686.whl (663.7 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0-cp310-cp310-macosx_10_9_universal2.whl (512.3 kB view details)

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

pymongo-4.4.0-cp39-cp39-win_amd64.whl (453.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.4.0-cp39-cp39-win32.whl (449.1 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (653.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (662.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (633.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (641.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (637.9 kB view details)

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

pymongo-4.4.0-cp39-cp39-manylinux2014_x86_64.whl (669.4 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0-cp39-cp39-manylinux2014_s390x.whl (672.4 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0-cp39-cp39-manylinux2014_ppc64le.whl (680.9 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0-cp39-cp39-manylinux2014_i686.whl (662.4 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0-cp39-cp39-manylinux2014_aarch64.whl (666.9 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0-cp39-cp39-manylinux1_x86_64.whl (632.7 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0-cp39-cp39-manylinux1_i686.whl (662.4 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0-cp39-cp39-macosx_10_9_universal2.whl (512.3 kB view details)

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

pymongo-4.4.0-cp38-cp38-win_amd64.whl (453.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.4.0-cp38-cp38-win32.whl (448.5 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (664.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (668.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (654.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (652.1 kB view details)

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

pymongo-4.4.0-cp38-cp38-manylinux2014_x86_64.whl (687.2 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0-cp38-cp38-manylinux2014_s390x.whl (691.0 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0-cp38-cp38-manylinux2014_ppc64le.whl (701.3 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0-cp38-cp38-manylinux2014_i686.whl (678.8 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0-cp38-cp38-manylinux2014_aarch64.whl (685.2 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0-cp38-cp38-manylinux1_x86_64.whl (668.4 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0-cp38-cp38-manylinux1_i686.whl (678.8 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0-cp38-cp38-macosx_10_9_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.4.0-cp37-cp37m-win_amd64.whl (453.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.4.0-cp37-cp37m-win32.whl (447.7 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (631.8 kB view details)

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

pymongo-4.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (637.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (644.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (631.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (641.0 kB view details)

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

pymongo-4.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (629.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (621.4 kB view details)

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

pymongo-4.4.0-cp37-cp37m-manylinux2014_x86_64.whl (653.5 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0-cp37-cp37m-manylinux2014_s390x.whl (655.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0-cp37-cp37m-manylinux2014_ppc64le.whl (664.8 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0-cp37-cp37m-manylinux2014_i686.whl (645.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0-cp37-cp37m-manylinux2014_aarch64.whl (651.7 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0-cp37-cp37m-manylinux1_x86_64.whl (640.5 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0-cp37-cp37m-manylinux1_i686.whl (645.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0-cp37-cp37m-macosx_10_6_intel.whl (512.2 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

File details

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

File metadata

  • Download URL: pymongo-4.4.0.tar.gz
  • Upload date:
  • Size: 828.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.0.tar.gz
Algorithm Hash digest
SHA256 a1b5d286fee4b9b5a0312faede02f2ce2f56ac695685af1d25f428abdac9a22c
MD5 6209d5829e713cc206b45545eb1d2fec
BLAKE2b-256 ee49f2487573da7a2ee0e19ca488a235a23338b076e670368d447095b634c605

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48908eaca3dccc2af8b4eae73ee00d2e1e7ffe91ce630c8906981c075161ad8c
MD5 f02d1556d64b35c68f14dee587989254
BLAKE2b-256 cc7ee0881fd797a4e44aeef23ee003f7132a8bf39101092b3991524ba1cca1b5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 23bfd793be088470a1c7bca5c907ae3180e6a4cf731e96a194c89413c042cf4c
MD5 c216a2a993497106021e2ac64ad31a66
BLAKE2b-256 44e13b0eed556c43dd0e3916cf9b9e437886364d9d5211c53bbdb11e533b0907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8d482e2ae01a5ac17183afe8c808cb6919889bdf22f0d3663105ccf0ea89adf
MD5 7daa26c985cd943788ec9628abf9a160
BLAKE2b-256 bb56f66e71ebd5ffab9fd96b16b98cadd2ff6a84f59de3780c2e266b3607889c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2128592140426044d59a89f30b7aba1e185faf2553b3d161dcca0aa970ba40c7
MD5 8a5a4958810c7814a3f4965660f3e337
BLAKE2b-256 0ef8e10efcac2eda3e3a8e4f083434d1ebd9f1d777e479386debc33bccf28f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38ece8d2892de19fa437bc4f60b0d8c5353b185e8cc1c543212a488c93c74834
MD5 f6e4753da852fc3aa49faeb703c27a60
BLAKE2b-256 f00102bf66b84b85f11f79d5f18181f08bb6517508c71d141d4cc138fecc5112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02060ced24a26e1c73b6f491b728fe99e73f38ba3a1e4b882dc7b873d419ab3e
MD5 d0e9089e745157b53486a99d485b3350
BLAKE2b-256 6d3b38b8ca61c2fd1bf608ad8e04d54b669a7fa0654e57049b6c6dcac70b7ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0ddb34591f5e19296ef5b643e23ec5179a7c1d2b73c17701f50dcfa493e0252
MD5 8b0e478768c9682815ec69d3c0a864ce
BLAKE2b-256 8b63fd3bc7dd015935d651ddbbdca806d2230f17865b73b23fe23165f06c534b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d0a8f16a97758ca9af1baa927521b24175dba7e95ce745d5bf64a5c75fe61df8
MD5 de021d3fee50a0a5e5fda7b7141b1b28
BLAKE2b-256 1d1e86dbf34ec9bdc7c7aff4fc1f28cad265bc17bbf99b1ba4616d3ff62b2e20

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 071c256fbb35c6942970b8b6eb6b89bac302db49a2d6d35e68c35b442a0ce710
MD5 0571de30e716aed82198f49497c9b265
BLAKE2b-256 f303a1390f87c9712fb1c32e6f384970a86938f6971c90dbba04bf00f1dcf6e0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 34ea6ffb77f0cf8d01c4c1df60dc68141859ada1507c326380ef81e23b58c9cc
MD5 29a1d37e5ab249e62f6581c584c0f323
BLAKE2b-256 5877cc4143e63442bc1e1e3112c421841da6790947d2cc414ebe7562a8f58e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff281a66925790a05e3c7e0de1350a0992b66a4e51724317ac35026ac856ae28
MD5 9f2a825b7535151bd8c03ca0b791867e
BLAKE2b-256 45d569f8ba5812fc605b977ef74fc6d472364d4e5dfed45874cb08ef7586eff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02f535bc8f8d75d45ec6cd944804d466a73a46afc368d6c36e232b887edd0475
MD5 687abe9c9480f5510e3936a86cf3fd5b
BLAKE2b-256 bc06eae1f0a51441a2623219fac9b14761f3a84088eb9855e15538ae4e772112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c6bd8470c89b2cd6312fa685dbf4c64371a04a7e4a3a55e2007626f8f997103
MD5 3da02092a8a8a6af2b75d3de5461a880
BLAKE2b-256 fb7209663c02698b2c1589847928c75284e78aa9e2ae9fc259f88626a0fff82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc5c56169effa5bf9fae5e9a66efc211b3f252869d99d6c400792eced7f213b9
MD5 55a0cfee2a879a3f1a10401c7be0d454
BLAKE2b-256 613213fd2bd810607f13c6bf320ceda63038c2563d408161aa7d4a49680ef913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6aa18b255af46641d167378f8b8f06becb6eb1670f622aefa34e502362267fa9
MD5 bf23bbca4287d2f5d5f559d85b2db4e8
BLAKE2b-256 34f08d6b7b98accb19ce7070476dfd4e9df1ab54179a18700a453ce478fb7e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18acb807de39eb9b8ff7122094920f1da79c1781dc96cfef73dd97da51448f7b
MD5 f25127dfa4c9130b9ed6ebaae1b5ee01
BLAKE2b-256 8c4f49e6761dcb12129afbee9faef6f49f9cfac074811e837d7fc68940b274a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b43ae6e1c4b972761065f77f3eff4b914154bc5bd74d632305875c5309eafd1
MD5 9a5db9af632f09dfdf36492466780371
BLAKE2b-256 ea39ef57a0423ca06b07080e8561012ea57ab170b5706a918e1a225eca3737bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e0fbf05bb74a3f610f970a178bfb4e048f6b82fc22dda5e14e0ddfc4d66c9b7
MD5 e1ddc0e9a9b13bd1c0a125e04549eb50
BLAKE2b-256 a810ca01b9e6a1a96a218260834dfbacddd5c014ce46b488aa8468dabfa1fcb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebe1954aa85e622674ea01828419f129527c95c40a392e0f7761e242d85a772f
MD5 3139889caa9543ae63ef3126617bc95a
BLAKE2b-256 4711e6319babac2909b2e598c98b0c7356ba80c0780fbcc2622a5c903688993d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2578f077b9448b7a420b3e9b0efdfb7ecdb2a3c27e00c181610809717c900cd9
MD5 5189526f6d4ab68eafef7f57c971290b
BLAKE2b-256 1c607536fb2381181f053dc8fc058e7d381f91878c39f2794b19a40f830cd608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 88ceab5cd84f7d86f018fa66377d6f90fcf3643d56283f2f4124ccef58390a0e
MD5 84602fce9fc1a29c91a24b2918676797
BLAKE2b-256 65c9e4a8a4bc62e067083f804f35d6a05709f6ffa9f558b860811c1bf3dd8ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 50294bae0f20ec4f8d3f5eefd133956f582942c156d08f6b88f2a1b1efe04c53
MD5 c52a4f7509806991cf079a1cfa6454c1
BLAKE2b-256 92cc5329775d7fc74e092da556697d7eb1927dad5da1e319aeb1004c26617d33

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5e13ba36f18489600db28da13da73e8e190bd48899ad268cb482fe726d31a922
MD5 9437f9658f2146dc2a7ed42880e63992
BLAKE2b-256 104a3b6824a336267971c0c4bde924445f5aeb9882ae5918e9812d428354848e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a28ad09abccc9f71632398febfea12d3f28cec7e44fe6f2b16665807e62c298
MD5 ff42b6088088498e1224a7c3b69fc368
BLAKE2b-256 4dbcce2dbb6af2dcf5e6524f13a21f07f71a76e60feae88443a9427e64d4217f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7eb221dcb9e27415d2bd6e2d3001d1da0f351e2aa1564f6f3987f2206c066600
MD5 a0a6ddec4ff47c88b9d28bacdb56bdf8
BLAKE2b-256 c2a0d30074400b9b7ca94be63f865921a5d8b38295aeff499a26a3fa05004690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78be52dc21f578a17e2c1cf1a222d4e64e91e0b1dba7e18f5ff7be7c0bf8053f
MD5 cc0c1d42756320d04a32980e576114a9
BLAKE2b-256 5667cc08c0459ea015337c8307ad22488523257a2b17e81f94e2f8f9922be9ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2875f0bdb605e56630f46e12082f26ac2c680a5473f5f154b7131841727948c
MD5 5b1ad6a9eaf2fe68ffb586401de58706
BLAKE2b-256 f9f40c2b206036177cb243379b880b14612a912579d3a68d7fa0ca289354e2de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2caac57d2a0160dce877e706e94e8a15b87feb71c257ecb8b5a039f7e98ba99b
MD5 9838862cd3f8e453ba02385bed9d3f0d
BLAKE2b-256 ab7c2d58cb992424fb438400340c22f5e1d00b6fb945144892af1871ae253cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4b65f4e66efe43dcc5fb3a285f899e798742b8365bafdd832054675d34d640d5
MD5 6c9e3c2c0d0b33e0319a3f9b3aaae907
BLAKE2b-256 40f1ed13167f9e56c983e1acc24900840c0cd293fa402dc84a31b34523b301da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 196c2c9ffccdf0ad4efdfae29347c4e2ae52c3415e958736cda84e4062553e96
MD5 95d23900bf49b3b30bf9f03201509b90
BLAKE2b-256 a00544473b97acdcfba17a78df5cab12096f83ab525d83ba11bca87e56869efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3eed06a24157a891eac5f73ec2400d22cccc95cde78a3f0e2b90c5ab17f1cf1
MD5 36f0be4f00b8549ee1d20e05d4d9723f
BLAKE2b-256 f67fe1b7b36bcea179cd8918fcc787ef6452e4b131ab9f7e45d656378df2f44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15cf004b6329da48078d7d9d1c79c802df6631b94e5a1ed9a112d713cc0f66e9
MD5 e51fba0938d05afa8f8c239d2825b1c7
BLAKE2b-256 9085c003a966c13074778e9a1097ad5f835cf259c10467ffc9f9505ba803a83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6acedf0778b79b6ea111a28fb23760b5f6b7b1c3e1f1e3595cf87ce709bce344
MD5 dce4058d0ecfed7625a978e643072dc3
BLAKE2b-256 0798a757490bb1287628c4634e9e13e51aee96d52e55fd6554b4b01aa9f9e95a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d8a8aef8724058d416536902e680f2b06499e58c54220becdfcd3ff8e5dccfd
MD5 f6f0a884cf71d75bae31e94212280f32
BLAKE2b-256 8f9bd4836b918c834172cb633fbbad4484d25fb24577370b4aa18023ab666d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a0cfab6b6c1826e8dfe4453c08aa70343a693dede7c09dca564a9b1f2393374
MD5 dfdea5afb9ecd108da1e5ac4a9b1aabf
BLAKE2b-256 a370372d0df8d038d8ef3c7f59afe9bdb6ab267bd1f9f602937921417d74613f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b213fae58d6ba14ac71a481691981e582ff5813630f3a82aaf92fb79399ba0ec
MD5 bcb5fd80d18c9b73c0e23125db8cd6d6
BLAKE2b-256 9ece58316b273c4adff25a2e0ded790156d0f3e76a9f003d6ad0c17c090bc06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 900c773d4f9d68747bb19ef40c35c701f4a919a6b96efa2d4e1cb50074a9738e
MD5 ea189e5489650d35e6b71a0281337d0b
BLAKE2b-256 289943a2eb22d2d234d67ab2f37cb51ef00e8a79a21c50de1219a70434b9e0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a2564ed1a07258a73f7adfb0663aa69022f1edc431d11aae4a32a29e7755d3c
MD5 73286745a172bb3cdcf7ba24ad695dd3
BLAKE2b-256 220abc23faf269f482d5ed5fac7541a423a26b920f0fb4f3cb901dd4da00e7d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4481f2796d53cd0c74d988a23a11266e6cae03be3878f42ed2c221b192d14f8d
MD5 4d3fd819a88cfc482c626f0c1639c0cd
BLAKE2b-256 a4de18cec47ae9411105b923d12516c80e5d418d4ac61ad6bcc72e298ca8e0f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a5551491ace0f05ae0bbe5a496c4daf216d9fc98e182940f471c228235b1626e
MD5 a73282941c1eb8dc84cbcb421c8bdb9d
BLAKE2b-256 f17fca370f5d6c51f806facda385615eef54cfe2ae4ed7d340d7af75d40f2708

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8fd68b540fb70954deeb2b6a1fb2f34d6342bcf221e003e6063e3b28e87b2778
MD5 548214677230a8b14cb00b68fce0e7fc
BLAKE2b-256 7d9d5255cbdc7703a620ddd9238fbf35af01bd2f209df6057ae0381a8fa5acd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eba5abcee347bdaa7f1a3f18fd97758f0b75a6dc5704885e793aeb51e8e5e32
MD5 ff8ec13d13a9781cd9b699ac9e5f2e01
BLAKE2b-256 de868246afa612ea331d2ea34efc3e23711b9ccc92abdbf53a8c9a27016e3533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf4e83af0bd3cf4c98eaf1ed2d028afd520bdffd6f7570f6cc5a44e9363fbb9a
MD5 c4c9c0037bd693d8b8af572ab84fe933
BLAKE2b-256 b609b2193cbce229b68c51ef7186caaeffab7770529e518960370cd998baf657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d368def4564681f681f4fe1ae906239bb4dc7dd403c49d15d3a6fe2688950f13
MD5 bf519c9cebd127cd13115b91caa69234
BLAKE2b-256 f5daa5182ee02a20f882875b3dcd8c7bfaeaa8d5ba15f5eacb620bee7557ab6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b6603315f9a15e5ed80143a5a744c695a8503e27a76fb5828f7269225f39ddd
MD5 1a93d68f22fa9488065f040a21ff0d6a
BLAKE2b-256 8b22d692fa9ec8464748ba28d730d80db6c91f60aeac200ae1b103b955cd99e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 801094c80d117b0d476f0afbe16cdfe438cc4069c5b0f2578564cb4b3c83f80f
MD5 f7f1865e5f1187900007ab6336943157
BLAKE2b-256 c28e3ea681415a05ae16b5ac050cd191bbd30022b2a69ecf7ef57da50b516b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8edb59aa5c10a3fb8d3a0c2cac8ba58c0d8f4e56f9003378ac1fff503a8d3f42
MD5 2b223c2bd4becd0c9c524d84b3acf52a
BLAKE2b-256 819dc53eea27405d8c0e40b50aed3a6d99dd973bef943943b60c5660dd2c96dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2e496753e91bc82dfbe1f3bab21e0907866dab3c810e255ebaf991cd5c5455d
MD5 fdd57fb75d0fd3e1c10be8c91b2cbfd3
BLAKE2b-256 1e9ec941ad296350d8219d9ed785d9f8e00fd4344af225cf56f46eb8bc100cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 274eb75231aca12d54d421852fc230e8655e4b33b30e9eb7fd34269955e125dd
MD5 49c037fc86d1ea421047022a64a4502d
BLAKE2b-256 44ee26f4c22db9428c7b6f68e51f73d6eb3efb5ccf3aa4140a3a805346f305bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f38bbab4d13d180ed00c2f107e36503bd2e2cc4c6d4ae2734c0a85c2edaf2d2e
MD5 d570d0ec52add39bc77d95ca04acde74
BLAKE2b-256 73033208e15b78b79b9af5f8c2c423559aa44495f9c448aea3a277a3ce6ac414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29956f61ab885c28b190ff817de7ad0c75a470699632b44848b102640fbf9e73
MD5 eb79927068960e57f8fb987b361c6582
BLAKE2b-256 c41b154e964fcd165182691a3ce696db1878cb0e6c6e6fc87f7a670e902b90a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b100895d6b57d6a7e8de5fd15578aaa46170b56d978baf56182c10e8ba725fbf
MD5 4fa211c442be0d7a2584ce2481ca9f0d
BLAKE2b-256 e2c37c3952d34db8332bfd31bca201caaa72858e99a605ed5ed53165339a056b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a1bb096579ffa59143a8d8fc9d4692db3e04305cf5a0e48e0724ae47a836255
MD5 3c1d32de04783ef57d23df734ca5b88f
BLAKE2b-256 4ed0101cc1618d8dc39ddb4589e09cdb69fa3acdcc5cade2899adea66d860388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 093c5343c5863e87023318050507511fa7458b0376caabcc41abff0e36aaabc8
MD5 c293dafae0bd980082f7d840642d7d4c
BLAKE2b-256 2b2bfb65adf885c8e80e09c040c876d27455bd09d992fa6350d715180b76225d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 028addb304bc525d4a10c5c6e59ef5f140e528ae285c10e1d43f19905631e32f
MD5 c1325398e7fdf2debe7739af4fcadcbd
BLAKE2b-256 d36638226bdc07c5aef5cd6073bda51f56b5395dce13c7f8fae0c05312b22490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40ad38ad6f6dbd8a9dbd05195a15fe7749a0692dc895274a4f806d9831fceb3c
MD5 907a8ec8be42a5ad292c0ec7698989e2
BLAKE2b-256 1a16bed1a1149fa8b95cb5aa16c112ba407b91e8d91fb3b5d97a239ca0a8c476

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 45838fa9abf3bce35a24fffcd289de23f3d6edc4cc9beac28037df3e1009f892
MD5 b29067138391680855f1d2aeb4a88706
BLAKE2b-256 b35d03b2f065be147f7ed941094924d386d794e91ca2656114e00649188f4ca5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 95a5036b7046f617207f38936c188eeb56dbe740cba0fa1215df2e1b9ee38c74
MD5 582ba8645bc4ddf13f568feba2d17d0b
BLAKE2b-256 8765c1e0a18861fcad58065fd3e45a9483a60b3bd83269c8e74cca81fc90f3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44893b6788da1d67696ff2f27e42e315d40965a4fa23786dcc26c932c5b02149
MD5 dcd438da961c3badcf83d4bca92c1b5d
BLAKE2b-256 94428e6a121e03a4afd78f9e876ad0ec5a7f2772ca10d16e3f13f275b0d7da40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1eea8af506b8b33573c76942a5c2390f2cddb4e195b1cdfc373ca919e9b95904
MD5 6518b45280cfdb251cc8ea499024387e
BLAKE2b-256 95d1b47692db218910116a567fc4530ddef84bdf1c820446837a94c2d0da1457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67aa85bbab597615efd83f521c8da34dd9a19b7456cc919c227378c793073183
MD5 697ba144412ca056bddbd48f55977705
BLAKE2b-256 91ed0ce7a48bf95fc237a6d1d602822f4dc3fc7c2a42e307a466cc2d75dd22ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c96a080cae86c1c27758fdd3fbee0298a006b05272de4dff9dea21ca34952c72
MD5 4dc6fb842f499637c98682b7eeade968
BLAKE2b-256 102c964f1ab8a395f6ee4ac847217072401c2106a59624f1d85299e480a48a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0669823de06c3a77fddf738f6250688b7fdae2b44edbe3c103b7fbfdfc848392
MD5 226fea5e2ae939e980ed4dd6220dbf56
BLAKE2b-256 eb75080c79f4a6addb401f473082ce3b16786ae99bc84940be7adb683ab1d041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f3e8fc3433a86ab0b3d960f8fb48fe7135876df04987dd04b3bf35d9b49ae92
MD5 3d46a4b96b4722da2335b932ffd576e6
BLAKE2b-256 eb5bb9f88bc6bffd3ae189ccb59d3740459b17893648a7d970a12cfac6472890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01807a3d0b758cbf65e7b3af84a24d2ee58c9d6c0af8b0af99b581bcaa75a931
MD5 f2c8db21a0e3f17c3fdc833084f90ff2
BLAKE2b-256 8aaa37e8222e2b27b5fdef2fbdd93962a745cfe7ff1bf6f63578d09a6396ae7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b092e2a11f37a41e1767a221ff2719397ae2e033f978de236ce10c4b1916227
MD5 23a494bbede5d8a887b3ff0384204805
BLAKE2b-256 8b57ca59f3bdb6bb9f0c0bd79ac77c2d09677203e6f480034c49cea378010f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 242d1a30162ead28e69df37748021039c4b292bbfd7c5449294a26c8365d342d
MD5 3d99cf898b79d79d4c116ed82a7ba943
BLAKE2b-256 6217143c94497afb021e313b261a2409ee0990b0a5c4ed810f3466a76424c745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f74b606c11c570ec2a6c384fc194d96f00eaa829c7c08cbec455f7b02d28774
MD5 28113dd1e204a371c31f80cd34894210
BLAKE2b-256 d4acd9874e7a2c056931ce0d56062a2fa512a6e24630bffb9629f5bfa775f1cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b641683de9bf05b4b52a629bf8ddd5fa0fb061ca54bc2412ce89ce2de2beda36
MD5 bfa426e1ea97793c9c7fd9cb956b4da8
BLAKE2b-256 86615d6524514c7a69d0e6c2ea17e29b156a8db3e2510963d02829dbfc902b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5f19bb887d83959ba1c359fba16cdedb0f868ba85ae375c3e4e0fdf5697a524
MD5 a6eb5bfc9cf7df11cf2a4c3f99db2e7b
BLAKE2b-256 006d9e83db882ad0f7557a545ca8dc02c9ebe9ca9d54a8c38ee32c99d218abf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3e6efcf768209dc4d966fabbbe4dcd2dd2d60ec4d8342668da02664f0c73a9e8
MD5 0b563ef471eacdd7ef31d06e809bd16b
BLAKE2b-256 22acc255cfdcb81504192ec10115682531ce6d5ecc48488b9437f3c74fecf59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 93d8d5ee37cd9634747a1363496fd3949451bdaeb9539278985cb6fd08d929cf
MD5 267e938ff02353e4ac9f034a373dd9e0
BLAKE2b-256 6fb3773e3d2bd1290a0fdef81371f17d55d40049163ab199b154548a73595640

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a4315509a4e155e6bd4b199bd435ff2bb31f558915726e0c50a725ae7b99727f
MD5 5ba3599928a0c95f05f473a37f0b27d3
BLAKE2b-256 e063f021e4dde20f0b567ec26f4a424ad4e2447fae715f187e5d9eb7b5ad610c

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